Forgot to comment some debug statements

This commit is contained in:
skogaby
2020-10-21 01:19:40 -05:00
parent 8051c5063f
commit 4c6b5a02db
3 changed files with 3 additions and 7 deletions
-3
View File
@@ -1,6 +1,3 @@
//
//
//
#include "AirSensor.h"
int ir_sensor_pins[6] = { AIR_SENSOR_0_PIN, AIR_SENSOR_1_PIN, AIR_SENSOR_2_PIN, AIR_SENSOR_3_PIN, AIR_SENSOR_4_PIN, AIR_SENSOR_5_PIN };
+1 -2
View File
@@ -31,8 +31,7 @@ extern CRGB leds[31];
class AirSensor {
private:
int deltaThreshold = 80;
double releaseThreshold = 0.5
;
double releaseThreshold = 0.5;
int calibrationCounter;
bool calibrated;
bool states[6];
+2 -2
View File
@@ -27,7 +27,7 @@ void AutoTouchboard::scan() {
#endif
}
/*
for (int i = 0; i < 4; i++) {
Serial.print(key_values[i]);
Serial.print("\t");
@@ -39,7 +39,7 @@ void AutoTouchboard::scan() {
}
Serial.println();
*/
}
void AutoTouchboard::calibrateKeys() {