Merge pull request #34 from thijstriemstra/patch-1

remove duplicate import
This commit is contained in:
Renzo Mischianti 2021-01-03 17:03:52 +01:00 committed by GitHub
commit e0d02340c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,3 @@
#include "Arduino.h"
/*
* PCF8574 GPIO Port Expand
* Blink all led
@ -53,12 +52,12 @@ void setup()
pcf8574.pinMode(i, OUTPUT);
}
Serial.print("Init pcf8574...");
if (pcf8574.begin()){
Serial.println("OK");
}else{
Serial.println("KO");
}
Serial.print("Init pcf8574...");
if (pcf8574.begin()){
Serial.println("OK");
} else {
Serial.println("KO");
}
}
void loop()