Fixed serial input updating the wrong variable #bugfix
This commit is contained in:
parent
b8e008014d
commit
cdae15c99a
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ void updateVComp() {
|
||||||
|
|
||||||
void updateVAdj() {
|
void updateVAdj() {
|
||||||
if (serialInt >= 0) {
|
if (serialInt >= 0) {
|
||||||
senseInt = serialInt;
|
senseThrs = serialInt;
|
||||||
//compInt = senseInt; // syncing these params til #24 is fixed
|
//compInt = senseInt; // syncing these params til #24 is fixed
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue