-->
Page 1 of 2

ESP8266-01 interfacing with lpc1768

PostPosted: Fri Jan 15, 2016 5:36 pm
by sunshine
I'm trying to read data from temperature sensor which is connected to lpc1768 uC and send sensor values to my phone over wifi. i am using CMSIS in my project. I'm new to ESP8266-01. My questions are
1. Is it possible to interface ESP8266-01 with lpc1768?
2. if possible, which protocol should i have to use for sending and receiving data?

Re: ESP8266-01 interfacing with lpc1768

PostPosted: Sat Jan 16, 2016 10:02 am
by martinayotte
Of course it is possible !
LPC1768 has several serial port.
You need to define your own protocol of serial communication, adapt your firmwares on both side to establish the link.
Personally, I've done in the past some serial bridge on ESP8266, so I was able to connect using Telnet, and provide commands to some kind of shell on the LPC1768.

Re: ESP8266-01 interfacing with lpc1768

PostPosted: Sat Jan 16, 2016 11:08 am
by sunshine
@ martinayotte
Thank you for your reply.
So, Can i use UART to establish communication between LPC1768 and ESP8266 ? I want ESP8266 to send data (which is collected from temperature sensor by lcp1768) over wifi to predefined IP address.

P.S sorry for my bad English :roll:

Re: ESP8266-01 interfacing with lpc1768

PostPosted: Sat Jan 16, 2016 11:18 am
by martinayotte
It is all about writing proper firmwares on both side.
So, enjoy it ! ;-)