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.
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.