├── .github └── workflows │ ├── ci.yml │ ├── publish-firmware.yml │ └── publish-pages.yml ├── .gitignore ├── Plotly Graph Card ├── Card_LD2450.yaml └── plotly-graph-card.js ├── README.md ├── athom-1gang-switch.yaml ├── athom-2ch-relay-board.yaml ├── athom-2gang-switch.yaml ├── athom-3gang-switch.yaml ├── athom-4ch-relay-board.yaml ├── athom-4gang-switch.yaml ├── athom-8ch-relay-board.yaml ├── athom-energy-monitor-x2.yaml ├── athom-energy-monitor-x6.yaml ├── athom-garage-door.yaml ├── athom-ld2450-sensor.yaml ├── athom-mini-relay-v2.yaml ├── athom-presence-sensor-v3.yaml ├── athom-rgbcw-bulb.yaml ├── athom-rgbcw-light.yaml ├── athom-scd40-sensor.yaml ├── athom-sht40-sensor.yaml ├── athom-smart-plug.yaml ├── athom-zigbee-gateway.yaml ├── components ├── README.md └── bl0906 │ ├── __init__.py │ ├── bl0906.cpp │ ├── bl0906.h │ ├── const.py │ └── sensor.py └── static ├── _config.yml └── index.md /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-firmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/.github/workflows/publish-firmware.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/.github/workflows/publish-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/.gitignore -------------------------------------------------------------------------------- /Plotly Graph Card/Card_LD2450.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/Plotly Graph Card/Card_LD2450.yaml -------------------------------------------------------------------------------- /Plotly Graph Card/plotly-graph-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/Plotly Graph Card/plotly-graph-card.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Athom ESP32C3 Device 2 | -------------------------------------------------------------------------------- /athom-1gang-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-1gang-switch.yaml -------------------------------------------------------------------------------- /athom-2ch-relay-board.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-2ch-relay-board.yaml -------------------------------------------------------------------------------- /athom-2gang-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-2gang-switch.yaml -------------------------------------------------------------------------------- /athom-3gang-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-3gang-switch.yaml -------------------------------------------------------------------------------- /athom-4ch-relay-board.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-4ch-relay-board.yaml -------------------------------------------------------------------------------- /athom-4gang-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-4gang-switch.yaml -------------------------------------------------------------------------------- /athom-8ch-relay-board.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-8ch-relay-board.yaml -------------------------------------------------------------------------------- /athom-energy-monitor-x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-energy-monitor-x2.yaml -------------------------------------------------------------------------------- /athom-energy-monitor-x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-energy-monitor-x6.yaml -------------------------------------------------------------------------------- /athom-garage-door.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-garage-door.yaml -------------------------------------------------------------------------------- /athom-ld2450-sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-ld2450-sensor.yaml -------------------------------------------------------------------------------- /athom-mini-relay-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-mini-relay-v2.yaml -------------------------------------------------------------------------------- /athom-presence-sensor-v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-presence-sensor-v3.yaml -------------------------------------------------------------------------------- /athom-rgbcw-bulb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-rgbcw-bulb.yaml -------------------------------------------------------------------------------- /athom-rgbcw-light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-rgbcw-light.yaml -------------------------------------------------------------------------------- /athom-scd40-sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-scd40-sensor.yaml -------------------------------------------------------------------------------- /athom-sht40-sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-sht40-sensor.yaml -------------------------------------------------------------------------------- /athom-smart-plug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-smart-plug.yaml -------------------------------------------------------------------------------- /athom-zigbee-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/athom-zigbee-gateway.yaml -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /components/bl0906/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/bl0906/bl0906.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/components/bl0906/bl0906.cpp -------------------------------------------------------------------------------- /components/bl0906/bl0906.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/components/bl0906/bl0906.h -------------------------------------------------------------------------------- /components/bl0906/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/components/bl0906/const.py -------------------------------------------------------------------------------- /components/bl0906/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/components/bl0906/sensor.py -------------------------------------------------------------------------------- /static/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/static/_config.yml -------------------------------------------------------------------------------- /static/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/esp32-configs/HEAD/static/index.md --------------------------------------------------------------------------------