Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
6 years, 10 months ago.
How to connect nodemcu and mbed lpc1768??
Hello Everyone,
Is it possible to connect mbed lpc1768 to nodemcu with ESP8266?I am measuring battery voltage using mbed lpc1768 and sending data to adafruit using nodemcu.How to make the connection?
1 Answer
6 years, 10 months ago.
Yes, over UART. Connect the NodeMCU and the LPC1768 over UART, then use Serial
class on the LPC1768 to talk from/to the ESP8266 (not sure how to do UART in NodeMCU).
If you're using Espressif 2.0 firmware on the ESP8266 you can use the esp8266-driver which implements NetworkInterface
. This allows you to use all Mbed networking examples (incl. http-example) through the ESP8266, without writing any code for the ESP8266.