Fixed serial input updating the wrong variable #bugfix

This commit is contained in:
pyr0ball 2019-09-24 14:40:55 -07:00
parent b8e008014d
commit cdae15c99a

View file

@ -89,7 +89,7 @@ void updateVComp() {
void updateVAdj() {
if (serialInt >= 0) {
senseInt = serialInt;
senseThrs = serialInt;
//compInt = senseInt; // syncing these params til #24 is fixed
}
}