PCF8574_library/examples/blinkOnPin0/blinkOnPin0.ino

38 lines
655 B
Arduino
Raw Normal View History

2019-04-29 07:17:34 +00:00
/*
Blink led on PIN0
by Mischianti Renzo <http://www.mischianti.org>
https://www.mischianti.org/2019/01/02/pcf8574-i2c-digital-i-o-expander-fast-easy-usage/
*/
2017-11-13 20:44:50 +00:00
#include "Arduino.h"
#include "PCF8574.h"
// Set i2c address
PCF8574 pcf8574(0x39);
void setup()
{
Serial.begin(115200);
delay(1000);
2017-11-13 20:44:50 +00:00
// Set pinMode to OUTPUT
pcf8574.pinMode(P0, OUTPUT);
pcf8574.pinMode(P1, INPUT);
Serial.print("Init pcf8574...");
if (pcf8574.begin()){
Serial.println("OK");
}else{
Serial.println("KO");
}
2017-11-13 20:44:50 +00:00
}
void loop()
{
pcf8574.digitalWrite(P0, HIGH);
delay(1000);
pcf8574.digitalWrite(P0, LOW);
delay(1000);
}