├── .gitignore ├── OneButton.cpp ├── OneButton.h ├── README.md ├── html_pages.h ├── hw_timer.c ├── hw_timer.h ├── license.txt ├── schematics └── acDimmer_ESP-12.fzz └── smartSwitch.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/.gitignore -------------------------------------------------------------------------------- /OneButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/OneButton.cpp -------------------------------------------------------------------------------- /OneButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/OneButton.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/README.md -------------------------------------------------------------------------------- /html_pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/html_pages.h -------------------------------------------------------------------------------- /hw_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/hw_timer.c -------------------------------------------------------------------------------- /hw_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/hw_timer.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/license.txt -------------------------------------------------------------------------------- /schematics/acDimmer_ESP-12.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/schematics/acDimmer_ESP-12.fzz -------------------------------------------------------------------------------- /smartSwitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theb-1/ESP8266-wifi-light-dimmer/HEAD/smartSwitch.ino --------------------------------------------------------------------------------