/* KeyPressed on PIN1 by Mischianti Renzo https://www.mischianti.org/2019/01/02/pcf8574-i2c-digital-i-o-expander-fast-easy-usage/ Test l'appui sur le Bouton poussoir broche 1 */ #include "Arduino.h" #include "PCF8574.h" // Set i2c address PCF8574 pcf8574_1(0x22); unsigned long timeElapsed; void setup() { Serial.begin(115200); delay(1000); pcf8574_1.pinMode(P0, OUTPUT); pcf8574_1.pinMode(P1, INPUT); Serial.print("Init pcf8574_1..."); if (pcf8574_1.begin()){ Serial.println("OK"); }else{ Serial.println("KO"); } } void loop() { uint8_t val = pcf8574_1.digitalRead(P1); if (val==HIGH) Serial.println("Bouton Appuyer"); delay(50); }