Skip to content

Commit

Permalink
in sync with dev
Browse files Browse the repository at this point in the history
  • Loading branch information
proddy committed Nov 15, 2023
1 parent 6b9dadc commit 21c3fe5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG_LATEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Writeable Text entities have moved from type `sensor` to `text` in Home Assistan
- optional bssid in network settings
- extension module EM100 [#1315](https://github.com/emsesp/EMS-ESP32/discussions/1315)
- digital_out with new options for polarity and startup state
- Added 'system allvalues' command that dumps all the EMS device values, plus sensors and any custom entities
- added 'system allvalues' command that dumps all the EMS device values, plus sensors and any custom entities

## Fixed

Expand Down
2 changes: 1 addition & 1 deletion src/devices/thermostat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2563,7 +2563,7 @@ bool Thermostat::set_mode_n(const uint8_t mode, const uint8_t hc_num) {
if (Helpers::hasValue(hc->mode_new)) {
offset = EMS_OFFSET_RCPLUSSet_mode_new;
} else {
offset = EMS_OFFSET_RCPLUSSet_mode;
offset = EMS_OFFSET_RCPLUSSet_mode;
set_mode_value = set_mode_value == 2 ? 0xFF : 0;
}
break;
Expand Down
2 changes: 1 addition & 1 deletion src/uart/emsuart_esp32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
namespace emsesp {

static QueueHandle_t uart_queue;
uint8_t tx_mode_ = 0xFF;
uint8_t tx_mode_ = 0xFF;
uint32_t inverse_mask = 0;

/*
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define EMSESP_APP_VERSION "3.6.3-test.8"
#define EMSESP_APP_VERSION "3.6.4-test.0"

0 comments on commit 21c3fe5

Please sign in to comment.