├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── publish-firmware.yml │ └── publish-pages.yml ├── .gitignore ├── ESP8266_MINI.bin ├── LICENSE ├── README.md ├── athom-cb02.yaml ├── athom-garage-door.yaml ├── athom-ls-4p-3wire.yaml ├── athom-ls-4p-4wire.yaml ├── athom-mini-switch.yaml ├── athom-presence-sensor.yaml ├── athom-relay-board-x1.yaml ├── athom-relay-board-x2.yaml ├── athom-relay-board-x4.yaml ├── athom-relay-board-x8.yaml ├── athom-rgb-light.yaml ├── athom-rgbct-light.yaml ├── athom-rgbw-light.yaml ├── athom-rgbww-light.yaml ├── athom-smart-plug-v2.yaml ├── athom-smart-plug.yaml ├── athom-sw01-v2.yaml ├── athom-sw01.yaml ├── athom-sw02-v2.yaml ├── athom-sw02.yaml ├── athom-sw03.yaml ├── athom-sw04.yaml ├── athom-wall-outlet.yaml ├── athom-without-relay-plug.yaml ├── athom-ws2812b.yaml ├── images ├── Athom_15w_Bulb.png ├── Athom_1Gang_Key_Switch.png ├── Athom_1Gang_Touch_Switch.png ├── Athom_1Gang_US_Switch.png ├── Athom_2Gang_Key_Switch.png ├── Athom_2Gang_Touch_Switch.png ├── Athom_3Gang_Key_Switch.png ├── Athom_3Gang_Touch_Switch.png ├── Athom_3Pin_Controller.png ├── Athom_4Gang_Touch_Swtich.png ├── Athom_4Pin_Controller.png ├── Athom_7w_Bulb.png ├── Athom_AU_Plug_V2.png ├── Athom_BR30_Bulb.png ├── Athom_BR_Plug_V2.png ├── Athom_CB01.png ├── Athom_CB02.png ├── Athom_EU_Plug.png ├── Athom_EU_Plug_V2.png ├── Athom_GU10_Bulb.png ├── Athom_Garage_Door_Opener.png ├── Athom_IL_Plug_V2.png ├── Athom_IT_Plug_V2.png ├── Athom_Mini_Relay.png ├── Athom_Presence_Sensor.png ├── Athom_RGBW_Controller.png ├── Athom_RGB_Controller.png ├── Athom_UK_Plug.png ├── Athom_UK_Plug_V2.png ├── Athom_US_Plug.png ├── Athom_US_Plug_V2.png └── Athom_Wall_Outlet.png ├── static ├── _config.yml └── index.md └── tasmota-minimal.bin.gz /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-firmware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/.github/workflows/publish-firmware.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/.github/workflows/publish-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/.gitignore -------------------------------------------------------------------------------- /ESP8266_MINI.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/ESP8266_MINI.bin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/README.md -------------------------------------------------------------------------------- /athom-cb02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-cb02.yaml -------------------------------------------------------------------------------- /athom-garage-door.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-garage-door.yaml -------------------------------------------------------------------------------- /athom-ls-4p-3wire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-ls-4p-3wire.yaml -------------------------------------------------------------------------------- /athom-ls-4p-4wire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-ls-4p-4wire.yaml -------------------------------------------------------------------------------- /athom-mini-switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-mini-switch.yaml -------------------------------------------------------------------------------- /athom-presence-sensor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-presence-sensor.yaml -------------------------------------------------------------------------------- /athom-relay-board-x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-relay-board-x1.yaml -------------------------------------------------------------------------------- /athom-relay-board-x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-relay-board-x2.yaml -------------------------------------------------------------------------------- /athom-relay-board-x4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-relay-board-x4.yaml -------------------------------------------------------------------------------- /athom-relay-board-x8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-relay-board-x8.yaml -------------------------------------------------------------------------------- /athom-rgb-light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-rgb-light.yaml -------------------------------------------------------------------------------- /athom-rgbct-light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-rgbct-light.yaml -------------------------------------------------------------------------------- /athom-rgbw-light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-rgbw-light.yaml -------------------------------------------------------------------------------- /athom-rgbww-light.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-rgbww-light.yaml -------------------------------------------------------------------------------- /athom-smart-plug-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-smart-plug-v2.yaml -------------------------------------------------------------------------------- /athom-smart-plug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-smart-plug.yaml -------------------------------------------------------------------------------- /athom-sw01-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-sw01-v2.yaml -------------------------------------------------------------------------------- /athom-sw01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-sw01.yaml -------------------------------------------------------------------------------- /athom-sw02-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-sw02-v2.yaml -------------------------------------------------------------------------------- /athom-sw02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-sw02.yaml -------------------------------------------------------------------------------- /athom-sw03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-sw03.yaml -------------------------------------------------------------------------------- /athom-sw04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-sw04.yaml -------------------------------------------------------------------------------- /athom-wall-outlet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-wall-outlet.yaml -------------------------------------------------------------------------------- /athom-without-relay-plug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-without-relay-plug.yaml -------------------------------------------------------------------------------- /athom-ws2812b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/athom-ws2812b.yaml -------------------------------------------------------------------------------- /images/Athom_15w_Bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_15w_Bulb.png -------------------------------------------------------------------------------- /images/Athom_1Gang_Key_Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_1Gang_Key_Switch.png -------------------------------------------------------------------------------- /images/Athom_1Gang_Touch_Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_1Gang_Touch_Switch.png -------------------------------------------------------------------------------- /images/Athom_1Gang_US_Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_1Gang_US_Switch.png -------------------------------------------------------------------------------- /images/Athom_2Gang_Key_Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_2Gang_Key_Switch.png -------------------------------------------------------------------------------- /images/Athom_2Gang_Touch_Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_2Gang_Touch_Switch.png -------------------------------------------------------------------------------- /images/Athom_3Gang_Key_Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_3Gang_Key_Switch.png -------------------------------------------------------------------------------- /images/Athom_3Gang_Touch_Switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_3Gang_Touch_Switch.png -------------------------------------------------------------------------------- /images/Athom_3Pin_Controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_3Pin_Controller.png -------------------------------------------------------------------------------- /images/Athom_4Gang_Touch_Swtich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_4Gang_Touch_Swtich.png -------------------------------------------------------------------------------- /images/Athom_4Pin_Controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_4Pin_Controller.png -------------------------------------------------------------------------------- /images/Athom_7w_Bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_7w_Bulb.png -------------------------------------------------------------------------------- /images/Athom_AU_Plug_V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_AU_Plug_V2.png -------------------------------------------------------------------------------- /images/Athom_BR30_Bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_BR30_Bulb.png -------------------------------------------------------------------------------- /images/Athom_BR_Plug_V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_BR_Plug_V2.png -------------------------------------------------------------------------------- /images/Athom_CB01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_CB01.png -------------------------------------------------------------------------------- /images/Athom_CB02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_CB02.png -------------------------------------------------------------------------------- /images/Athom_EU_Plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_EU_Plug.png -------------------------------------------------------------------------------- /images/Athom_EU_Plug_V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_EU_Plug_V2.png -------------------------------------------------------------------------------- /images/Athom_GU10_Bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_GU10_Bulb.png -------------------------------------------------------------------------------- /images/Athom_Garage_Door_Opener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_Garage_Door_Opener.png -------------------------------------------------------------------------------- /images/Athom_IL_Plug_V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_IL_Plug_V2.png -------------------------------------------------------------------------------- /images/Athom_IT_Plug_V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_IT_Plug_V2.png -------------------------------------------------------------------------------- /images/Athom_Mini_Relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_Mini_Relay.png -------------------------------------------------------------------------------- /images/Athom_Presence_Sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_Presence_Sensor.png -------------------------------------------------------------------------------- /images/Athom_RGBW_Controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_RGBW_Controller.png -------------------------------------------------------------------------------- /images/Athom_RGB_Controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_RGB_Controller.png -------------------------------------------------------------------------------- /images/Athom_UK_Plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_UK_Plug.png -------------------------------------------------------------------------------- /images/Athom_UK_Plug_V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_UK_Plug_V2.png -------------------------------------------------------------------------------- /images/Athom_US_Plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_US_Plug.png -------------------------------------------------------------------------------- /images/Athom_US_Plug_V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_US_Plug_V2.png -------------------------------------------------------------------------------- /images/Athom_Wall_Outlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/images/Athom_Wall_Outlet.png -------------------------------------------------------------------------------- /static/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/static/_config.yml -------------------------------------------------------------------------------- /static/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/static/index.md -------------------------------------------------------------------------------- /tasmota-minimal.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athom-tech/athom-configs/HEAD/tasmota-minimal.bin.gz --------------------------------------------------------------------------------