Skip to content

Commit 0886a3c

Browse files
committed
Fix YAML representation of backlight colour.
The YAML representation was a string, not a list of integers, so it broke whilst trying to insert into the payload.
1 parent 9886219 commit 0886a3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

res/themes/3.5inchTheme2_theme/theme.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ display:
44
DISPLAY_ORIENTATION: portrait
55

66
# Backplate RGB LED color (for HW revision 'flagship' devices only)
7-
DISPLAY_RGB_LED: 0, 0, 255
7+
DISPLAY_RGB_LED: [0, 0, 255]
88

99
static_images:
1010
# Specify what static images we want to show on the display
@@ -298,4 +298,4 @@ STATS:
298298
FONT_SIZE: 23
299299
FONT_COLOR: 255, 255, 255
300300
BACKGROUND_COLOR: 132, 154, 165
301-
# BACKGROUND_IMAGE: background.png
301+
# BACKGROUND_IMAGE: background.png

0 commit comments

Comments
 (0)