GY-63_MS5611/libraries/PCF8574/notes.txt

11 lines
545 B
Plaintext
Raw Normal View History

2015-11-29 05:50:23 -05:00
notes on PCF8574
2015-11-29 - 0.1.04
======================
On some platforms (reported on an ESP8266) the PCF8574 constructor is causing problems e.g. continuous reboots. This is caused by the call to Wire.begin() in the constructor of the PCF8574 object. It might be called before the Wire object is created, especially when both are global objects the order of instantiating might differ.
Solution is moving the call to Wire.begin() from the constructor to void setup() before any call to an PCF8574 object.
FIXED in 0.1.08 @ 2016-05-20
2015-11-29 05:50:23 -05:00