Fix readme error
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
# TS100
|
# 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 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.
|
This project was started to remove the need for USB for changing system settings.
|
||||||
|
|||||||
@@ -457,6 +457,12 @@ void DrawUI() {
|
|||||||
} else {
|
} else {
|
||||||
OLED_DrawChar(' ', 5);
|
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
|
OLED_BlankSlot(6 * 12 + 16, 24 - 16);//blank out the tail after the arrows
|
||||||
if (getIronTimer() == 0
|
if (getIronTimer() == 0
|
||||||
&& (temp / 10) > (systemSettings.SolderingTemp / 10)) {
|
&& (temp / 10) > (systemSettings.SolderingTemp / 10)) {
|
||||||
@@ -470,11 +476,6 @@ void DrawUI() {
|
|||||||
OLED_DrawSymbol(6, 6);
|
OLED_DrawSymbol(6, 6);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (systemSettings.displayTempInF) {
|
|
||||||
OLED_DrawChar('F', 3);
|
|
||||||
} else {
|
|
||||||
OLED_DrawChar('C', 3);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user