-->
Page 1 of 2

The I2C Address for ESP8266

PostPosted: Fri Jun 24, 2016 4:00 pm
by Sylvia Fu
Hi! I'm a college student working on a project using ESP8266. We're using I2C to communicate with the microcontroller, but I can't find the I2C address on the datasheet. Does anyone know what's the I2C address for ESP8226? Thanks!

Re: The I2C Address for ESP8266

PostPosted: Fri Jun 24, 2016 11:17 pm
by lethe
There is no I2C hardware, so the chip does not have an address.
Also device addresses are only needed for I2C slaves and afaik there's only software for a bit-banging I2C master available.

Re: The I2C Address for ESP8266

PostPosted: Sat Jun 25, 2016 7:33 am
by martinayotte
@Rudy got a working ESP8266 Slave using Native SDK attached to an ESP31 Master, but he has never published his code yet.

Re: The I2C Address for ESP8266

PostPosted: Mon Jun 27, 2016 11:09 am
by Sylvia Fu
Thank you guys! So I'm supposed to use serial (Tx&Rx) to communicate with the microcontroller right?