├── .github └── workflows │ └── build.yml ├── .gitignore ├── Readme.md ├── esphome-opentherm ├── opentherm_binary.h ├── opentherm_climate.h ├── opentherm_component.h ├── opentherm_output.h └── opentherm_switch.h └── opentherm.yaml /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/Readme.md -------------------------------------------------------------------------------- /esphome-opentherm/opentherm_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/esphome-opentherm/opentherm_binary.h -------------------------------------------------------------------------------- /esphome-opentherm/opentherm_climate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/esphome-opentherm/opentherm_climate.h -------------------------------------------------------------------------------- /esphome-opentherm/opentherm_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/esphome-opentherm/opentherm_component.h -------------------------------------------------------------------------------- /esphome-opentherm/opentherm_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/esphome-opentherm/opentherm_output.h -------------------------------------------------------------------------------- /esphome-opentherm/opentherm_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/esphome-opentherm/opentherm_switch.h -------------------------------------------------------------------------------- /opentherm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsciriano/ESPHome-OpenTherm/HEAD/opentherm.yaml --------------------------------------------------------------------------------