├── .gitignore ├── README.md ├── components ├── beam_binary_sensor │ ├── __init__.py │ ├── beam_binary_sensor.cpp │ └── beam_binary_sensor.h └── solis_s5 │ ├── __init__.py │ ├── solis_s5.cpp │ └── solis_s5.h ├── solis_piggyback_schematic_0.pdf ├── soliss5-32.yaml ├── soliss5.yaml ├── tools └── soliss5_protocoltest.py └── watermeter.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/README.md -------------------------------------------------------------------------------- /components/beam_binary_sensor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/components/beam_binary_sensor/__init__.py -------------------------------------------------------------------------------- /components/beam_binary_sensor/beam_binary_sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/components/beam_binary_sensor/beam_binary_sensor.cpp -------------------------------------------------------------------------------- /components/beam_binary_sensor/beam_binary_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/components/beam_binary_sensor/beam_binary_sensor.h -------------------------------------------------------------------------------- /components/solis_s5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/components/solis_s5/__init__.py -------------------------------------------------------------------------------- /components/solis_s5/solis_s5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/components/solis_s5/solis_s5.cpp -------------------------------------------------------------------------------- /components/solis_s5/solis_s5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/components/solis_s5/solis_s5.h -------------------------------------------------------------------------------- /solis_piggyback_schematic_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/solis_piggyback_schematic_0.pdf -------------------------------------------------------------------------------- /soliss5-32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/soliss5-32.yaml -------------------------------------------------------------------------------- /soliss5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/soliss5.yaml -------------------------------------------------------------------------------- /tools/soliss5_protocoltest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/tools/soliss5_protocoltest.py -------------------------------------------------------------------------------- /watermeter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grob6000/esphome-externalcomponents/HEAD/watermeter.yaml --------------------------------------------------------------------------------