Change 6.2/8 ohm threshold to 4000

This commit is contained in:
Ben V. Brown
2022-09-25 11:11:47 +10:00
parent 6fab3e5252
commit 4d83f4febc

View File

@@ -202,7 +202,7 @@ void FinishMeasureTipResistance() {
uint8_t newRes = 0;
if (reading > 8000) {
// return; // Change nothing as probably disconnected tip
} else if (reading < 5000) {
} else if (reading < 4000) {
newRes = 62;
} else {
newRes = 80;