Interacting esp8266 with LPC link2 on LPC XpressO instead of Arduino

221 views Asked by At

LPC 4370 link2 to interact with huzzah esp8266 breakout board. I am using LPC XpressO, but all the codes available are from Arduino. Tried changing the codes from to suit my programmer. WiFi.begin(SSID, password);

while (WiFi.status() != WL_CONNECTED) but I do not know how to replace these codes with as there is not a wifi function from my microcontroller.

1

There are 1 answers

1
Luiz Menezes On

You will probably have to write your own esp8266 library. I done that for arduino once because I disliked the native arduino library since it blocked the device while searching for hotspots.

Try to study ESP8622 AT-Commands (they are few), and you will be able to implement what you want in no time, without any library dependencies.