├── ESPHome ├── README.md ├── assets │ └── esp32-s3-wroom-1.jpg └── esp32-s3-wroom-1-n16r8.yaml ├── Goodies ├── README.md ├── solar_power.yaml ├── trends.yaml ├── voice_assist_unrecognized_intent.yaml ├── weather_warning.yaml └── weather_warning_automation.yaml ├── LICENSE ├── README.md ├── VoiceAssist ├── README.md ├── alt_esphome_driven │ ├── ask_question.yaml │ ├── check_queued_notifications.yaml │ ├── esphome_notify.yaml │ ├── notify.yaml │ ├── voice_box.yaml │ └── voice_get_greeted_message.yaml ├── bell-ring-1.mp3 ├── esphome │ ├── voice_box.yaml │ └── voice_box_external.yaml └── scripts │ ├── ask_question.yaml │ ├── check_queued_notifications.yaml │ ├── esphome_notify.yaml │ ├── notify.yaml │ └── voice_get_greeted_message.yaml └── VoiceIntents ├── README.md ├── configuration.yaml ├── custom_sentences └── en │ ├── climate.yaml │ ├── here.yaml │ ├── math.yaml │ ├── modes.yaml │ ├── responses.yaml │ ├── solar.yaml │ ├── time.yaml │ └── weather.yaml └── scripts └── en ├── climate.yaml ├── solar.yaml ├── time.yaml └── weather.yaml /ESPHome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/ESPHome/README.md -------------------------------------------------------------------------------- /ESPHome/assets/esp32-s3-wroom-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/ESPHome/assets/esp32-s3-wroom-1.jpg -------------------------------------------------------------------------------- /ESPHome/esp32-s3-wroom-1-n16r8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/ESPHome/esp32-s3-wroom-1-n16r8.yaml -------------------------------------------------------------------------------- /Goodies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/Goodies/README.md -------------------------------------------------------------------------------- /Goodies/solar_power.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/Goodies/solar_power.yaml -------------------------------------------------------------------------------- /Goodies/trends.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/Goodies/trends.yaml -------------------------------------------------------------------------------- /Goodies/voice_assist_unrecognized_intent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/Goodies/voice_assist_unrecognized_intent.yaml -------------------------------------------------------------------------------- /Goodies/weather_warning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/Goodies/weather_warning.yaml -------------------------------------------------------------------------------- /Goodies/weather_warning_automation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/Goodies/weather_warning_automation.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/README.md -------------------------------------------------------------------------------- /VoiceAssist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/README.md -------------------------------------------------------------------------------- /VoiceAssist/alt_esphome_driven/ask_question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/alt_esphome_driven/ask_question.yaml -------------------------------------------------------------------------------- /VoiceAssist/alt_esphome_driven/check_queued_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/alt_esphome_driven/check_queued_notifications.yaml -------------------------------------------------------------------------------- /VoiceAssist/alt_esphome_driven/esphome_notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/alt_esphome_driven/esphome_notify.yaml -------------------------------------------------------------------------------- /VoiceAssist/alt_esphome_driven/notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/alt_esphome_driven/notify.yaml -------------------------------------------------------------------------------- /VoiceAssist/alt_esphome_driven/voice_box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/alt_esphome_driven/voice_box.yaml -------------------------------------------------------------------------------- /VoiceAssist/alt_esphome_driven/voice_get_greeted_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/alt_esphome_driven/voice_get_greeted_message.yaml -------------------------------------------------------------------------------- /VoiceAssist/bell-ring-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/bell-ring-1.mp3 -------------------------------------------------------------------------------- /VoiceAssist/esphome/voice_box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/esphome/voice_box.yaml -------------------------------------------------------------------------------- /VoiceAssist/esphome/voice_box_external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/esphome/voice_box_external.yaml -------------------------------------------------------------------------------- /VoiceAssist/scripts/ask_question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/scripts/ask_question.yaml -------------------------------------------------------------------------------- /VoiceAssist/scripts/check_queued_notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/scripts/check_queued_notifications.yaml -------------------------------------------------------------------------------- /VoiceAssist/scripts/esphome_notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/scripts/esphome_notify.yaml -------------------------------------------------------------------------------- /VoiceAssist/scripts/notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/scripts/notify.yaml -------------------------------------------------------------------------------- /VoiceAssist/scripts/voice_get_greeted_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceAssist/scripts/voice_get_greeted_message.yaml -------------------------------------------------------------------------------- /VoiceIntents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/README.md -------------------------------------------------------------------------------- /VoiceIntents/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/configuration.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/climate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/climate.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/here.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/here.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/math.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/math.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/modes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/modes.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/responses.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/solar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/solar.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/time.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/time.yaml -------------------------------------------------------------------------------- /VoiceIntents/custom_sentences/en/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/custom_sentences/en/weather.yaml -------------------------------------------------------------------------------- /VoiceIntents/scripts/en/climate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/scripts/en/climate.yaml -------------------------------------------------------------------------------- /VoiceIntents/scripts/en/solar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/scripts/en/solar.yaml -------------------------------------------------------------------------------- /VoiceIntents/scripts/en/time.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/scripts/en/time.yaml -------------------------------------------------------------------------------- /VoiceIntents/scripts/en/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerivec/SmartHomeEnhanced/HEAD/VoiceIntents/scripts/en/weather.yaml --------------------------------------------------------------------------------