The actual code is quite small - I wonder if you could just produce a single file that could be pasted into the right hand pane that would display all the debug data?
By the way, looking at the code it might be 'nicer' to create a string of 1s and 0s. You could then use parseInt(data.substr(...),...,...) to extract the data... Might be worth a try - now ints are only 32 bit I should probably change a lot of the example code (like IR) to work a similar way.
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
The actual code is quite small - I wonder if you could just produce a single file that could be pasted into the right hand pane that would display all the debug data?
By the way, looking at the code it might be 'nicer' to create a string of 1s and 0s. You could then use
parseInt(data.substr(...),...,...)
to extract the data... Might be worth a try - now ints are only 32 bit I should probably change a lot of the example code (like IR) to work a similar way.