Skip to content

Commit

Permalink
add workaround for .active propertie
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes-Thiel committed Jun 14, 2024
1 parent f86d3e4 commit 9f4274c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions main/modules/proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Proxy::Proxy(const std::string name,
// definitions.
if (module_type == "Input") {
this->properties["level"] = std::make_shared<IntegerVariable>(0);
this->properties["active"] = std::make_shared<BooleanVariable>(false);
}

expander->serial->write_checked_line(buffer, pos);
Expand Down
2 changes: 1 addition & 1 deletion main/storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <string>

#define NAMESPACE "storage"
#define MAX_CHUNK_SIZE 0xf80
#define MAX_CHUNK_SIZE 0xf00

std::string Storage::startup;

Expand Down

0 comments on commit 9f4274c

Please sign in to comment.