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
@ -56,7 +55,7 @@ void setup()
Serial.print("Init pcf8574...");
if (pcf8574.begin()){
Serial.println("OK");
}else{
} else {
Serial.println("KO");
}
}