commented out main loop trigger reset #bugfix

After switching to the new scheduler, the main loop was resetting the
trigger too quickly. Migrating reset to the pulse trigger function
instead
This commit is contained in:
pyr0ball 2019-08-29 11:48:14 -07:00
parent cc0b19d391
commit afad0a1d88

View file

@ -138,7 +138,7 @@ void loop() {
serialReply();
// Sets trigger output state to false after completing loop
digitalWrite(TRG_OUT, HIGH);
//digitalWrite(TRG_OUT, HIGH);
sensorHReading = 0;
}
}