We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5974932 commit edc9ca7Copy full SHA for edc9ca7
inc/version.h
@@ -2,4 +2,4 @@
2
#pragma once
3
4
#define VERSION_MAJOR 6
5
-#define VERSION_MINOR 3
+#define VERSION_MINOR 4
src/sp140/sp140.ino
@@ -563,7 +563,7 @@ bool armSystem() {
563
// Returns true if the throttle/pot is below the safe threshold
564
bool throttleSafe() {
565
pot->update();
566
- if (pot->getValue() < POT_SAFE_LEVEL) {
+ if (pot->getRawValue() < POT_SAFE_LEVEL) {
567
return true;
568
}
569
return false;
0 commit comments