1
0
forked from me/IronOS

Add in C/F in more places #94

This commit is contained in:
Ben V. Brown
2017-10-03 09:28:01 +11:00
parent bb75817e83
commit 8b8e2a1f10
3 changed files with 38 additions and 9 deletions

View File

@@ -38,6 +38,11 @@ const char* SettingsLongNames[14] = {
const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!";
const char* UVLOWarningString = "LOW VOLT"; //Fixed width 8 chars
const char* SleepingSimpleString = "ZZzz"; // Must be <= 4 chars
const char* SleepingAdvancedString = "Sleeping..."; // <=17 chars
const char* WarningSimpleString = "WARN"; //Must be <= 4 chars
const char* WarningAdvancedString = "WARNING! TIP HOT!";
const char SettingTrueChar = 'V';
const char SettingFalseChar = 'F';
const char SettingSleepChar = 'S';