We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83da801 commit 7d09662Copy full SHA for 7d09662
ev3dev/brickpi.py
@@ -53,6 +53,7 @@ class Leds(object):
53
LED1 = ( blue_led1, )
54
LED2 = ( blue_led2, )
55
56
+ BLACK = ( 0, )
57
BLUE = ( 1, )
58
59
@staticmethod
ev3dev/ev3.py
@@ -55,6 +55,7 @@ class Leds(object):
LEFT = ( red_left, green_left, )
RIGHT = ( red_right, green_right, )
+ BLACK = ( 0, 0, )
RED = ( 1, 0, )
60
GREEN = ( 0, 1, )
61
AMBER = ( 1, 1, )
0 commit comments