I am trying to implement a connection between the ESP8266 flashed with the new ARDUINO IDE and an Arduino UNO. I need the Arduino UNO to communicate with the ESP 8266 and because I read from the ARDUINO IDE documentation on GitHub that:
Serial object works much the same way as on a regular Arduino. Apart from hardware FIFO (128 bytes for TX and RX) HardwareSerial has additional 256-byte TX and RX buffers. Both transmit and receive is interrupt-driven. Write and read functions only block the sketch execution when the respective FIFO/buffers are full/empty.I thought of trying to connect both of these devices using the method described in this website: http://www.billporter.info/2011/05/30/easytransfer-arduino-library/
By far I have had no luck to make this work (even though it seems easy). I would be grateful if some of you could give me some feedback or even suggest me a new way to connect these 2 devices. I would love to connect them through I2C but unfortunately the Arduino IDE does not support a slave mode for the ESP8226 yet