diff --git a/README.md b/README.md index 1ac7ece8..c7ed74d3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # TS100 -This is a complete re*write of the open source software for the ts100 soldering iron. +This is a complete rewrite of the open source software for the ts100 soldering iron. This project is feature complete for use as a soldering iron, *so please suggest any feature improvements you would like!* This project was started to remove the need for USB for changing system settings. diff --git a/workspace/ts100/src/Modes.c b/workspace/ts100/src/Modes.c index 1ed7bcf3..52acdfa7 100644 --- a/workspace/ts100/src/Modes.c +++ b/workspace/ts100/src/Modes.c @@ -457,6 +457,12 @@ void DrawUI() { } else { OLED_DrawChar(' ', 5); } + if (systemSettings.displayTempInF) { + OLED_DrawChar('F', 3); + } else { + OLED_DrawChar('C', 3); + } + //Optionally draw the arrows, or draw the power instead OLED_BlankSlot(6 * 12 + 16, 24 - 16);//blank out the tail after the arrows if (getIronTimer() == 0 && (temp / 10) > (systemSettings.SolderingTemp / 10)) { @@ -470,11 +476,6 @@ void DrawUI() { OLED_DrawSymbol(6, 6); } } - if (systemSettings.displayTempInF) { - OLED_DrawChar('F', 3); - } else { - OLED_DrawChar('C', 3); - } } break;