Skip to content

Commit 23e3459

Browse files
committed
Make YELLOW yellower
Reduced red brightness from 50% to 10% in YELLOW tuple to actually get yellow light.
1 parent 074b11c commit 23e3459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ev3dev/ev3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class Leds(object):
6060
GREEN = ( 0, 1, )
6161
AMBER = ( 1, 1, )
6262
ORANGE = ( 1, 0.5, )
63-
YELLOW = ( 0.5, 1, )
63+
YELLOW = ( 0.1, 1, )
6464

6565
@staticmethod
6666
def set_color(group, color, pct=1):

0 commit comments

Comments
 (0)