Skip to content

Commit 6cd4712

Browse files
committed
fix(e-ink): use correct degree symbols
1 parent bfb9f17 commit 6cd4712

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/display/drivers/dispDrvThinkInkGrayscale4Eaamfgn.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ class drvDispThinkInkGrayscale4Eaamfgn : public dispDrvBase {
258258
}
259259
} else if (message[i] == 0xC2 && message[i + 1] == 0xB0) {
260260
// Degree symbol
261-
_display->write(char(248));
261+
_display->write(char(247));
262262
i++;
263263
} else {
264264
_display->print(message[i]);

src/components/display/drivers/dispDrvThinkInkGrayscale4T5.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ class dispDrvThinkInkGrayscale4T5 : public dispDrvBase {
124124
i++;
125125
}
126126
} else if (message[i] == 0xC2 && message[i + 1] == 0xB0) {
127-
_display->write(char(248));
127+
// Degree symbol
128+
_display->write(char(247));
128129
i++;
129130
} else {
130131
_display->print(message[i]);

0 commit comments

Comments
 (0)