aboutsummaryrefslogtreecommitdiffhomepage
path: root/workspace
diff options
context:
space:
mode:
authorBen V. Brown <[email protected]>2017-08-13 12:36:00 +1000
committerBen V. Brown <[email protected]>2017-08-13 12:36:00 +1000
commit4f0e3560b9f4168136e9ac735f9be360fc850c2e (patch)
tree57c516ca6fac289b021ff2aa5c722c7f72f7d4d9 /workspace
parent8b112e7f7d23e4bd52b58890eaac082c8a18960f (diff)
downloadIronOS-4f0e3560b9f4168136e9ac735f9be360fc850c2e.tar.gz
IronOS-4f0e3560b9f4168136e9ac735f9be360fc850c2e.zip
Fix #62
Diffstat (limited to 'workspace')
-rw-r--r--workspace/ts100/src/Modes.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/workspace/ts100/src/Modes.c b/workspace/ts100/src/Modes.c
index 5cfaab84..fae4bb82 100644
--- a/workspace/ts100/src/Modes.c
+++ b/workspace/ts100/src/Modes.c
@@ -447,7 +447,7 @@ void DrawUI() {
return;
Clear_Screen();
-
+ Oled_DisplayOn();
uint32_t tempavg = (temp + lastSolderingDrawnTemp1
+ lastSolderingDrawnTemp2);
tempavg /= 3;
@@ -724,7 +724,7 @@ void DrawUI() {
Clear_Screen();
OLED_DrawString("SLP ", 4);
drawTemp(temp, 4, systemSettings.temperatureRounding);
-
+ Oled_DisplayOn();
break;
case COOLING:
//We are warning the user the tip is cooling
@@ -734,7 +734,8 @@ void DrawUI() {
if (temp < 500 || ((millis() % 1000) > 500)
|| (!systemSettings.coolingTempBlink))
drawTemp(temp, 5, systemSettings.temperatureRounding);
-
+ if(temp>300)
+ Oled_DisplayOn();
break;
case UVLOWARN:
OLED_DrawString(UVLOWarningString, 8);