Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XSET module missing module type #95

Merged
merged 1 commit into from
Dec 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* I2C Bus instance referencing error, devices not able to access the bus instance.
* OneWire bus not being instantiated.
* OneWire polling not referencing device instance.
* XSET module missing module type.

## 0.12.2

Expand Down
3 changes: 3 additions & 0 deletions mqttany/modules/xset.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
import logger
from config import parse_config
from common import BusMessage, BusNode, BusProperty
from modules import ModuleType

_module_type = ModuleType.INTERFACE

CONF_KEY_DEFAULT_DISPLAY = "default display"
CONF_KEY_STARTUP_COMMANDS = "startup commands"
Expand Down