From 2d4959d8c6fd988ce5447cfbe7b20693364d41f8 Mon Sep 17 00:00:00 2001 From: Guido Schreuder Date: Mon, 19 Feb 2024 13:06:24 +0100 Subject: [PATCH] added some todo's --- esphome/components/ebus/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/esphome/components/ebus/__init__.py b/esphome/components/ebus/__init__.py index 97e111cf6c..bd171f5f04 100644 --- a/esphome/components/ebus/__init__.py +++ b/esphome/components/ebus/__init__.py @@ -8,6 +8,13 @@ from esphome.const import ( CONF_RX_PIN, ) + +# TODO: make ebus primary address optional for only listening on the bus +# TODO: send identification response ewhen requested +# TODO: add binary_sensor +# TODO: add debug mode that logs all messages on the bus +# TODO: investigate using UART component, but that does not seem to expose the UART NUM + CODEOWNERS = ["@guidoschreuder"] ebus_ns = cg.esphome_ns.namespace("ebus")