mirror of
https://github.com/xreef/PCF8574_library.git
synced 2024-08-30 18:12:18 +00:00
24 lines
363 B
Arduino
24 lines
363 B
Arduino
|
#include "Arduino.h"
|
||
|
#include "PCF8574.h"
|
||
|
|
||
|
// Set i2c address
|
||
|
PCF8574 pcf8574(0x39);
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
Serial.begin(115200);
|
||
|
|
||
|
// Set pinMode to OUTPUT
|
||
|
pcf8574.pinMode(P0, OUTPUT);
|
||
|
pcf8574.pinMode(P1, INPUT);
|
||
|
pcf8574.begin();
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
pcf8574.digitalWrite(P0, HIGH);
|
||
|
delay(1000);
|
||
|
pcf8574.digitalWrite(P0, LOW);
|
||
|
delay(1000);
|
||
|
}
|