mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2026-01-10 17:22:13 +01:00
fix error
This commit is contained in:
parent
52172b02cf
commit
7dae3869ab
2 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ file(GLOB_RECURSE SRCS_CPP *.cpp)
|
|||
idf_component_register(SRCS ${SRCS_CPP}
|
||||
INCLUDE_DIRS "." REQUIRES esp_common arduinoWebSockets pubsubclient SmartRC-CC1101-Driver-Lib)
|
||||
|
||||
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-format -Wno-misleading-indentation)
|
||||
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-format -Wno-misleading-indentation -Wno-error=address)
|
||||
|
||||
# Note: you must have a partition named the first argument (here it's "littlefs")
|
||||
# in your partition table csv file.
|
||||
|
|
|
|||
|
|
@ -1635,7 +1635,7 @@ void SomfyGroup::publishState() {
|
|||
void SomfyGroup::publish() {
|
||||
if(mqtt.connected()) {
|
||||
this->publish("groupId", this->groupId, true);
|
||||
//this->publish("name", this->name, true);
|
||||
this->publish("name", this->name, true);
|
||||
this->publish("remoteAddress", this->getRemoteAddress(), true);
|
||||
this->publish("groupType", static_cast<uint8_t>(this->groupType), true);
|
||||
this->publish("flags", this->flags, true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue