gitextract_ko6a3yud/ ├── .gitignore ├── LICENSE ├── README.md ├── ha_config_alarm_clock/ │ ├── README.md │ └── configuration/ │ ├── automations.yaml │ ├── configuration.yaml │ ├── customize.yaml │ ├── groups.yaml │ ├── input_booleans.yaml │ ├── input_numbers.yaml │ ├── media_players.yaml │ └── sensors.yaml ├── ha_config_zigate/ │ └── README.md ├── ha_mqtt_binary_sensor_ble_scanner/ │ ├── README.md │ ├── example.config.h │ └── ha_mqtt_binary_sensor_ble_scanner.ino ├── ha_mqtt_binary_sensor_door/ │ ├── README.md │ └── ha_mqtt_binary_sensor_door.ino ├── ha_mqtt_binary_sensor_nfc_scanner/ │ ├── README.md │ ├── example.config.h │ └── ha_mqtt_binary_sensor_nfc_scanner.ino ├── ha_mqtt_binary_sensor_pir/ │ ├── README.md │ └── ha_mqtt_binary_sensor_pir.ino ├── ha_mqtt_light/ │ ├── README.md │ └── ha_mqtt_light.ino ├── ha_mqtt_light_arilux/ │ ├── LICENSE │ ├── README.md │ ├── example.config.h │ └── ha_mqtt_light_arilux.ino ├── ha_mqtt_light_with_WiFiManager_mDNS_and_OTA/ │ ├── README.md │ └── ha_mqtt_light_with_WiFiManager_mDNS_and_OTA.ino ├── ha_mqtt_light_with_brightness/ │ ├── README.md │ └── ha_mqtt_light_with_brightness.ino ├── ha_mqtt_multisensor/ │ ├── Configuration/ │ │ ├── example.binary_sensor.yaml │ │ ├── example.group.yaml │ │ └── example.sensor.yaml │ ├── LICENSE │ ├── MultiSensor.cpp │ ├── MultiSensor.h │ ├── README.md │ ├── example.config .h │ └── ha_mqtt_multisensor.ino ├── ha_mqtt_rgb_light/ │ ├── README.md │ └── ha_mqtt_rgb_light.ino ├── ha_mqtt_rgbw_light_with_discovery/ │ ├── README.md │ ├── config.example.h │ ├── ha_mqtt_rgbw_light_with_discovery.cpp │ ├── ha_mqtt_rgbw_light_with_discovery.h │ └── ha_mqtt_rgbw_light_with_discovery.ino ├── ha_mqtt_sensor_dht22/ │ ├── README.md │ └── ha_mqtt_sensor_dht22.ino ├── ha_mqtt_sensor_photocell/ │ ├── README.md │ └── ha_mqtt_sensor_photocell.ino ├── ha_mqtt_switch/ │ ├── README.md │ └── ha_mqtt_switch.ino └── openhome/ ├── README.md ├── configuration/ │ ├── home_assistant/ │ │ ├── automation/ │ │ │ ├── automation_1a.yaml │ │ │ ├── automation_1b.yaml │ │ │ ├── automation_1c.yaml │ │ │ ├── automation_1d.yaml │ │ │ ├── automation_2a.yaml │ │ │ ├── automation_2b.yaml │ │ │ ├── automation_3a.yaml │ │ │ ├── automation_3b.yaml │ │ │ ├── automation_3c.yaml │ │ │ └── automation_4a.yaml │ │ ├── automation.yaml │ │ ├── binary_sensors.yaml │ │ ├── configuration.yaml │ │ ├── customize.yaml │ │ ├── groups.yaml │ │ ├── input_numbers.yaml │ │ ├── known_devices.yaml │ │ ├── lights.yaml │ │ └── sensors.yaml │ └── mosquitto/ │ ├── aclfile │ ├── mosquitto.conf │ └── pwfile └── sketches/ ├── Bedroom/ │ └── Bedroom.ino ├── Entrance/ │ └── Entrance.ino └── Livingroom/ └── Livingroom.ino