Matthias Alphart
Matthias Alphart
When running echo_client example in iex I get an error: `%WebSockex.ConnError{original: :closed}` from start_link() It works fine if I replace `wss://` with `ws://` ``` def start_link(opts \\ []) do WebSockex.start_link("ws://echo.websocket.org/?encoding=text",...
It would be nice to support USB interfaces in addition to KNX/IP. Next to supporting users that don't own IP Interfaces Xknx could be used as USB - IP bridge...
- [ ] add an option to send expose values periodically. - [x] add an option to suppress too fast updates of exposed values - [ ] add an option...
Combine DPTBinary and DPTArray to one Class (e.g. "DPTPayload") with an attribute `payload_length`. `payload_length == 0` would indicate DPTBinary style encoding in the CEMI Frame. This would save a lot...
Add support for sending time, date and datetime payloads with arbitrary times (eg. from [HA Input Datetime](https://www.home-assistant.io/integrations/input_datetime/) to ExposeSensor. Currently only current localtime is exposeable (through xknx Datetime device).
An ExposeSensor value currently gets overwritten by a Telegram from the KNX bus. This is equivalent to a communication object with the [write and update flags](https://support.knx.org/hc/en-us/articles/115003188089-Flags) set. If we expose...
It would be nice if we could configure a tunneling connection not only to a specific server IP, but instead also to a specific IA or Line (first 2 Parts...
It would be nice if we had a sensor that takes a raw payload and applies a given bitmask to it. Eg heating or cover actuators often use status communication...
We should unify the way states are retrieved from Devices. Now some use functions (`Sensor.resolve_state()`) and some properties (`Switch.state`). Devices with multiple RemoteValues have multiple properties (brightness, color, etc. )...
We could implement a device wich converts payloads from one DPT to another. Some actuators seem to send percentages as DPT 9 instead of the typical DPT 5 or temperatures...