├── .gitignore ├── Doorbell-via-Wemos-and-optocoupler.ino ├── LICENSE ├── README.md ├── data └── homie │ ├── config.json │ └── ui_bundle.gz └── img ├── breadbord_v2.0.jpg ├── from_button_to_HA_via_MQTT.png ├── hardware_setup_v2.0.png ├── optocoupler.png └── standard_doorbell_installation.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Doorbell-via-Wemos-and-optocoupler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/Doorbell-via-Wemos-and-optocoupler.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/README.md -------------------------------------------------------------------------------- /data/homie/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/data/homie/config.json -------------------------------------------------------------------------------- /data/homie/ui_bundle.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/data/homie/ui_bundle.gz -------------------------------------------------------------------------------- /img/breadbord_v2.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/img/breadbord_v2.0.jpg -------------------------------------------------------------------------------- /img/from_button_to_HA_via_MQTT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/img/from_button_to_HA_via_MQTT.png -------------------------------------------------------------------------------- /img/hardware_setup_v2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/img/hardware_setup_v2.0.png -------------------------------------------------------------------------------- /img/optocoupler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/img/optocoupler.png -------------------------------------------------------------------------------- /img/standard_doorbell_installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tIsGoud/Doorbell-via-Wemos-and-optocoupler/HEAD/img/standard_doorbell_installation.png --------------------------------------------------------------------------------