Skip to content

Commit

Permalink
added support for mgw lan
Browse files Browse the repository at this point in the history
  • Loading branch information
grimmpp committed May 23, 2024
1 parent 98dd036 commit 9327965
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 139 deletions.
136 changes: 0 additions & 136 deletions custom_components/eltako/esp3_tcp_com.py

This file was deleted.

2 changes: 1 addition & 1 deletion custom_components/eltako/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _init_bus(self):
self._bus = TCP2SerialCommunicator(host=self.serial_path, port=5100, callback=self._callback_receive_message_from_serial_bus, esp2_translation_enabled=True)
else:
# lazy import to avoid preloading library
from .esp3_tcp_com import ESP3SerialCommunicator
from esp2_gateway_adapter.esp3_serial_com import ESP3SerialCommunicator
self._bus = ESP3SerialCommunicator(filename=self.serial_path, callback=self._callback_receive_message_from_serial_bus, esp2_translation_enabled=True)

self._bus.set_status_changed_handler(self._fire_connection_state_changed_event)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/eltako/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/grimmpp/home-assistant-eltako/issues",
"loggers": ["eltako"],
"requirements": ["eltako14bus==0.0.53", "enocean==0.60.1", "StrEnum", "esp2-gateway-adapter==0.2.3"],
"requirements": ["eltako14bus==0.0.53", "enocean==0.60.1", "StrEnum", "esp2-gateway-adapter==0.2.5"],
"version": "1.4.4"
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ enocean==0.60.1
homeassistant
termcolor
StrEnum
esp2-gateway-adapter==0.2.3
esp2-gateway-adapter==0.2.5

0 comments on commit 9327965

Please sign in to comment.