I actually have a series of questions regarding Nodemcu and esp8266.
How does code typed in Arduino IDE run on Nodemcu?
What firmware is present on the nodemcu?
How do I upload the above firmware on esp8266-01 module?
I want my esp8266-01 module to work with a Lilypad Arduino. So this is the way I want it to work: Lilypad Ardiuno has acquires some data using a sensor. It wants to post this data to a server on internet. So to do the job it uses a ESP8266-01. Will the configuration work?
-
NodeMCU name has a development board and a firmware. both can be used independently. maybe you have the NodeMcu firmware on the NodeMcu board. NodeMcu firmware with the Lua language will not work with Arduino IDE.Juraj– Juraj ♦2020年04月16日 15:04:22 +00:00Commented Apr 16, 2020 at 15:04
1 Answer 1
how does code typed in Arduino IDE runs on Nodemcu
The IDE runs the compiler which turns the C into assembly and then machine code. That is then uploaded to the ESP8266.
what firmware is present on the nodemcu.
The code that you just wrote and uploaded.
i want my esp8266-01 module to work with a Lilypad Arduino .So this is the way I want it to work Lilypad Ardiuno has acquires some data using a sensor it wants the post this data to a server on internet.So to do the job it uses a ESP8266-01.So will the configuration work?
Sure, if you program it to do that. Two choices:
- Use the AT firmware on the ESP-01 (installed by default)
- Write custom firmware (as above) for the ESP-01 to do what you want.
-
Thankyou so much @Majenko , it would be very kind of you if you point me to some references for question no. three.thankyou once again .it was very helpfulSAYAM.S SANGHVI– SAYAM.S SANGHVI2020年04月17日 13:56:41 +00:00Commented Apr 17, 2020 at 13:56
-
Google: Arduino ESP8266 AT and you'll find your answers.Majenko– Majenko2020年04月17日 13:57:57 +00:00Commented Apr 17, 2020 at 13:57
Explore related questions
See similar questions with these tags.