PCF8574_library/examples/02_keyPressedPin1/02_keyPressedPin1.ino
per1234 9dc37f94a3 Move example sketches to appropriately named folders
This change causes the example sketches to be accessible via the Arduino IDE's File > Examples > PCF8574 library menu after the library is installed.
2018-05-31 17:05:08 -07:00

23 lines
369 B
C++

#include "Arduino.h"
#include "PCF8574.h"
// Set i2c address
PCF8574 pcf8574(0x39);
unsigned long timeElapsed;
void setup()
{
Serial.begin(115200);
pcf8574.pinMode(P0, OUTPUT);
pcf8574.pinMode(P1, INPUT);
pcf8574.begin();
}
void loop()
{
uint8_t val = pcf8574.digitalRead(P1);
if (val==HIGH) Serial.println("KEY PRESSED");
delay(50);
}