diff options
author | Ben V. Brown <[email protected]> | 2018-05-07 21:24:29 +1000 |
---|---|---|
committer | Ben V. Brown <[email protected]> | 2018-05-07 21:24:29 +1000 |
commit | 4718efe79bfcebb91cf09a6331974938989d3230 (patch) | |
tree | 874a3c1f0f459c1fa60d3f0e61b35df806b68b59 /workspace/TS100/src/Translation.cpp | |
parent | 771f0a1b9e946e31793e39cb9e4ad9384b897ae3 (diff) | |
download | IronOS-4718efe79bfcebb91cf09a6331974938989d3230.tar.gz IronOS-4718efe79bfcebb91cf09a6331974938989d3230.zip |
2.04 bugfixesv2.04.1
Should help with UI lockups
Diffstat (limited to 'workspace/TS100/src/Translation.cpp')
-rw-r--r-- | workspace/TS100/src/Translation.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/workspace/TS100/src/Translation.cpp b/workspace/TS100/src/Translation.cpp index b452efb1..a4e44150 100644 --- a/workspace/TS100/src/Translation.cpp +++ b/workspace/TS100/src/Translation.cpp @@ -75,6 +75,15 @@ const char* SettingsDescriptions[17] = { /* Calibrate input voltage */ "VIN Calibration. Buttons adjust, long press to exit", /* Advanced soldering screen enabled */ "Display detailed information while soldering", /* Description Scroll Speed */ "Speed this text scrolls past at", + +#ifdef PIDSETTINGS + + "PID P term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems", + "PID I term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems", + "PID D term. Inverse values! This acts as a divisor. So Larger numbers == typically smaller in other systems", + +#endif + }; const char* SettingsCalibrationWarning = "Please ensure the tip is at room temperature before continuing!"; @@ -121,6 +130,13 @@ const char* SettingsShortNames[17][2] = { /* (<= 16) Calibrate input voltage */ {"Calibrate", "input voltage?"}, /* (<= 13) Advanced soldering screen enabled */ {"Detailed", "solder screen"}, /* (<= 11) Display Help Text Scroll Speed */ {"Description","Scroll Speed"}, +#ifdef PIDSETTINGS + + {"PID","P"}, + {"PID","I"}, + {"PID","D"}, +#endif + }; // SettingsMenuEntries lengths <= 13 per line (\n starts second line) |