Skip to content

Commit 762cb83

Browse files
committed
control.py: Fix degree symbols
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 1f4889e commit 762cb83

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

control.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1239,20 +1239,20 @@ def get_fps_cmd():
12391239
def convert_symbol(symbol):
12401240
symbols = {
12411241
'degC': [
1242-
0, 0, 0, 1, 1,
1243-
0, 0, 0, 1, 1,
1244-
1, 1, 1, 0, 0,
1245-
1, 0, 0, 0, 0,
1246-
1, 0, 0, 0, 0,
1247-
1, 1, 1, 0, 0,
1242+
1, 1, 0, 0, 0,
1243+
1, 1, 0, 0, 0,
1244+
0, 0, 1, 1, 1,
1245+
0, 0, 1, 0, 0,
1246+
0, 0, 1, 0, 0,
1247+
0, 0, 1, 1, 1,
12481248
],
12491249
'degF': [
1250-
0, 0, 0, 1, 1,
1251-
0, 0, 0, 1, 1,
1252-
1, 1, 1, 0, 0,
1253-
1, 0, 0, 0, 0,
1254-
1, 1, 1, 0, 0,
1255-
1, 0, 0, 0, 0,
1250+
1, 1, 0, 0, 0,
1251+
1, 1, 0, 0, 0,
1252+
0, 0, 1, 1, 1,
1253+
0, 0, 1, 0, 0,
1254+
0, 0, 1, 1, 1,
1255+
0, 0, 1, 0, 0,
12561256
],
12571257
'snow': [
12581258
0, 0, 0, 0, 0,

0 commit comments

Comments
 (0)