mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
Fix readme error
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user