Skip to content

Commit

Permalink
LED issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vielma24 committed Jan 17, 2018
1 parent 0489047 commit 7924e20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rover/core/servers/ArduinoSocketServer/mobility.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def setLed():
myLeds = pausedLEDs
else:
myLeds = controls[mode]["leds"]
GPIO.output(redLed,GPIO.HIGH) if myLeds["R"] else GPIO.output(redLed,GPIO.LOW)
GPIO.output(redLed,GPIO.HIGH) if myLeds["R"] else GPIO.output(redLed,GPIO.LOW)
GPIO.output(greenLed,GPIO.HIGH) if myLeds["G"] else GPIO.output(greenLed,GPIO.LOW)
GPIO.output(blueLed,GPIO.HIGH) if myLeds["B"] else GPIO.output(blueLed,GPIO.LOW)

Expand Down

0 comments on commit 7924e20

Please sign in to comment.