Skip to content

Commit

Permalink
ref #9 : changed digital pin from 4 to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertLucian committed May 8, 2017
1 parent d040691 commit acbf0be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class BlinkingLed implements Example {

@Override
public void run(GrovePi grovePi, Monitor monitor) throws Exception {
GroveDigitalOut led = grovePi.getDigitalOut(4);
GroveDigitalOut led = grovePi.getDigitalOut(2);
boolean state = false;
while (monitor.isRunning()) {
state = !state;
Expand Down

0 comments on commit acbf0be

Please sign in to comment.