Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ class drvDispThinkInkGrayscale4Eaamfgn : public dispDrvBase {
}
} else if (message[i] == 0xC2 && message[i + 1] == 0xB0) {
// Degree symbol
_display->write(char(248));
_display->write(char(247));
i++;
} else {
_display->print(message[i]);
Expand Down
3 changes: 2 additions & 1 deletion src/components/display/drivers/dispDrvThinkInkGrayscale4T5.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ class dispDrvThinkInkGrayscale4T5 : public dispDrvBase {
i++;
}
} else if (message[i] == 0xC2 && message[i + 1] == 0xB0) {
_display->write(char(248));
// Degree symbol
_display->write(char(247));
i++;
} else {
_display->print(message[i]);
Expand Down
Loading