-
• #2
How do one flash the unit if one can not connect to it via the webIDE
-
• #3
It turned out to be an issue with the WebIDE nothing to do with the hardware
-
• #4
Hi Gill,
Great! What was the issue? Was it just that the board got disconnected/reset while the IDE was still connected on Windows, and then it wouldn't reconnect? That's hopefully something that will be fixed when the new version of Chrome comes out in a few weeks.
-
• #5
The webIDE did not update the comms drop down box kept on showing COM19 available. However after shutting down and restart the WebIDE COM19 disappeared.
Will retest this once the new chrome comes out in a few weeks
Hi
I uploaded the following to the Espruino device
function toggle() {
on = !on;
digitalWrite(LED1, on);
digitalWrite(LED2, !on);
}
var interval = setInterval(toggle,500);
Then executed the save() on the terminal