From f3dbd12fdadb5c02b8cc9ec425ec467b910fc0c0 Mon Sep 17 00:00:00 2001 From: Arthur Rump Date: Sat, 21 Jan 2023 12:23:27 +0100 Subject: [PATCH] Add info on `component not found` error to README #10 --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b2ac543..4088ee3 100644 --- a/README.md +++ b/README.md @@ -218,3 +218,9 @@ The boiler can also report several numerical values, which are available through - `t_dhw_set`: Domestic hot water temperature setpoint (°C) - `max_t_set`: Maximum allowable CH water setpoint (°C) + +## Troubleshooting + +### `Component not found: opentherm.` + +If ESPHome reports that it is unable to find the component, this might be due to the use of an older version of Python. It should work on version 3.9 (which is what runs in CI) and higher, but older versions may not support all typing features used in this project. You can update to a newer Python version, or install the backported typing library with `pip install typing-extensions`. (Thanks to [@Arise for figuring this out](https://github.com/arthurrump/esphome-opentherm/issues/10)!)