Open
Description
Need to fork a copy of quando and cut down
- Headless interpreter
- only runs locally
use simple, throwaway, interpreter
- Identify pilot blocks
- perform an action
- log the time
- ?do every second?
- ?log a string?
- respond to a user action
- microbit button press -> log time
- hard code script
- two simple instructions:
- system.log()\n
- ubit.whenButton(when={
system.log()
})
- How to contain instructions?
indentation- -buggy
- +nice to read - like python
begin/end- { and }
- standard
- less buggy and easier to debug
- can multiline
- -harder to read
Could be based on a message - allowing client to still work?!
e.g.
- system.sendMessage(id="message",val="hello")
Activity