- Fri Jan 15, 2016 5:41 pm
#38900
I've been introduced to the ESP8266 with a nodemcu/lua setup. So far it's It's been very productive for me and suits my way of working - making incremental code development advances and breaking projects into small code units. If the code in some units doesn't change, they don't have to be reloaded so typically I'm ony uploading a couple of Kb for the unit I'm working on and then running it again. This takes no more than a couple of seconds. The same goes for resouces e.g. HTML files that are to be served, which can be edited and uploaded individually.
However, I'm running into the constraints of the interpreted language and the reliance on the nodemcu dev. team (who do a fantastic job but are resource limited). In particular I can find no way of getting "zero configuration" whereby I can point a browser to something like "MyESP8266.local" to get to my embeded webserver - as the Arduino mDNS library allows.
Having set up on the Arduino IDE though, I'm finding everything to be painfully slow (compiling and uploading everything each time I change one line of code) and wonder if there are tricks I'm missing?