Improve comments, printing

This commit is contained in:
Christoph Hagen 2023-06-07 16:38:33 +02:00
parent cbb7c5d4e3
commit 36db04036c
3 changed files with 3 additions and 7 deletions

View File

@ -13,5 +13,5 @@ constexpr gpio_num_t wakeupButtonPin = GPIO_NUM_27;
// The device also stays awake as long as a bluetooth connection is active
constexpr uint32_t wakeupDurationAfterButtonPress = 30;
// The interval between temperature measurements
constexpr uint32_t temperatureMeasurementIntervalSeconds = 60;

View File

@ -123,10 +123,10 @@ void enableLED() {
void setup() {
// No need for serial output in production
//Serial.begin(serialBaudRate);
// Serial.begin(serialBaudRate);
// LED useless inside case
//enableLED();
// enableLED();
// Configure button pin to wake up ESP from deep sleep on low signal with pullup
rtc_gpio_pullup_en(wakeupButtonPin);
@ -147,7 +147,6 @@ void setup() {
// Happens only once per power cycle
temperatureConfigure();
// TODO: Remove
Serial.println("Setup complete");
}

View File

@ -165,9 +165,6 @@ void temperatureConfigure() {
return;
}
Serial.print(availableSensorCount);
Serial.println(" temperature sensors available");
// Write sensor resolution and set limits
if (sensorInterface.writeScratchpadAll(
TEMPERATURE_ALARM_LIMIT_HIGH,