Skip to content

Commit

Permalink
Merge pull request #15 from peteh/bugfix/d1build
Browse files Browse the repository at this point in the history
FIX: d1 mini build
  • Loading branch information
peteh authored Jan 28, 2024
2 parents 9be9ce9 + 2addaa7 commit 8c1bbcd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion doorman/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,9 @@ void setup()
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total)
{
// reset watchdog during update
esp_task_wdt_reset();
#ifdef ESP32
esp_task_wdt_reset();
#endif
log_info("Progress: %u%%\r", (progress / (total / 100))); });
ArduinoOTA.onError([](ota_error_t error)
{
Expand Down
2 changes: 1 addition & 1 deletion doorman/src/platform.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once
#include <Arduino.h>

#define VERSION "2024.1.0"
#define VERSION "2024.1.1"

#ifdef ESP8266
#define PIN_BUS_READ D5
Expand Down

0 comments on commit 8c1bbcd

Please sign in to comment.