├── .gitignore ├── LICENSE ├── README.md ├── appmonitor01.config.yaml ├── bathroom-lights.config.yaml ├── bedroom-lights.config.yaml ├── common ├── base.yaml ├── basic_sensors.yaml └── secrets.yaml ├── custom_components └── sonoff_l1.h ├── dehumidifier.config.yaml ├── devices ├── sonoff-4ch-pro.yaml ├── sonoff-l1.yaml ├── sonoff-powr2.yaml ├── sonoff-s31.yaml ├── sonoff-s31 │ ├── conditional_switch.yaml │ └── simple_switch.yaml └── sonoff-sv-light.yaml ├── electric-heater.config.yaml ├── fresh-hose.config.yaml ├── fridge.config.yaml ├── kitchen-lights.config.yaml ├── main-panel.config.yaml ├── office-lights.config.yaml ├── sewer-hose.config.yaml └── update-eshome.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/README.md -------------------------------------------------------------------------------- /appmonitor01.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/appmonitor01.config.yaml -------------------------------------------------------------------------------- /bathroom-lights.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/bathroom-lights.config.yaml -------------------------------------------------------------------------------- /bedroom-lights.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/bedroom-lights.config.yaml -------------------------------------------------------------------------------- /common/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/common/base.yaml -------------------------------------------------------------------------------- /common/basic_sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/common/basic_sensors.yaml -------------------------------------------------------------------------------- /common/secrets.yaml: -------------------------------------------------------------------------------- 1 | <<: !include ../secrets.yaml -------------------------------------------------------------------------------- /custom_components/sonoff_l1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/custom_components/sonoff_l1.h -------------------------------------------------------------------------------- /dehumidifier.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/dehumidifier.config.yaml -------------------------------------------------------------------------------- /devices/sonoff-4ch-pro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/devices/sonoff-4ch-pro.yaml -------------------------------------------------------------------------------- /devices/sonoff-l1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/devices/sonoff-l1.yaml -------------------------------------------------------------------------------- /devices/sonoff-powr2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/devices/sonoff-powr2.yaml -------------------------------------------------------------------------------- /devices/sonoff-s31.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/devices/sonoff-s31.yaml -------------------------------------------------------------------------------- /devices/sonoff-s31/conditional_switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/devices/sonoff-s31/conditional_switch.yaml -------------------------------------------------------------------------------- /devices/sonoff-s31/simple_switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/devices/sonoff-s31/simple_switch.yaml -------------------------------------------------------------------------------- /devices/sonoff-sv-light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/devices/sonoff-sv-light.yaml -------------------------------------------------------------------------------- /electric-heater.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/electric-heater.config.yaml -------------------------------------------------------------------------------- /fresh-hose.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/fresh-hose.config.yaml -------------------------------------------------------------------------------- /fridge.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/fridge.config.yaml -------------------------------------------------------------------------------- /kitchen-lights.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/kitchen-lights.config.yaml -------------------------------------------------------------------------------- /main-panel.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/main-panel.config.yaml -------------------------------------------------------------------------------- /office-lights.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/office-lights.config.yaml -------------------------------------------------------------------------------- /sewer-hose.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileoffgrid/esphome/HEAD/sewer-hose.config.yaml -------------------------------------------------------------------------------- /update-eshome.sh: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | pip3 install -U esphome 3 | --------------------------------------------------------------------------------