I'm looking for a possibility to develop software for my ESP8266 without using the Chrome IDE for privacy concerns. Is there any way to do that? The main problem is, that I need the modules, such as WIFI and so on. Of course, I could use
Modules.cached("ModuleName","return 'Code';");
but I don't think the modules are cached if the power supply is interrupted. The next problem is, that the modules depend on each other, so I would cache a lot of other modules, in order to use, for example, the Wifi module.
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.
Hello,
I'm looking for a possibility to develop software for my ESP8266 without using the Chrome IDE for privacy concerns. Is there any way to do that? The main problem is, that I need the modules, such as WIFI and so on. Of course, I could use
Modules.cached("ModuleName","return 'Code';");
but I don't think the modules are cached if the power supply is interrupted. The next problem is, that the modules depend on each other, so I would cache a lot of other modules, in order to use, for example, the Wifi module.
Any help is appreciated! :-)