@loopMasta - what filename are you writing? The issue may be that right now Espruino doesn't support long filenames (only 8.3 format).
As far as programming over WiFi, you've got two options I guess:
Serve up a textbox, POST back the data, and use eval to execute it.
Loopback the actual console - you can't do this in software right now, but you could physically connect USART1 to USART2, do Serial1.setConsole(), and then use HTTP to send/receive the data from USART2. It might be a bit slower but it'd be pretty awesome to get the whole interactive command prompt via WiFi.
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.
@loopMasta - what filename are you writing? The issue may be that right now Espruino doesn't support long filenames (only 8.3 format).
As far as programming over WiFi, you've got two options I guess:
eval
to execute it.Serial1.setConsole()
, and then use HTTP to send/receive the data from USART2. It might be a bit slower but it'd be pretty awesome to get the whole interactive command prompt via WiFi.