Fix readme error

This commit is contained in:
Ben V. Brown
2017-07-24 23:08:08 +10:00
parent 8a503f84e2
commit 7bedad5d51
2 changed files with 7 additions and 6 deletions

View File

@@ -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.

View File

@@ -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;