From 62c68f4d6072c3eb19b36a20f6d6ffffd9c59339 Mon Sep 17 00:00:00 2001 From: Samuel Sieb Date: Mon, 16 Jan 2023 13:36:44 -0800 Subject: [PATCH] allow multiple dsmr (#4299) Co-authored-by: Samuel Sieb fixes https://github.com/esphome/feature-requests/issues/2062 --- esphome/components/dsmr/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esphome/components/dsmr/__init__.py b/esphome/components/dsmr/__init__.py index 284733cca6..f4f8305ba6 100644 --- a/esphome/components/dsmr/__init__.py +++ b/esphome/components/dsmr/__init__.py @@ -10,6 +10,8 @@ from esphome.const import ( CODEOWNERS = ["@glmnet", "@zuidwijk"] +MULTI_CONF = True + DEPENDENCIES = ["uart"] AUTO_LOAD = ["sensor", "text_sensor"]