Skip to content

Commit

Permalink
faster polling
Browse files Browse the repository at this point in the history
  • Loading branch information
netmindz committed Oct 7, 2023
1 parent ede1bc1 commit 1f4f3b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/BalboaGL/ESPBalboaGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void BalboaGL::update() {
ESP_LOGV(TAG, "Read %u bytes", len);
bool panelSelect = digitalRead(this->spa->getPanelSelectPin());
if(panelSelect == HIGH) {
ESP_LOGD(TAG, "PanelSelect == HIGH");
ESP_LOGV(TAG, "PanelSelect == HIGH");
return;
}
else {
Expand Down
2 changes: 1 addition & 1 deletion components/BalboaGL/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def valid_uart(uart):
cv.Optional(CONF_HARDWARE_UART, default="UART1"): valid_uart,
# If polling interval is greater than 9 seconds, the HeatPump library
# reconnects, but doesn't then follow up with our data request.
cv.Optional(CONF_UPDATE_INTERVAL, default="500ms"): cv.All(
cv.Optional(CONF_UPDATE_INTERVAL, default="100ms"): cv.All(
cv.update_interval, cv.Range(max=cv.TimePeriod(milliseconds=9000))
),
# Optionally override the supported ClimateTraits.
Expand Down

0 comments on commit 1f4f3b3

Please sign in to comment.