PCF8574 (i2c Digital I/O Expander) Fast Easy Usage

by xxreef in Circuits > Electronics

27940 Views, 15 Favorites, 0 Comments

PCF8574 (i2c Digital I/O Expander) Fast Easy Usage

testreadwriteledbutton_bb_copertina_5OCRFxoTo1[1].png

You can find updated version on my site https://www.mischianti.org/2019/01/02/pcf8574-i2c... .

Libreria per utilizzare i2c pcf8574 IC con arduino e esp8266.

Questo IC può controllare (fino a 8) dispositivi digitali come pulsante o led con 2 soli pin.

Può leggere e scrivere valori digitali con solo 2 fili (perfetto per ESP-01).

Cerco di semplificare l'uso di questo IC, con un minimo di operazioni.

How I2c Works

i2c.PNG

I2C works with it's two wires, the SDA(data line) and SCL(clock line).

Both these lines are open-drain, but are pulled-up with resistors.

Usually there is one master and one or multiple slaves on the line, although there can be multiple masters, but we'll talk about that later.

Both masters and slaves can transmit or receive data, therefore, a device can be in one of these four states: master transmit, master receive, slave transmit, slave receive.

Library

You can find my library here.

To download.

Click the DOWNLOADS button in the top right corner, rename the uncompressed folder PCF8574.

Check that the PCF8574 folder contains PCF8574.cpp and PCF8574.h.

Place the PCF8574 library folder your /libraries/ folder.

You may need to create the libraries subfolder if its your first library.

Restart the IDE.

Usage

Constructor: you must pas the address of i2c (to check the adress use this guide I2cScanner)

	PCF8574(uint8_t address); 

for esp8266 if you want specify SDA e SCL pin use this:

	PCF8574(uint8_t address, uint8_t sda, uint8_t scl); 

You must set input/output mode:

	pcf8574.pinMode(P0, OUTPUT); 
	pcf8574.pinMode(P1, INPUT);	
	pcf8574.pinMode(P2, INPUT); 

Read Value

PCF8574-pins[1].gif

then IC as you can see in the image have 8 digital input/output:

So to read all analog input in one trasmission you can do (even if I use a 10millis debounce time to prevent too much read from i2c):

	PCF8574::DigitalInput di = PCF8574.digitalReadAll(); Serial.print(di.p0);
	Serial.print(" - ");
	Serial.print(di.p1);
	Serial.print(" - ");
	Serial.print(di.p2);
	Serial.print(" - ");
	Serial.println(di.p3);

if you want read a single input:

	int p1Digital = PCF8574.digitalRead(P1); // read P1

Write Value

If you want write a digital value you must do:

	PCF8574.digitalWrite(P1, HIGH); 

or:

	PCF8574.digitalWrite(P1, LOW);

Interrupt Pin

You can also use interrupt pin: You must initialize the pin and the function to call when interrupt raised from PCF8574.

// Function interrupt
void keyPressedOnPCF8574();
// Set i2c address
PCF8574 pcf8574(0x39, ARDUINO_UNO_INTERRUPT_PIN, keyPressedOnPCF8574);

Examples Wiring Diagram

testReadWriteLedButton_bb[1].png

Thanks