gitextract_92xa7u3p/ ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── ad-ench/ │ └── ench.py ├── alarmClock/ │ ├── alarmClock.py │ └── alarmClock.yaml ├── alexa/ │ ├── README.md │ ├── alexa.yaml │ ├── alexa_api.py │ ├── custom_skill.json │ ├── lightState/ │ │ ├── lightStateIntent-utterances_DE.csv │ │ ├── lightStateIntent-utterances_EN.csv │ │ ├── lightStateIntent.py │ │ └── lightStateIntent.yaml │ ├── listService/ │ │ ├── listService.py │ │ └── listService.yaml │ ├── nextBus/ │ │ ├── nextBusIntent.py │ │ └── nextBusIntent.yaml │ ├── remindMeOfXWhenZone/ │ │ ├── remindMeOfXWhenZoneIntent.py │ │ └── remindMeOfXWhenZoneIntent.yaml │ ├── temperatureState/ │ │ ├── temperatureStateIntent-utterances_DE.csv │ │ ├── temperatureStateIntent-utterances_EN.csv │ │ ├── temperatureStateIntent.py │ │ └── temperatureStateIntent.yaml │ ├── turnEntityOffInX/ │ │ ├── requirements.txt │ │ ├── turnEntityOffInXIntent-utterances_DE.csv │ │ ├── turnEntityOffInXIntent-utterances_EN.csv │ │ ├── turnEntityOffInXIntent.py │ │ └── turnEntityOffInXIntent.yaml │ └── windowsOpen/ │ ├── windowsOpenIntent-utterances_DE.csv │ ├── windowsOpenIntent-utterances_EN.csv │ ├── windowsOpenIntent.py │ └── windowsOpenIntent.yaml ├── alexaSpeakerConnector/ │ ├── alexaSpeakerConnector.py │ └── alexaSpeakerConnector.yaml ├── appWatcher/ │ ├── appWatcher.py │ └── appWatcher.yaml ├── apps.yaml ├── buttonClicked/ │ ├── buttonClicked.py │ └── buttonClicked.yaml ├── comingHome/ │ ├── comingHome.py │ └── comingHome.yaml ├── deconz_xiaomi_button/ │ └── deconz_xiaomi_button.py ├── deconz_xiaomi_button.yaml ├── detectWrongState/ │ ├── detectWrongState.py │ └── detectWrongState.yaml ├── ench.yaml ├── eventMonitor/ │ ├── eventMonitor.py │ └── eventMonitor.yaml ├── faceRecognitionBot/ │ ├── faceRecognitionBot.py │ └── faceRecognitionBot.yaml ├── globals.py ├── heartbeat/ │ ├── heartbeat.py │ └── heartbeat.yaml ├── homeArrivalNotifier/ │ ├── homeArrivalNotifier.py │ └── homeArrivalNotifier.yaml ├── isHomeDeterminer/ │ ├── isHomeDeterminer.py │ └── isHomeDeterminer.yaml ├── isUserHomeDeterminer/ │ ├── isUserHomeDeterminer.py │ └── isUserHomeDeterminer.yaml ├── leavingZoneNotifier/ │ ├── leavingZoneNotifier.py │ └── leavingZoneNotifier.yaml ├── motionTrigger/ │ ├── motionTrigger.py │ └── motionTrigger.yaml ├── newWifiDeviceNotify/ │ ├── newWifiDeviceNotify.py │ ├── newWifiDeviceNotify.yaml │ └── requirements.txt ├── nextAppointmentLeaveNotifier/ │ ├── nextAppointmentLeaveNotifier.py │ └── nextAppointmentLeaveNotifier.yaml ├── notifier/ │ ├── notifier.py │ └── notifier.yaml ├── notifyOfActionWhenAway/ │ ├── notifyOfActionWhenAway.py │ └── notifyOfActionWhenAway.yaml ├── plantWateringNotifier/ │ ├── plantWateringNotifier.py │ └── plantWateringNotifier.yaml ├── pollenNotifier/ │ ├── pollenNotifier.py │ └── pollenNotifier.yaml ├── powerUsageNotification/ │ ├── powerUsageNotification.py │ └── powerUsageNotification.yaml ├── reminder/ │ ├── reminder.py │ └── reminder.yaml ├── requirements.txt ├── seqSink/ │ ├── requirements.txt │ ├── seqSink.py │ └── seqSink.yaml ├── setThermostat/ │ ├── setThermostat.py │ └── setThermostat.yaml ├── setThermostatOnStateChange/ │ ├── setThermostatOnStateChange.py │ └── setThermostatOnStateChange.yaml ├── sleepModeHandler/ │ ├── sleepModeHandler.py │ ├── sleepModeHandler.yaml │ ├── userSleepModeHandler.py │ └── userSleepModeHandler.yaml ├── travelTimeNotifier/ │ ├── travelTimeNotifier.py │ └── travelTimeNotifier.yaml ├── turnFanOnWhenHot/ │ ├── turnFanOnWhenHot.py │ └── turnFanOnWhenHot.yaml └── turnOffBarAfterRestart/ ├── turnOffBarAfterRestart.py └── turnOffBarAfterRestart.yaml