Skip to content

Commit

Permalink
Create function_test.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
chromhelm committed May 13, 2015
1 parent a9cc067 commit 6fdd929
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions PCA9536/examples/function_test/function_test.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <PCA9536.h>

void setup()
{
Serial.begin(9600);
PCA9536.begin();
}

void loop()
{
Serial.print("Read : ");
Serial.println(PCA9536.read(), BIN);
delay(1000);
}

0 comments on commit 6fdd929

Please sign in to comment.