├── .gitignore ├── Gruntfile.js ├── README.md ├── app ├── app.js ├── config.js ├── configs │ └── notifications.js ├── controllers │ ├── app-alpaca.js │ ├── app-instance.js │ ├── app-local.js │ ├── app-online.js │ ├── app.js │ ├── auth.js │ ├── automation-hazard.js │ ├── automation-heating.js │ ├── automation-rule.js │ ├── automation-scene.js │ ├── automation-schedule.js │ ├── automation-security.js │ ├── automations.js │ ├── base.js │ ├── camera.js │ ├── device.js │ ├── element-id.js │ ├── element-widget.js │ ├── element.js │ ├── enocean.js │ ├── event.js │ ├── icon.js │ ├── jamesbox.js │ ├── management-appstore.js │ ├── management-cloud-backup.js │ ├── management-factory.js │ ├── management-firmware.js │ ├── management-licence.js │ ├── management-local.js │ ├── management-oauth.js │ ├── management-remote.js │ ├── management-report.js │ ├── management-restore.js │ ├── management-timezone-jb.js │ ├── management-timezone.js │ ├── management-user.js │ ├── management-wifi.js │ ├── management.js │ ├── matter-commission.js │ ├── matter-inclusion.js │ ├── matter-manage.js │ ├── matter-vendor.js │ ├── mobile.js │ ├── mysettings-sessions.js │ ├── mysettings.js │ ├── room.js │ ├── rss.js │ ├── skin.js │ ├── smartstart.js │ ├── speech_assistant.js │ ├── welcome.js │ ├── wifiplug.js │ ├── zigbee-inclusion.js │ ├── zigbee-manage.js │ ├── zigbee-vendor.js │ ├── zwave-exclude.js │ ├── zwave-inclusion.js │ ├── zwave-manage.js │ └── zwave-vendor.js ├── css │ ├── .css │ ├── base │ │ ├── dots.css │ │ └── dots.map │ ├── homekit.jpg │ ├── img │ │ └── fatal-error-32.png │ ├── main.css │ ├── main.css.map │ ├── main.css.orig │ ├── screenshot.png │ └── wallpaper.png ├── directives │ ├── angular-long-press.js │ ├── angular-long-press.min.js │ ├── angular-slider.js │ ├── contextMenu.js │ ├── dir-pagination.js │ ├── directives-expert.js │ ├── directives.js │ ├── elements │ │ └── shortcut.directive.js │ ├── smartstart │ │ └── controller-mode-switcher.directive.js │ └── tc-angular-chartjs.js ├── factories │ └── factories.js ├── filters │ └── filters.js ├── fonts │ ├── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ └── glyphicons-halflings-regular.woff │ ├── fa-brands-400.eot │ ├── fa-brands-400.woff2 │ ├── fa-duotone-900.eot │ ├── fa-duotone-900.woff2 │ ├── fa-light-300.eot │ ├── fa-light-300.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ └── fa-solid-900.woff2 ├── icons.js ├── img │ ├── alexa │ │ ├── activate_skill.png │ │ ├── alexa_login.png │ │ ├── amazon_echo.jpg │ │ ├── found_skill.png │ │ ├── manage_alexa.png │ │ └── oauth_login.png │ ├── apple-store-badges.svg │ ├── automation │ │ ├── hazard.png │ │ ├── heating.png │ │ ├── rules.png │ │ ├── scenes.png │ │ ├── schedules.png │ │ └── security.png │ ├── colorwheel.png │ ├── flags │ │ ├── cn.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── en.png │ │ ├── es.png │ │ ├── fi.png │ │ ├── fr.png │ │ ├── it.png │ │ ├── pt.png │ │ ├── ru.png │ │ ├── sk.png │ │ └── sv.png │ ├── google-play-badge.png │ ├── google_home │ │ ├── google_home.jpg │ │ └── google_home_and google_home_mini.png │ ├── icon_cloudbackup.png │ ├── komsa.png │ ├── logo-camera.png │ ├── logo-camera.svg │ ├── logo-enocean.svg │ ├── logo-matter.svg │ ├── logo-mobile.png │ ├── logo-mobile.svg │ ├── logo-speech-assistants.png │ ├── logo-speech-assistants.svg │ ├── logo-wifiplug.png │ ├── logo-wifiplug.svg │ ├── logo-z-wave-z-only.png │ ├── logo-zigbee.svg │ ├── logo-zwave.svg │ ├── small_logo.svg │ ├── smartphone.png │ ├── smartstart │ │ ├── qr-code-iphone-icon.png │ │ └── qrcode.png │ ├── welcome.jpg │ ├── welcome.png │ ├── welcome │ │ ├── automation_view.jpg │ │ ├── automation_view_mobile.jpg │ │ ├── element_detail_view.jpg │ │ ├── element_detail_view_mobile.jpg │ │ ├── elements.jpg │ │ ├── elements_mobile.jpg │ │ ├── events.jpg │ │ ├── events_mobile.jpg │ │ ├── menu_view.jpg │ │ ├── menu_view_mobile.jpg │ │ ├── overview.jpg │ │ ├── overview_mobile.jpg │ │ ├── room_view.jpg │ │ └── room_view_mobile.jpg │ └── z-wave-me-mobile-app-icon.png ├── info.json ├── jquery │ └── postrender.js ├── lang │ ├── cn.json │ ├── cz.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fi.json │ ├── fr.json │ ├── it.json │ ├── pt.json │ ├── ru.json │ ├── sk.json │ └── sv.json ├── modules │ ├── httpLatency.js │ ├── ngDeviceDetector.js │ ├── ngDeviceDetector.min.js │ └── qAllSettled.js ├── routes.js ├── sass │ ├── base │ │ ├── _accordion.scss │ │ ├── _active_apps.scss │ │ ├── _alert.scss │ │ ├── _apps.scss │ │ ├── _auth.scss │ │ ├── _autocomplete.scss │ │ ├── _automation.scss │ │ ├── _bar.scss │ │ ├── _blank.scss │ │ ├── _body.scss │ │ ├── _button.scss │ │ ├── _commands.scss │ │ ├── _customize.scss │ │ ├── _definition_list.scss │ │ ├── _devices.scss │ │ ├── _dots.scss │ │ ├── _dragdrop.scss │ │ ├── _dropdown.scss │ │ ├── _elements.scss │ │ ├── _events.scss │ │ ├── _flexcard.scss │ │ ├── _flexgallery.scss │ │ ├── _flextag.scss │ │ ├── _flip.scss │ │ ├── _footer.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _header.scss │ │ ├── _iframe.scss │ │ ├── _img.scss │ │ ├── _imglist.scss │ │ ├── _inclusion.scss │ │ ├── _infowindow.scss │ │ ├── _input.scss │ │ ├── _label.scss │ │ ├── _list_panel.scss │ │ ├── _loader.scss │ │ ├── _local_apps.scss │ │ ├── _media_queries.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _navi.scss │ │ ├── _night.scss │ │ ├── _online_apps.scss │ │ ├── _page_topbar.scss │ │ ├── _pagination.scss │ │ ├── _report.scss │ │ ├── _rooms.scss │ │ ├── _rss.scss │ │ ├── _schedule.scss │ │ ├── _section.scss │ │ ├── _security.scss │ │ ├── _sessions.scss │ │ ├── _slider.scss │ │ ├── _smartstart.scss │ │ ├── _switch.scss │ │ ├── _tab.scss │ │ ├── _table.scss │ │ ├── _table_responsive.scss │ │ ├── _variables.scss │ │ ├── _widget.scss │ │ ├── _wifi.scss │ │ └── _wizard.scss │ ├── compile.sh │ ├── config.rb │ ├── custom │ │ ├── _bayernshui.scss │ │ ├── _blueshui.scss │ │ ├── _dark_left.scss │ │ ├── _darkshui.scss │ │ ├── _homekit.scss │ │ ├── _left_menu.scss │ │ ├── _popp.scss │ │ ├── _shui.scss │ │ └── _shui_night.scss │ ├── main.scss │ └── vendor │ │ ├── _alertify.scss │ │ ├── _alpaca.scss │ │ ├── _angular.slider.scss │ │ ├── _colorpicker.scss │ │ ├── _contextMenu.scss │ │ ├── _highlight-textarea.scss │ │ ├── _highlight-vs.scss │ │ ├── _jquery.fileupload-ui.scss │ │ ├── _jquery.fileupload.scss │ │ ├── _minireset.scss │ │ ├── _slick.scss │ │ ├── bootstrap │ │ ├── _alerts.scss │ │ ├── _badges.scss │ │ ├── _breadcrumbs.scss │ │ ├── _button-groups.scss │ │ ├── _buttons.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _component-animations.scss │ │ ├── _dropdowns.scss │ │ ├── _forms.scss │ │ ├── _glyphicons.scss │ │ ├── _grid.scss │ │ ├── _input-groups.scss │ │ ├── _jumbotron.scss │ │ ├── _labels.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modals.scss │ │ ├── _navbar.scss │ │ ├── _navs.scss │ │ ├── _normalize.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _panels.scss │ │ ├── _popovers.scss │ │ ├── _print.scss │ │ ├── _progress-bars.scss │ │ ├── _responsive-embed.scss │ │ ├── _responsive-utilities.scss │ │ ├── _scaffolding.scss │ │ ├── _tables.scss │ │ ├── _theme.scss │ │ ├── _thumbnails.scss │ │ ├── _tooltip.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── _wells.scss │ │ ├── bootstrap.scss │ │ └── mixins │ │ │ ├── _alerts.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _buttons.scss │ │ │ ├── _center-block.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hide-text.scss │ │ │ ├── _image.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _nav-vertical-align.scss │ │ │ ├── _opacity.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _reset-filter.scss │ │ │ ├── _resize.scss │ │ │ ├── _responsive-visibility.scss │ │ │ ├── _size.scss │ │ │ ├── _tab-focus.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-overflow.scss │ │ │ └── _vendor-prefixes.scss │ │ └── fontawesome │ │ └── all.scss ├── services │ ├── mobile-detector.service.js │ ├── services-expert.js │ └── services.js ├── templates.js └── views │ ├── apps │ ├── app_module_alpaca.html │ ├── apps_instance.html │ ├── apps_instance_ctrl.html │ ├── apps_instance_widget.1.html │ ├── apps_instance_widget.html │ ├── apps_local.html │ ├── apps_local_ctrl.html │ ├── apps_local_id.html │ ├── apps_local_widget.html │ ├── apps_local_widget_entry.html │ ├── apps_local_widget_updated.html │ ├── apps_online.html │ ├── apps_online_ctrl.html │ ├── apps_online_filter.html │ ├── apps_online_filter_widget.html │ ├── apps_online_id.html │ ├── apps_online_id_comments.html │ ├── apps_online_id_info.html │ ├── apps_online_id_patches.html │ ├── apps_online_slider.html │ ├── apps_online_widget.html │ ├── apps_online_widget_entry.html │ ├── dropdown.html │ └── navi.html │ ├── auth │ ├── auth.html │ ├── auth_firstaccess.html │ ├── auth_login.html │ ├── oauth2.html │ ├── password_forgot.html │ └── password_reset.html │ ├── automation │ ├── automations.html │ ├── hazard │ │ ├── fire │ │ │ ├── fire.html │ │ │ ├── fire_devices_assigned.html │ │ │ ├── fire_devices_available.html │ │ │ ├── fire_notifiers_add.html │ │ │ ├── fire_notifiers_assigned.html │ │ │ ├── fire_sensors_assigned.html │ │ │ └── fire_sensors_available.html │ │ ├── hazard.html │ │ ├── hazard_old.html │ │ ├── id.html │ │ ├── id_form.html │ │ ├── inputs │ │ │ ├── notification.html │ │ │ ├── switchBinary.html │ │ │ ├── switchMultilevel.html │ │ │ └── switchRGBW.html │ │ └── leakage │ │ │ ├── leakage.html │ │ │ ├── leakage_devices_assigned.html │ │ │ ├── leakage_devices_available.html │ │ │ ├── leakage_notifiers_add.html │ │ │ ├── leakage_notifiers_assigned.html │ │ │ ├── leakage_sensors_assigned.html │ │ │ └── leakage_sensors_available.html │ ├── heating │ │ ├── heating.html │ │ ├── heating_id.html │ │ ├── heating_id_temperatrue_modal.html │ │ └── mobile_schedule.html │ ├── navi.html │ ├── no_device.html │ ├── rules │ │ ├── advanced │ │ │ ├── assigned_notifications.html │ │ │ ├── else.html │ │ │ ├── if.html │ │ │ ├── if_assigned.html │ │ │ ├── if_available.html │ │ │ ├── then.html │ │ │ ├── then_assigned.html │ │ │ ├── then_assigned_notifications.html │ │ │ ├── then_available.html │ │ │ └── then_expert.html │ │ ├── inputs │ │ │ ├── advanced │ │ │ │ ├── compare.html │ │ │ │ ├── doorlock.html │ │ │ │ ├── nested.html │ │ │ │ ├── sensorBinary.html │ │ │ │ ├── sensorDiscrete.html │ │ │ │ ├── sensorMultilevel.html │ │ │ │ ├── switchBinary.html │ │ │ │ ├── switchControl.html │ │ │ │ ├── switchMultilevel.html │ │ │ │ ├── switchRGBW.html │ │ │ │ ├── thermostat.html │ │ │ │ └── time.html │ │ │ ├── doorlock.html │ │ │ ├── nested.html │ │ │ ├── notification.html │ │ │ ├── sensorBinary.html │ │ │ ├── sensorDiscrete.html │ │ │ ├── sensorMultilevel.html │ │ │ ├── simple │ │ │ │ ├── doorlock.html │ │ │ │ ├── sensorBinary.html │ │ │ │ ├── sensorDiscrete.html │ │ │ │ ├── sensorMultilevel.html │ │ │ │ ├── switchBinary.html │ │ │ │ ├── switchControl.html │ │ │ │ ├── switchMultilevel.html │ │ │ │ ├── switchRGBW.html │ │ │ │ └── thermostat.html │ │ │ ├── switchBinary.html │ │ │ ├── switchControl.html │ │ │ ├── switchMultilevel.html │ │ │ ├── switchRGBW.html │ │ │ ├── thermostat.html │ │ │ └── time.html │ │ ├── rule_id.html │ │ ├── rule_id_advanced_else.html │ │ ├── rule_id_advanced_if.html │ │ ├── rule_id_advanced_if_assigned.html │ │ ├── rule_id_advanced_if_available.html │ │ ├── rule_id_advanced_then.html │ │ ├── rule_id_advanced_then_assigned.html │ │ ├── rule_id_advanced_then_assigned_notifications.html │ │ ├── rule_id_advanced_then_available.html │ │ ├── rule_id_advanced_then_expert.html │ │ ├── rule_id_form.html │ │ ├── rule_id_if_sensorBinary.html │ │ ├── rule_id_if_sensorDiscrete.html │ │ ├── rule_id_if_sensorMultilevel.html │ │ ├── rule_id_if_switchBinary.html │ │ ├── rule_id_if_switchControl.html │ │ ├── rule_id_if_switchMultilevel.html │ │ ├── rule_id_simple_else.html │ │ ├── rule_id_simple_if_assigned.html │ │ ├── rule_id_simple_if_available.html │ │ ├── rule_id_simple_then.html │ │ ├── rule_id_simple_then_assigned.html │ │ ├── rule_id_simple_then_assigned_notifications.html │ │ ├── rule_id_simple_then_available.html │ │ ├── rules.html │ │ ├── rules_blank.html │ │ ├── rules_list.html │ │ └── simple │ │ │ ├── else.html │ │ │ ├── if_assigned.html │ │ │ ├── if_available.html │ │ │ ├── then.html │ │ │ ├── then_assigned.html │ │ │ ├── then_assigned_notifications.html │ │ │ └── then_available.html │ ├── scenes │ │ ├── scene_id.html │ │ ├── scene_id_assigned.html │ │ ├── scene_id_assigned_notification.html │ │ ├── scene_id_available.html │ │ ├── scene_id_form.html │ │ ├── scene_id_form_doorlock.html │ │ ├── scene_id_form_notification.html │ │ ├── scene_id_form_switchBinary.html │ │ ├── scene_id_form_switchMultilevel.html │ │ ├── scene_id_form_switchRGBW.html │ │ ├── scene_id_form_thermostat.html │ │ ├── scene_id_icons.html │ │ ├── scenes.html │ │ ├── scenes_blank.html │ │ └── scenes_list.html │ ├── schedules │ │ ├── schedule_id.html │ │ ├── schedule_id_assigned.html │ │ ├── schedule_id_assigned_notification.html │ │ ├── schedule_id_available.html │ │ ├── schedule_id_form.html │ │ ├── schedule_id_form_doorlock.html │ │ ├── schedule_id_form_notification.html │ │ ├── schedule_id_form_switchBinary.html │ │ ├── schedule_id_form_switchMultilevel.html │ │ ├── schedule_id_form_switchRGBW.html │ │ ├── schedule_id_form_thermostat.html │ │ ├── schedules.html │ │ ├── schedules_blank.html │ │ └── schedules_list.html │ └── security │ │ ├── actions │ │ ├── additional.html │ │ ├── alarm.html │ │ ├── arm_failure_action.html │ │ ├── arming.html │ │ ├── disarming.html │ │ ├── entrance-detected.html │ │ ├── notification-entrance-detected.html │ │ ├── notification_alarm.html │ │ ├── notification_armFailureAction.html │ │ ├── notification_arming.html │ │ ├── notification_disarming.html │ │ ├── notification_reset.html │ │ ├── notification_silent_alarm.html │ │ ├── reset.html │ │ └── silent_alarm.html │ │ ├── bydevice │ │ ├── bydevice.html │ │ ├── on-of-never-template.html │ │ ├── switch-template.html │ │ └── toggle-template.html │ │ ├── conditions │ │ ├── armFailureAction.html │ │ ├── arming.html │ │ └── conditions.html │ │ ├── id.html │ │ ├── inputs │ │ ├── doorlock.html │ │ ├── switchBinary.html │ │ ├── switchMultilevel.html │ │ ├── switchRGBW.html │ │ └── thermostat.html │ │ ├── security.html │ │ ├── tabs.html │ │ └── time │ │ ├── mobile_schedule.html │ │ ├── security_modal.html │ │ ├── time_schedule.1.html │ │ └── time_schedule.html │ ├── camera │ ├── camera_add.html │ ├── camera_manage.html │ ├── camera_nav.html │ └── camera_navi.html │ ├── customize │ ├── icons │ │ ├── icons_local.html │ │ └── icons_online.html │ ├── navi.html │ └── skins │ │ ├── skins_local.1.html │ │ ├── skins_local.html │ │ ├── skins_online.1.html │ │ └── skins_online.html │ ├── devices │ ├── devices.html │ └── modal.html │ ├── dir-pagination.html │ ├── dist_head.txt │ ├── elements │ ├── element_id.html │ ├── element_id_api_info.html │ ├── element_id_icons.html │ ├── elements_ctrl_mode.html │ ├── elements_dashboard.html │ ├── elements_page.html │ ├── elements_room.html │ ├── elements_room_bar.html │ ├── first_login_de.html │ ├── list_mode_default.html │ ├── list_mode_edit.html │ ├── no_dashboard.html │ ├── no_devices.html │ ├── no_elements_room.html │ └── widgets │ │ ├── _muster.html │ │ ├── audioPlayer.html │ │ ├── camera.html │ │ ├── cameraModal.html │ │ ├── climateControlModal.html │ │ ├── default.html │ │ ├── doorLockControl.html │ │ ├── doorLockControlModal.html │ │ ├── doorlock.html │ │ ├── eventModal.html │ │ ├── historyModal.html │ │ ├── intchartModal.html │ │ ├── mobile │ │ ├── audioPlayer.html │ │ ├── camera.html │ │ ├── cameraModal.html │ │ ├── climateControlModal.html │ │ ├── default.html │ │ ├── doorLockControl.html │ │ ├── doorlock.html │ │ ├── eventModal.html │ │ ├── historyModal.html │ │ ├── intchartModal.html │ │ ├── multiButtonModal.html │ │ ├── openWeatherModal.html │ │ ├── poppKeypad.html │ │ ├── securityControlModal.html │ │ ├── sensorBinary.html │ │ ├── sensorDiscrete.html │ │ ├── sensorMultilevel.html │ │ ├── sensorMultiline.html │ │ ├── switchBinary.html │ │ ├── switchControl.html │ │ ├── switchMultilevel.html │ │ ├── switchMultilevelModal.html │ │ ├── switchRGBW.html │ │ ├── switchRGBWModal.html │ │ ├── text.html │ │ ├── thermostat.html │ │ └── toggleButton.html │ │ ├── multiButtonModal.html │ │ ├── openWeatherModal.html │ │ ├── poppKeypad.html │ │ ├── securityControlModal.html │ │ ├── sensorBinary.html │ │ ├── sensorDiscrete.html │ │ ├── sensorMultilevel.html │ │ ├── sensorMultiline.html │ │ ├── sensorMultilineModal.html │ │ ├── switchBinary.html │ │ ├── switchControl.html │ │ ├── switchMultilevel.html │ │ ├── switchMultilevelModal.html │ │ ├── switchRGBW.html │ │ ├── switchRGBWModal.html │ │ ├── text.html │ │ ├── textModal.html │ │ ├── thermostat.html │ │ ├── thermostatModal.html │ │ └── toggleButton.html │ ├── enocean │ ├── controller.html │ ├── enocean_nav.html │ ├── manage.html │ ├── manage_detail.html │ ├── navi.html │ ├── products.html │ ├── teachin-genericProfile.html │ ├── teachin-smartAck.html │ ├── teachin.html │ └── vendors.html │ ├── error_403.html │ ├── error_404.html │ ├── events │ ├── dropdown.html │ └── events.html │ ├── jamesbox │ └── update.html │ ├── management │ ├── management.html │ ├── management_appstore.html │ ├── management_backup_restore.html │ ├── management_factory.html │ ├── management_firmware.html │ ├── management_firmware_jb.html │ ├── management_info.html │ ├── management_licence.html │ ├── management_local.html │ ├── management_remote.html │ ├── management_report.html │ ├── management_timezone.html │ ├── management_timezone_jb.html │ ├── management_user.html │ ├── management_user_id.html │ ├── management_wifi_settings.html │ └── modal_timezone.html │ ├── matter │ ├── matter_batteries.html │ ├── matter_commission.html │ ├── matter_commission_code.html │ ├── matter_commission_qr.html │ ├── matter_inclusion.html │ ├── matter_manage.html │ ├── matter_manage_id.html │ ├── matter_manage_id_new.html │ ├── matter_nav.html │ ├── matter_network.html │ ├── matter_products.html │ ├── matter_vendors.html │ ├── matter_vendors_autodetect.html │ ├── matter_vendors_ctrl.html │ └── navi.html │ ├── mobile │ ├── mobile_add_modal.html │ └── mobile_manage.html │ ├── mysettings │ ├── mysettings-sessions.html │ └── mysettings.html │ ├── notifications │ ├── notifications_assigned.html │ ├── notifications_available.html │ ├── notifications_form_doorlock.html │ ├── notifications_form_sensorBinary.html │ ├── notifications_form_sensorMultilevel.html │ ├── notifications_form_sensorMultiline.html │ ├── notifications_form_switchBinary.html │ ├── notifications_form_switchControl.html │ ├── notifications_form_switchMultilevel.html │ └── notifications_form_thermostat.html │ ├── pages │ └── about.html │ ├── rooms │ ├── config_rooms_id.html │ ├── room_assigned.html │ ├── room_available.1.html │ ├── room_available.html │ ├── room_form.html │ └── rooms.html │ ├── rss │ └── rss.html │ ├── simple.html │ ├── smartstart │ ├── _smartstart_list.html │ ├── _smartstart_qr.html │ ├── navi.html │ ├── smartstart.html │ ├── smartstart_dsk.html │ ├── smartstart_list.html │ ├── smartstart_list_modal.html │ └── smartstart_qr.html │ ├── speech_assistants │ ├── alexa.html │ ├── google_home.html │ ├── nav.html │ ├── navi.html │ ├── setup_alexa.html │ ├── setup_google_home.html │ ├── speech_assistants_devices.html │ └── speech_assistants_manage.html │ ├── welcome │ ├── first_login.html │ ├── tab_automation.html │ ├── tab_element_detail_view.html │ ├── tab_elements.html │ ├── tab_events.html │ ├── tab_lets_start.html │ ├── tab_menu.html │ ├── tab_rooms.html │ └── tab_welcome.html │ ├── wifiplug │ ├── wifi_navi.html │ ├── wifiplug_add.html │ ├── wifiplug_manage.html │ └── wifiplug_nav.html │ ├── zigbee │ ├── navi.html │ ├── zigbee_batteries.html │ ├── zigbee_inclusion.html │ ├── zigbee_manage.html │ ├── zigbee_manage_id.html │ ├── zigbee_manage_id_new.html │ ├── zigbee_nav.html │ ├── zigbee_network.html │ ├── zigbee_products.html │ ├── zigbee_vendors.html │ ├── zigbee_vendors_autodetect.html │ └── zigbee_vendors_ctrl.html │ └── zwave │ ├── _smartstart │ ├── navi.html │ ├── smartstart_dsk.html │ ├── smartstart_list.html │ └── smartstart_qr.html │ ├── navi.html │ ├── zwave_batteries.html │ ├── zwave_exclude.html │ ├── zwave_inclusion.html │ ├── zwave_manage.html │ ├── zwave_manage_id.html │ ├── zwave_manage_id_new.html │ ├── zwave_nav.html │ ├── zwave_network.html │ ├── zwave_products.html │ ├── zwave_vendors.html │ ├── zwave_vendors_autodetect.html │ └── zwave_vendors_ctrl.html ├── dist ├── app │ ├── css │ │ ├── main.css │ │ ├── main.css.gz │ │ ├── screenshot.png │ │ └── wallpaper.png │ ├── fonts │ │ ├── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.woff2 │ │ ├── fa-duotone-900.eot │ │ ├── fa-duotone-900.woff2 │ │ ├── fa-light-300.eot │ │ ├── fa-light-300.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ └── fa-solid-900.woff2 │ ├── img │ │ ├── alexa │ │ │ ├── activate_skill.png │ │ │ ├── alexa_login.png │ │ │ ├── amazon_echo.jpg │ │ │ ├── found_skill.png │ │ │ ├── manage_alexa.png │ │ │ └── oauth_login.png │ │ ├── apple-store-badges.svg │ │ ├── automation │ │ │ ├── hazard.png │ │ │ ├── heating.png │ │ │ ├── rules.png │ │ │ ├── scenes.png │ │ │ ├── schedules.png │ │ │ └── security.png │ │ ├── colorwheel.png │ │ ├── flags │ │ │ ├── cn.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fi.png │ │ │ ├── fr.png │ │ │ ├── it.png │ │ │ ├── pt.png │ │ │ ├── ru.png │ │ │ ├── sk.png │ │ │ └── sv.png │ │ ├── google-play-badge.png │ │ ├── google_home │ │ │ ├── google_home.jpg │ │ │ └── google_home_and google_home_mini.png │ │ ├── icon_cloudbackup.png │ │ ├── komsa.png │ │ ├── logo-camera.png │ │ ├── logo-camera.svg │ │ ├── logo-enocean.svg │ │ ├── logo-matter.svg │ │ ├── logo-mobile.png │ │ ├── logo-mobile.svg │ │ ├── logo-speech-assistants.png │ │ ├── logo-speech-assistants.svg │ │ ├── logo-wifiplug.png │ │ ├── logo-wifiplug.svg │ │ ├── logo-z-wave-z-only.png │ │ ├── logo-zigbee.svg │ │ ├── logo-zwave.svg │ │ ├── small_logo.svg │ │ ├── smartphone.png │ │ ├── smartstart │ │ │ ├── qr-code-iphone-icon.png │ │ │ └── qrcode.png │ │ ├── welcome.jpg │ │ ├── welcome.png │ │ ├── welcome │ │ │ ├── automation_view.jpg │ │ │ ├── automation_view_mobile.jpg │ │ │ ├── element_detail_view.jpg │ │ │ ├── element_detail_view_mobile.jpg │ │ │ ├── elements.jpg │ │ │ ├── elements_mobile.jpg │ │ │ ├── events.jpg │ │ │ ├── events_mobile.jpg │ │ │ ├── menu_view.jpg │ │ │ ├── menu_view_mobile.jpg │ │ │ ├── overview.jpg │ │ │ ├── overview_mobile.jpg │ │ │ ├── room_view.jpg │ │ │ └── room_view_mobile.jpg │ │ └── z-wave-me-mobile-app-icon.png │ ├── info.json │ ├── info.json.gz │ ├── js │ │ ├── build.js │ │ ├── build.js.gz │ │ ├── config.js │ │ ├── icons.js │ │ ├── icons.js.gz │ │ ├── notifications.js │ │ └── notifications.js.gz │ └── lang │ │ ├── cn.json │ │ ├── cn.json.gz │ │ ├── cz.json │ │ ├── cz.json.gz │ │ ├── de.json │ │ ├── de.json.gz │ │ ├── en.json │ │ ├── en.json.gz │ │ ├── es.json │ │ ├── es.json.gz │ │ ├── fi.json │ │ ├── fi.json.gz │ │ ├── fr.json │ │ ├── fr.json.gz │ │ ├── it.json │ │ ├── it.json.gz │ │ ├── pt.json │ │ ├── pt.json.gz │ │ ├── ru.json │ │ ├── ru.json.gz │ │ ├── sk.json │ │ ├── sk.json.gz │ │ ├── sv.json │ │ └── sv.json.gz ├── favicon.ico ├── favicon.ico.gz ├── index.html ├── storage │ ├── data │ │ ├── devices_enocean.json │ │ ├── devices_enocean.json.gz │ │ ├── dsk-collection.json │ │ └── dsk-collection.json.gz │ └── img │ │ ├── enocean │ │ ├── devices │ │ │ ├── AWAGCH102.jpg │ │ │ ├── EKCS.jpg │ │ │ ├── EOSC.jpg │ │ │ ├── EOSW.jpg │ │ │ ├── Eltako-FBH65SB-wg-Funk-Bewegungsmelder-Aufputz-Reichweite-max.-im-Freifeld-30m.jpg │ │ │ ├── Eltako_FAH63.jpg │ │ │ ├── Eltako_FBH63AP.jpg │ │ │ ├── EnOcean-TH.jpg │ │ │ ├── FABH65.jpg │ │ │ ├── FI-BLSN2.jpg │ │ │ ├── FTKB.jpg │ │ │ ├── FU-BLS.jpg │ │ │ ├── FU-BLSJR.jpg │ │ │ ├── FU-BLSN.jpg │ │ │ ├── Hoppe-0530-US952-FK-410.jpg │ │ │ ├── NodOn_ASP-2-1-x0.png │ │ │ ├── NodOn_ASP-2-1-x1.png │ │ │ ├── NodOn_CCS-2-1-01.png │ │ │ ├── NodOn_CRC-2-6-xx.png │ │ │ ├── NodOn_CWS-2-1-xx.png │ │ │ ├── NodOn_SDO-2-1-xx.png │ │ │ ├── NodOn_STP-2-1-05_EnOcean_680px.jpg │ │ │ ├── NodOn_STP-2-1-xx.png │ │ │ ├── PHEA_STM250.jpg │ │ │ ├── PTM250.gif │ │ │ ├── PTM250.jpg │ │ │ ├── SED-1RS.jpg │ │ │ ├── SED-WDS.jpg │ │ │ ├── STM250.jpg │ │ │ ├── Thermokon_SR04.jpg │ │ │ ├── afriso-siren.png │ │ │ ├── afriso_CO2.jpg │ │ │ ├── afriso_RoomTempSensorFT-FTF.jpg │ │ │ ├── afriso_Temperatur-_und_Feuchtesensor_FTM_TF-1170x1090.jpg │ │ │ ├── eltako_FT4-rw.jpg │ │ │ ├── eltako_FTKB-rw.jpg │ │ │ ├── enocean_1.jpg │ │ │ ├── motion-sensor-nodon-680x680px-enocean.jpg │ │ │ ├── rehau-smartguard1.png │ │ │ └── rehau-smartguard2.png │ │ └── vendors │ │ │ ├── AWAG.jpg │ │ │ ├── GenericProfile.png │ │ │ ├── Hoppe.jpg │ │ │ ├── Hubble.png │ │ │ ├── SchneiderElektrik.jpg │ │ │ ├── SmartAck.png │ │ │ ├── Thermokon.png │ │ │ ├── afriso.png │ │ │ ├── eltako_electronics.jpg │ │ │ ├── enocean.svg │ │ │ ├── nodon.png │ │ │ ├── peha.gif │ │ │ └── rehau.png │ │ ├── icons │ │ ├── alarm-off.png │ │ ├── alarm-on.png │ │ ├── alarm.png │ │ ├── barometer.png │ │ ├── battery-0.png │ │ ├── battery-100.png │ │ ├── battery-20.png │ │ ├── battery-30.png │ │ ├── battery-50.png │ │ ├── battery-80.png │ │ ├── battery.png │ │ ├── blind-down.png │ │ ├── blind-half.png │ │ ├── blind-up.png │ │ ├── burglar-alarm-off.png │ │ ├── burglar-alarm-on.png │ │ ├── camera.png │ │ ├── cancel.png │ │ ├── caution.png │ │ ├── climatecontrol_comfort.png │ │ ├── climatecontrol_default.png │ │ ├── climatecontrol_energysave.png │ │ ├── climatecontrol_frostprotection.png │ │ ├── climatecontrol_schedule.png │ │ ├── co-alarm-off.png │ │ ├── co-alarm-on.png │ │ ├── co.png │ │ ├── coo-alarm-off.png │ │ ├── coo-alarm-on.png │ │ ├── coo.png │ │ ├── cooling-off.png │ │ ├── cooling-on.png │ │ ├── dimmer-half.png │ │ ├── dimmer-off.png │ │ ├── dimmer-on.png │ │ ├── door-closed.png │ │ ├── door-open.png │ │ ├── energy.png │ │ ├── event-device-electric.png │ │ ├── event-device-luminiscence.png │ │ ├── event-device-off.png │ │ ├── event-device-on.png │ │ ├── event-device-power.png │ │ ├── event-device-status.png │ │ ├── event-device-temperature.png │ │ ├── event-device.png │ │ ├── event-module.png │ │ ├── fan-half.png │ │ ├── fan-off.png │ │ ├── fan-on.png │ │ ├── flood-off.png │ │ ├── flood-on.png │ │ ├── hold.png │ │ ├── humidity.png │ │ ├── lock-closed.png │ │ ├── lock-open.png │ │ ├── lock-opened.png │ │ ├── luminosity.png │ │ ├── meter.png │ │ ├── motion-off.png │ │ ├── motion-on.png │ │ ├── new.png │ │ ├── placeholder.png │ │ ├── press.png │ │ ├── rain.png │ │ ├── release.png │ │ ├── roller-shutter-down.png │ │ ├── roller-shutter-half.png │ │ ├── roller-shutter-up.png │ │ ├── scene.png │ │ ├── security-alarmed.png │ │ ├── security-off.png │ │ ├── security-on.png │ │ ├── security-pending.png │ │ ├── siren-off.png │ │ ├── siren-on.png │ │ ├── smoke-off.png │ │ ├── smoke-on.png │ │ ├── smoke.png │ │ ├── swipe-bottom-left-to-top-right.png │ │ ├── swipe-bottom-right-to-top-left.png │ │ ├── swipe-down.png │ │ ├── swipe-left-to-right.png │ │ ├── swipe-left.png │ │ ├── swipe-right-to-left.png │ │ ├── swipe-right.png │ │ ├── swipe-top-left-to-bottom-right.png │ │ ├── swipe-top-right-to-bottom-left.png │ │ ├── swipe-up.png │ │ ├── switch-blue.png │ │ ├── switch-cold-white.png │ │ ├── switch-control.png │ │ ├── switch-green.png │ │ ├── switch-off.png │ │ ├── switch-on.png │ │ ├── switch-red.png │ │ ├── switch-warm-white.png │ │ ├── tamper-off.png │ │ ├── tamper-on.png │ │ ├── tap.png │ │ ├── temper_off.png │ │ ├── temper_on.png │ │ ├── temperature.png │ │ ├── thermostat-off.png │ │ ├── thermostat.png │ │ ├── ultraviolet.png │ │ ├── user.png │ │ ├── valve-off.png │ │ ├── valve-on.png │ │ ├── window-closed.png │ │ ├── window-down.png │ │ ├── window-half.png │ │ ├── window-open.png │ │ └── window-up.png │ │ ├── logo │ │ ├── _app-logo-default.png │ │ ├── app-logo-default-bayern.png │ │ ├── app-logo-default-lighter.png │ │ ├── app-logo-default.png │ │ ├── app-logo-popp.png │ │ └── app-logo-wd.png │ │ ├── placeholder-img.png │ │ ├── rooms │ │ ├── _add-icon.png │ │ ├── _unassigned.png │ │ ├── add-icon.png │ │ ├── bathroom.jpg │ │ ├── kitchen.jpg │ │ ├── living_room.jpg │ │ ├── new_room.jpg │ │ ├── sleeping_room.jpg │ │ └── unassigned.png │ │ ├── slider │ │ ├── Alexa.png │ │ ├── ClimateControl.png │ │ ├── CustomUserCode.png │ │ ├── HTTPDevice.png │ │ ├── ImportRemoteHA.png │ │ ├── IntChart.png │ │ ├── NotificationPushover.png │ │ ├── SecurityModule.png │ │ └── ToggleDevices.png │ │ ├── upload │ │ └── csv.png │ │ └── zwave │ │ ├── zwavedevices │ │ ├── 009402.png │ │ ├── 12518_0-JPG.jpg │ │ ├── 12811_0.jpg │ │ ├── 12813_0.jpg │ │ ├── 12921_0.jpg │ │ ├── 13055_0.jpg │ │ ├── 13062_0.jpg │ │ ├── 13080_0.jpg │ │ ├── 13106_0.jpg │ │ ├── 13144_0.jpg │ │ ├── 700168.jpg │ │ ├── AEO_DWSENS.png │ │ ├── AEO_EXTENDER.png │ │ ├── AEO_HDS.png │ │ ├── AEO_HEM1_3.png │ │ ├── AEO_HEM2.png │ │ ├── AEO_HEM3.png │ │ ├── AEO_KFOB.png │ │ ├── AEO_MEI.png │ │ ├── AEO_MMC.png │ │ ├── AEO_MREM.png │ │ ├── AEO_MREM_B.png │ │ ├── AEO_MSEI.png │ │ ├── AEO_MULTISENS.png │ │ ├── AEO_SEI_EU.png │ │ ├── AEO_SES2.png │ │ ├── AEO_SES_EU.png │ │ ├── Button_alleFarben.jpg │ │ ├── DAN_LIVC_RAK.png │ │ ├── DIN_Dimmer_axo.png │ │ ├── DUW_05460.png │ │ ├── DUW_064374.png │ │ ├── DUW_064381.png │ │ ├── DUW_064459.png │ │ ├── DUW_BJ2000.png │ │ ├── DUW_EVERLUX.png │ │ ├── Dimmer2.png │ │ ├── EVR_AD1422.png │ │ ├── EVR_AD1423.png │ │ ├── EVR_AD1426.png │ │ ├── EVR_AN145.png │ │ ├── EVR_AN1572.png │ │ ├── EVR_AN1573.png │ │ ├── EVR_AN1576.jpg │ │ ├── EVR_AN1586.png │ │ ├── EVR_HAC01.png │ │ ├── EVR_HSM2.png │ │ ├── EVR_HSP02.png │ │ ├── EVR_SE812.png │ │ ├── EVR_SF812.png │ │ ├── EVR_SP103.png │ │ ├── EVR_SP814.png │ │ ├── EVR_ST812.png │ │ ├── EVR_ST814.png │ │ ├── EVR_UTSE03A.png │ │ ├── FAK_ZWS230.png │ │ ├── FGK-101_Left.jpg │ │ ├── FIBEFGS_222.png │ │ ├── FIBEFGWPE-102_2.jpg │ │ ├── FIB_FGBS-001.png │ │ ├── FIB_FGFS-101.png │ │ ├── FIB_FGK-101W.png │ │ ├── FIB_FGK-102G.png │ │ ├── FIB_FGK-103B.png │ │ ├── FIB_FGK-104.png │ │ ├── FIB_FGK-105.png │ │ ├── FIB_FGK-106.png │ │ ├── FIB_FGK-107.png │ │ ├── FIB_FGMS-001.png │ │ ├── FIB_FGRGB-101.png │ │ ├── FIB_FGRM-222.png │ │ ├── FIB_FGS-211_1.png │ │ ├── FIB_FGSS-101.png │ │ ├── FOXEFLOOD_1.png │ │ ├── FOXESES_1.png │ │ ├── Flush_Dimmer_10V_akso.png │ │ ├── HDL_DBMZ.png │ │ ├── Hank-RGB_1.jpg │ │ ├── Heatit%20Z-Wave_white.jpg │ │ ├── IP20.jpg │ │ ├── MCV_VERA_3.png │ │ ├── MCV_VERA_L.png │ │ ├── MH-S312-EU.jpg │ │ ├── MH-S314-EU.jpg │ │ ├── MH_S411_EU.png │ │ ├── MH_S412_EU.png │ │ ├── Motion_Sensor_Left.jpg │ │ ├── NOQ_NQ-9021.png │ │ ├── NOQ_NQ-921021.JPG │ │ ├── PHIEPAN11-1B.png │ │ ├── PHI_PAN04.png │ │ ├── PHI_PAN06.png │ │ ├── PHI_PAN08.png │ │ ├── PHI_PAN11.png │ │ ├── PHI_PSM01.png │ │ ├── PHI_PSM02.png │ │ ├── PHI_PSP01.png │ │ ├── PHI_PST02-1A_2.png │ │ ├── PHI_PST02-1B_2.jpg │ │ ├── PHI_PST02-1C_2.png │ │ ├── POL_ZEC100.png │ │ ├── POL_ZES100.png │ │ ├── POPE004407_Produktbild.png │ │ ├── POPE009105.png │ │ ├── POPE009303.png │ │ ├── POPP-Weather.png │ │ ├── POP_004001NormRes.png │ │ ├── POP_123580.png │ │ ├── POP_123627.png │ │ ├── POP_123634.png │ │ ├── Panic_Button.png │ │ ├── Popp-Thermostat.jpg │ │ ├── REM_ZRC100.png │ │ ├── REM_ZXT120.png │ │ ├── ROLLER2.jpg │ │ ├── SEC_SCP318_2.jpg │ │ ├── SEC_SCS317.png │ │ ├── SEC_SES301.png │ │ ├── SEC_SIR321_1024.jpg │ │ ├── SEC_SRT321.png │ │ ├── SEC_SSR302.png │ │ ├── SEC_SSR303.png │ │ ├── SEC_STP328.png │ │ ├── SEC_SWM01.png │ │ ├── SIG_SENS_W_.png │ │ ├── STELLA.png │ │ ├── TKB_TZ65-D.png │ │ ├── TKB_TZ65-S.png │ │ ├── TKB_TZ67-F.png │ │ ├── TKB_TZ68-E.png │ │ ├── TZ37_57.jpg │ │ ├── VIS_ZF5201.png │ │ ├── VIS_ZM1601.png │ │ ├── VIS_ZM1701.png │ │ ├── VIS_ZR1202.png │ │ ├── VIS_ZS6101-5.jpg │ │ ├── WIN_ITEMP.png │ │ ├── WallPlugC-E.png │ │ ├── WallPlugF-1.png │ │ ├── WallPlug_box_03_blue.jpg │ │ ├── ZBULB.png │ │ ├── ZD2102.png │ │ ├── ZM1702.png │ │ ├── ZMEEKFOBC.jpg │ │ ├── ZME_05457.png │ │ ├── ZME_05460.png │ │ ├── ZME_RAZ_EU.png │ │ ├── ZME_WALLC.png │ │ ├── ZME_iTEMP.png │ │ ├── ZP3102.png │ │ ├── ZS5101.png │ │ ├── ZS6101.png │ │ ├── ZS6301.png │ │ ├── Zme_kfob.png │ │ ├── image.jpg │ │ ├── nano_dimmer_smart.png │ │ ├── pan16.png │ │ ├── plug.jpg │ │ ├── plug.png │ │ ├── product.png │ │ ├── quad_taster.jpg │ │ ├── smoke_box_03.png │ │ ├── thumb-flush-heat-cool-thermostat.png │ │ ├── thumb-flush-onoff-thermostat.png │ │ ├── thumb-flush-pwm-thermostat.png │ │ ├── thumb-smart-meter.png │ │ ├── zip_bulb.jpg │ │ └── zipato_1591c3baceab11.jpg │ │ └── zwavevendors │ │ ├── abilia_ab.png │ │ ├── aeotec.png │ │ ├── art_andersen_cph.png │ │ ├── bandi.png │ │ ├── benext_bv.png │ │ ├── brightswitch.png │ │ ├── climax_technology.png │ │ ├── contec_-_intelligent_housing.png │ │ ├── d-link_corporation.png │ │ ├── danfoss.png │ │ ├── dawon_dns.png │ │ ├── devolo.png │ │ ├── dome.png │ │ ├── domitech_products_llc.png │ │ ├── duewi.png │ │ ├── ecolink_intelligent_technology.png │ │ ├── econet_controls_.png │ │ ├── eelectron_spa.png │ │ ├── ei_electronics.png │ │ ├── enblink.png │ │ ├── enerwave_green_automation.png │ │ ├── eurotronic.png │ │ ├── everspring.png │ │ ├── express_controls_llc.png │ │ ├── fakro.png │ │ ├── fibaro.png │ │ ├── forest_drapery_hardware.png │ │ ├── fortrezz_llc.png │ │ ├── ge.png │ │ ├── good_way_technology_co_ltd.png │ │ ├── hank.png │ │ ├── heatit_(thermo-floor).png │ │ ├── heiman.png │ │ ├── homeseer.png │ │ ├── horstmann.png │ │ ├── hunter_douglas.png │ │ ├── ingersoll_rand_-_nexia_home_intelligence.png │ │ ├── inovelli.png │ │ ├── iris.png │ │ ├── isurpass.png │ │ ├── jasco_products_company.png │ │ ├── kumho_electric_inc.png │ │ ├── kwikset.png │ │ ├── leak_intelligence_llc.png │ │ ├── leviton_manufacturing_inc.png │ │ ├── lg_u+.png │ │ ├── lg_uplus.png │ │ ├── matrix_labs.png │ │ ├── mcohome.png │ │ ├── micasaverde.png │ │ ├── nevoton.png │ │ ├── nortek.png │ │ ├── northq.png │ │ ├── permundo.png │ │ ├── philio.png │ │ ├── philio_tech.png │ │ ├── poly-control_aps.png │ │ ├── poly_control.png │ │ ├── popp.png │ │ ├── powerley.png │ │ ├── qolsys_inc.png │ │ ├── qubino.png │ │ ├── quby.png │ │ ├── radio_thermostat_company_of_america.png │ │ ├── remote_solution.png │ │ ├── remotec_technology_ltd.png │ │ ├── samsung_sds.png │ │ ├── satco.png │ │ ├── secure_controls.png │ │ ├── sentek.png │ │ ├── sercomm.png │ │ ├── shenzhen_kaipule_technology_co_ltd.png │ │ ├── shenzhen_neo_electronics.png │ │ ├── show_home.png │ │ ├── siegenia_aubi.png │ │ ├── somfy.png │ │ ├── stelpro.png │ │ ├── telldus.png │ │ ├── thermo-floor_as.png │ │ ├── timevalve.png │ │ ├── tkb_home.png │ │ ├── u-fairy_gr_iot_tech_co_ltd.png │ │ ├── venstar.png │ │ ├── vision_security.png │ │ ├── vivint.png │ │ ├── webehome.png │ │ ├── widom.png │ │ ├── wink.png │ │ ├── wintop.png │ │ ├── winytechnology.png │ │ ├── yale_locks_&_hardware.png │ │ ├── z-waveme.png │ │ ├── z-works.png │ │ ├── zipato.png │ │ └── zooz.png └── user │ ├── icons │ └── .keep │ └── skins │ └── .keep ├── docstemplates ├── _class.mustache ├── _file.mustache ├── _function.mustache ├── class.mustache ├── file.mustache ├── function.mustache ├── index.mustache └── overview.mustache ├── favicon.ico ├── index.html ├── license.txt ├── package.json ├── release.sh ├── storage ├── data │ ├── devices_enocean.json │ └── dsk-collection.json ├── help │ ├── interview.de.html │ ├── interview.en.html │ ├── secure_login.de.html │ └── secure_login.en.html └── img │ ├── enocean │ ├── devices │ │ ├── AWAGCH102.jpg │ │ ├── EKCS.jpg │ │ ├── EOSC.jpg │ │ ├── EOSW.jpg │ │ ├── Eltako-FBH65SB-wg-Funk-Bewegungsmelder-Aufputz-Reichweite-max.-im-Freifeld-30m.jpg │ │ ├── Eltako_FAH63.jpg │ │ ├── Eltako_FBH63AP.jpg │ │ ├── EnOcean-TH.jpg │ │ ├── FABH65.jpg │ │ ├── FI-BLSN2.jpg │ │ ├── FTKB.jpg │ │ ├── FU-BLS.jpg │ │ ├── FU-BLSJR.jpg │ │ ├── FU-BLSN.jpg │ │ ├── Hoppe-0530-US952-FK-410.jpg │ │ ├── NodOn_ASP-2-1-x0.png │ │ ├── NodOn_ASP-2-1-x1.png │ │ ├── NodOn_CCS-2-1-01.png │ │ ├── NodOn_CRC-2-6-xx.png │ │ ├── NodOn_CWS-2-1-xx.png │ │ ├── NodOn_SDO-2-1-xx.png │ │ ├── NodOn_STP-2-1-05_EnOcean_680px.jpg │ │ ├── NodOn_STP-2-1-xx.png │ │ ├── PHEA_STM250.jpg │ │ ├── PTM250.gif │ │ ├── PTM250.jpg │ │ ├── SED-1RS.jpg │ │ ├── SED-WDS.jpg │ │ ├── STM250.jpg │ │ ├── Thermokon_SR04.jpg │ │ ├── afriso-siren.png │ │ ├── afriso_CO2.jpg │ │ ├── afriso_RoomTempSensorFT-FTF.jpg │ │ ├── afriso_Temperatur-_und_Feuchtesensor_FTM_TF-1170x1090.jpg │ │ ├── eltako_FT4-rw.jpg │ │ ├── eltako_FTKB-rw.jpg │ │ ├── enocean_1.jpg │ │ ├── motion-sensor-nodon-680x680px-enocean.jpg │ │ ├── rehau-smartguard1.png │ │ └── rehau-smartguard2.png │ └── vendors │ │ ├── AWAG.jpg │ │ ├── GenericProfile.png │ │ ├── Hoppe.jpg │ │ ├── Hubble.png │ │ ├── SchneiderElektrik.jpg │ │ ├── SmartAck.png │ │ ├── Thermokon.png │ │ ├── afriso.png │ │ ├── eltako_electronics.jpg │ │ ├── enocean.svg │ │ ├── nodon.png │ │ ├── peha.gif │ │ └── rehau.png │ ├── icons │ ├── alarm-off.png │ ├── alarm-on.png │ ├── alarm.png │ ├── barometer.png │ ├── battery-0.png │ ├── battery-100.png │ ├── battery-20.png │ ├── battery-30.png │ ├── battery-50.png │ ├── battery-80.png │ ├── battery.png │ ├── blind-down.png │ ├── blind-half.png │ ├── blind-up.png │ ├── burglar-alarm-off.png │ ├── burglar-alarm-on.png │ ├── camera.png │ ├── cancel.png │ ├── caution.png │ ├── climatecontrol_comfort.png │ ├── climatecontrol_default.png │ ├── climatecontrol_energysave.png │ ├── climatecontrol_frostprotection.png │ ├── climatecontrol_schedule.png │ ├── co-alarm-off.png │ ├── co-alarm-on.png │ ├── co.png │ ├── coo-alarm-off.png │ ├── coo-alarm-on.png │ ├── coo.png │ ├── cooling-off.png │ ├── cooling-on.png │ ├── dimmer-half.png │ ├── dimmer-off.png │ ├── dimmer-on.png │ ├── door-closed.png │ ├── door-open.png │ ├── energy.png │ ├── event-device-electric.png │ ├── event-device-luminiscence.png │ ├── event-device-off.png │ ├── event-device-on.png │ ├── event-device-power.png │ ├── event-device-status.png │ ├── event-device-temperature.png │ ├── event-device.png │ ├── event-module.png │ ├── fan-half.png │ ├── fan-off.png │ ├── fan-on.png │ ├── flood-off.png │ ├── flood-on.png │ ├── hold.png │ ├── humidity.png │ ├── lock-closed.png │ ├── lock-open.png │ ├── lock-opened.png │ ├── luminosity.png │ ├── meter.png │ ├── motion-off.png │ ├── motion-on.png │ ├── new.png │ ├── placeholder.png │ ├── press.png │ ├── rain.png │ ├── release.png │ ├── roller-shutter-down.png │ ├── roller-shutter-half.png │ ├── roller-shutter-up.png │ ├── scene.png │ ├── security-alarmed.png │ ├── security-off.png │ ├── security-on.png │ ├── security-pending.png │ ├── siren-off.png │ ├── siren-on.png │ ├── smoke-off.png │ ├── smoke-on.png │ ├── smoke.png │ ├── swipe-bottom-left-to-top-right.png │ ├── swipe-bottom-right-to-top-left.png │ ├── swipe-down.png │ ├── swipe-left-to-right.png │ ├── swipe-left.png │ ├── swipe-right-to-left.png │ ├── swipe-right.png │ ├── swipe-top-left-to-bottom-right.png │ ├── swipe-top-right-to-bottom-left.png │ ├── swipe-up.png │ ├── switch-blue.png │ ├── switch-cold-white.png │ ├── switch-control.png │ ├── switch-green.png │ ├── switch-off.png │ ├── switch-on.png │ ├── switch-red.png │ ├── switch-warm-white.png │ ├── tamper-off.png │ ├── tamper-on.png │ ├── tap.png │ ├── temper_off.png │ ├── temper_on.png │ ├── temperature.png │ ├── thermostat-off.png │ ├── thermostat.png │ ├── ultraviolet.png │ ├── user.png │ ├── valve-off.png │ ├── valve-on.png │ ├── window-closed.png │ ├── window-down.png │ ├── window-half.png │ ├── window-open.png │ └── window-up.png │ ├── logo │ ├── _app-logo-default.png │ ├── app-logo-default-bayern.png │ ├── app-logo-default-lighter.png │ ├── app-logo-default.png │ ├── app-logo-popp.png │ └── app-logo-wd.png │ ├── placeholder-img.png │ ├── rooms │ ├── _add-icon.png │ ├── _unassigned.png │ ├── add-icon.png │ ├── bathroom.jpg │ ├── kitchen.jpg │ ├── living_room.jpg │ ├── new_room.jpg │ ├── sleeping_room.jpg │ └── unassigned.png │ ├── slider │ ├── Alexa.png │ ├── ClimateControl.png │ ├── CustomUserCode.png │ ├── HTTPDevice.png │ ├── ImportRemoteHA.png │ ├── IntChart.png │ ├── NotificationPushover.png │ ├── SecurityModule.png │ └── ToggleDevices.png │ ├── upload │ └── csv.png │ └── zwave │ ├── zwavedevices │ ├── 009402.png │ ├── 12518_0-JPG.jpg │ ├── 12811_0.jpg │ ├── 12813_0.jpg │ ├── 12921_0.jpg │ ├── 13055_0.jpg │ ├── 13062_0.jpg │ ├── 13080_0.jpg │ ├── 13106_0.jpg │ ├── 13144_0.jpg │ ├── 700168.jpg │ ├── AEO_DWSENS.png │ ├── AEO_EXTENDER.png │ ├── AEO_HDS.png │ ├── AEO_HEM1_3.png │ ├── AEO_HEM2.png │ ├── AEO_HEM3.png │ ├── AEO_KFOB.png │ ├── AEO_MEI.png │ ├── AEO_MMC.png │ ├── AEO_MREM.png │ ├── AEO_MREM_B.png │ ├── AEO_MSEI.png │ ├── AEO_MULTISENS.png │ ├── AEO_SEI_EU.png │ ├── AEO_SES2.png │ ├── AEO_SES_EU.png │ ├── Button_alleFarben.jpg │ ├── DAN_LIVC_RAK.png │ ├── DIN_Dimmer_axo.png │ ├── DUW_05460.png │ ├── DUW_064374.png │ ├── DUW_064381.png │ ├── DUW_064459.png │ ├── DUW_BJ2000.png │ ├── DUW_EVERLUX.png │ ├── Dimmer2.png │ ├── EVR_AD1422.png │ ├── EVR_AD1423.png │ ├── EVR_AD1426.png │ ├── EVR_AN145.png │ ├── EVR_AN1572.png │ ├── EVR_AN1573.png │ ├── EVR_AN1576.jpg │ ├── EVR_AN1586.png │ ├── EVR_HAC01.png │ ├── EVR_HSM2.png │ ├── EVR_HSP02.png │ ├── EVR_SE812.png │ ├── EVR_SF812.png │ ├── EVR_SP103.png │ ├── EVR_SP814.png │ ├── EVR_ST812.png │ ├── EVR_ST814.png │ ├── EVR_UTSE03A.png │ ├── FAK_ZWS230.png │ ├── FGK-101_Left.jpg │ ├── FIBEFGS_222.png │ ├── FIBEFGWPE-102_2.jpg │ ├── FIB_FGBS-001.png │ ├── FIB_FGFS-101.png │ ├── FIB_FGK-101W.png │ ├── FIB_FGK-102G.png │ ├── FIB_FGK-103B.png │ ├── FIB_FGK-104.png │ ├── FIB_FGK-105.png │ ├── FIB_FGK-106.png │ ├── FIB_FGK-107.png │ ├── FIB_FGMS-001.png │ ├── FIB_FGRGB-101.png │ ├── FIB_FGRM-222.png │ ├── FIB_FGS-211_1.png │ ├── FIB_FGSS-101.png │ ├── FOXEFLOOD_1.png │ ├── FOXESES_1.png │ ├── Flush_Dimmer_10V_akso.png │ ├── HDL_DBMZ.png │ ├── Hank-RGB_1.jpg │ ├── Heatit%20Z-Wave_white.jpg │ ├── IP20.jpg │ ├── MCV_VERA_3.png │ ├── MCV_VERA_L.png │ ├── MH-S312-EU.jpg │ ├── MH-S314-EU.jpg │ ├── MH_S411_EU.png │ ├── MH_S412_EU.png │ ├── Motion_Sensor_Left.jpg │ ├── NOQ_NQ-9021.png │ ├── NOQ_NQ-921021.JPG │ ├── PHIEPAN11-1B.png │ ├── PHI_PAN04.png │ ├── PHI_PAN06.png │ ├── PHI_PAN08.png │ ├── PHI_PAN11.png │ ├── PHI_PSM01.png │ ├── PHI_PSM02.png │ ├── PHI_PSP01.png │ ├── PHI_PST02-1A_2.png │ ├── PHI_PST02-1B_2.jpg │ ├── PHI_PST02-1C_2.png │ ├── POL_ZEC100.png │ ├── POL_ZES100.png │ ├── POPE004407_Produktbild.png │ ├── POPE009105.png │ ├── POPE009303.png │ ├── POPP-Weather.png │ ├── POP_004001NormRes.png │ ├── POP_123580.png │ ├── POP_123627.png │ ├── POP_123634.png │ ├── Panic_Button.png │ ├── Popp-Thermostat.jpg │ ├── REM_ZRC100.png │ ├── REM_ZXT120.png │ ├── ROLLER2.jpg │ ├── SEC_SCP318_2.jpg │ ├── SEC_SCS317.png │ ├── SEC_SES301.png │ ├── SEC_SIR321_1024.jpg │ ├── SEC_SRT321.png │ ├── SEC_SSR302.png │ ├── SEC_SSR303.png │ ├── SEC_STP328.png │ ├── SEC_SWM01.png │ ├── SIG_SENS_W_.png │ ├── STELLA.png │ ├── TKB_TZ65-D.png │ ├── TKB_TZ65-S.png │ ├── TKB_TZ67-F.png │ ├── TKB_TZ68-E.png │ ├── TZ37_57.jpg │ ├── VIS_ZF5201.png │ ├── VIS_ZM1601.png │ ├── VIS_ZM1701.png │ ├── VIS_ZR1202.png │ ├── VIS_ZS6101-5.jpg │ ├── WIN_ITEMP.png │ ├── WallPlugC-E.png │ ├── WallPlugF-1.png │ ├── WallPlug_box_03_blue.jpg │ ├── ZBULB.png │ ├── ZD2102.png │ ├── ZM1702.png │ ├── ZMEEKFOBC.jpg │ ├── ZME_05457.png │ ├── ZME_05460.png │ ├── ZME_RAZ_EU.png │ ├── ZME_WALLC.png │ ├── ZME_iTEMP.png │ ├── ZP3102.png │ ├── ZS5101.png │ ├── ZS6101.png │ ├── ZS6301.png │ ├── Zme_kfob.png │ ├── image.jpg │ ├── nano_dimmer_smart.png │ ├── pan16.png │ ├── plug.jpg │ ├── plug.png │ ├── product.png │ ├── quad_taster.jpg │ ├── smoke_box_03.png │ ├── thumb-flush-heat-cool-thermostat.png │ ├── thumb-flush-onoff-thermostat.png │ ├── thumb-flush-pwm-thermostat.png │ ├── thumb-smart-meter.png │ ├── zip_bulb.jpg │ └── zipato_1591c3baceab11.jpg │ └── zwavevendors │ ├── abilia_ab.png │ ├── aeotec.png │ ├── art_andersen_cph.png │ ├── bandi.png │ ├── benext_bv.png │ ├── brightswitch.png │ ├── climax_technology.png │ ├── contec_-_intelligent_housing.png │ ├── d-link_corporation.png │ ├── danfoss.png │ ├── dawon_dns.png │ ├── devolo.png │ ├── dome.png │ ├── domitech_products_llc.png │ ├── duewi.png │ ├── ecolink_intelligent_technology.png │ ├── econet_controls_.png │ ├── eelectron_spa.png │ ├── ei_electronics.png │ ├── enblink.png │ ├── enerwave_green_automation.png │ ├── eurotronic.png │ ├── everspring.png │ ├── express_controls_llc.png │ ├── fakro.png │ ├── fibaro.png │ ├── forest_drapery_hardware.png │ ├── fortrezz_llc.png │ ├── ge.png │ ├── good_way_technology_co_ltd.png │ ├── hank.png │ ├── heatit_(thermo-floor).png │ ├── heiman.png │ ├── homeseer.png │ ├── horstmann.png │ ├── hunter_douglas.png │ ├── ingersoll_rand_-_nexia_home_intelligence.png │ ├── inovelli.png │ ├── iris.png │ ├── isurpass.png │ ├── jasco_products_company.png │ ├── kumho_electric_inc.png │ ├── kwikset.png │ ├── leak_intelligence_llc.png │ ├── leviton_manufacturing_inc.png │ ├── lg_u+.png │ ├── lg_uplus.png │ ├── matrix_labs.png │ ├── mcohome.png │ ├── micasaverde.png │ ├── nevoton.png │ ├── nortek.png │ ├── northq.png │ ├── permundo.png │ ├── philio.png │ ├── philio_tech.png │ ├── poly-control_aps.png │ ├── poly_control.png │ ├── popp.png │ ├── powerley.png │ ├── qolsys_inc.png │ ├── qubino.png │ ├── quby.png │ ├── radio_thermostat_company_of_america.png │ ├── remote_solution.png │ ├── remotec_technology_ltd.png │ ├── samsung_sds.png │ ├── satco.png │ ├── secure_controls.png │ ├── sentek.png │ ├── sercomm.png │ ├── shenzhen_kaipule_technology_co_ltd.png │ ├── shenzhen_neo_electronics.png │ ├── show_home.png │ ├── siegenia_aubi.png │ ├── somfy.png │ ├── stelpro.png │ ├── telldus.png │ ├── thermo-floor_as.png │ ├── timevalve.png │ ├── tkb_home.png │ ├── u-fairy_gr_iot_tech_co_ltd.png │ ├── venstar.png │ ├── vision_security.png │ ├── vivint.png │ ├── webehome.png │ ├── widom.png │ ├── wink.png │ ├── wintop.png │ ├── winytechnology.png │ ├── yale_locks_&_hardware.png │ ├── z-waveme.png │ ├── z-works.png │ ├── zipato.png │ └── zooz.png └── vendor ├── alertify ├── alertify.js ├── alertify.min.js └── ngAlertify.js ├── alpaca ├── 1.1.3 │ └── alpaca.min.js ├── 1.5.13 │ └── alpaca.min.js └── 1.5.14 │ └── bootstrap │ ├── alpaca.min.js │ └── images │ ├── alpaca-icons.png │ ├── date.png │ ├── down.png │ ├── email.png │ ├── left.png │ ├── phone.png │ └── time.png ├── angular ├── angular-1.2.28 │ ├── angular-animate.js │ ├── angular-cookies.js │ ├── angular-cookies.min.js │ ├── angular-cookies.min.js.map │ ├── angular-route.js │ ├── angular-route.min.js │ ├── angular-route.min.js.map │ ├── angular-touch.js │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.map │ ├── errors.json │ ├── version.json │ └── version.txt └── angular-websocket │ ├── angular-websocket.js │ └── angular-websocket.min.js ├── bootstrap ├── bootstrap.js ├── bootstrap.min.js └── plugins │ └── bootstrap-datetimepicker.js ├── chartjs ├── Chart.js └── Chart.min.js ├── dragdrop ├── angular-sortable-view.js └── angular-sortable-view.min.js ├── handlebars ├── handlebars-v3.0.3.js ├── handlebars-v3.0.3.min.js └── handlebars.min.js ├── highlight ├── highlight-textarea.js └── highlight.pack.js ├── jquery ├── jquery-1.11.3.min.js ├── jquery-ui.min.js └── plugins │ ├── jquery.fileupload-process.js │ ├── jquery.fileupload-ui.js │ ├── jquery.fileupload.js │ ├── jquery.iframe-transport.js │ ├── jquery.ui.touch-punch.min.js │ └── jquery.ui.widget.js ├── knob ├── jquery.knob.js └── jquery.knob.min.js ├── moment └── moment-with-locales.min.js ├── qrcode ├── qrcode.js ├── qrcode.min.js └── qrcode.min.js.map ├── qrcode_reader └── qr_packed.js ├── scheduler └── jq.schedule.js ├── underscore └── underscore-1.8.3 │ ├── underscore-min.js │ └── underscore.js └── upload ├── FileAPI.flash.swf ├── FileAPI.min.js ├── angular-file-upload-html5-shim.js ├── angular-file-upload-html5-shim.min.js ├── angular-file-upload-shim.js ├── angular-file-upload-shim.min.js ├── angular-file-upload.js └── angular-file-upload.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/app.js -------------------------------------------------------------------------------- /app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/config.js -------------------------------------------------------------------------------- /app/configs/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/configs/notifications.js -------------------------------------------------------------------------------- /app/controllers/app-alpaca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/app-alpaca.js -------------------------------------------------------------------------------- /app/controllers/app-instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/app-instance.js -------------------------------------------------------------------------------- /app/controllers/app-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/app-local.js -------------------------------------------------------------------------------- /app/controllers/app-online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/app-online.js -------------------------------------------------------------------------------- /app/controllers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/app.js -------------------------------------------------------------------------------- /app/controllers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/auth.js -------------------------------------------------------------------------------- /app/controllers/automation-hazard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/automation-hazard.js -------------------------------------------------------------------------------- /app/controllers/automation-heating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/automation-heating.js -------------------------------------------------------------------------------- /app/controllers/automation-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/automation-rule.js -------------------------------------------------------------------------------- /app/controllers/automation-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/automation-scene.js -------------------------------------------------------------------------------- /app/controllers/automation-schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/automation-schedule.js -------------------------------------------------------------------------------- /app/controllers/automation-security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/automation-security.js -------------------------------------------------------------------------------- /app/controllers/automations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/automations.js -------------------------------------------------------------------------------- /app/controllers/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/base.js -------------------------------------------------------------------------------- /app/controllers/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/camera.js -------------------------------------------------------------------------------- /app/controllers/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/device.js -------------------------------------------------------------------------------- /app/controllers/element-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/element-id.js -------------------------------------------------------------------------------- /app/controllers/element-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/element-widget.js -------------------------------------------------------------------------------- /app/controllers/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/element.js -------------------------------------------------------------------------------- /app/controllers/enocean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/enocean.js -------------------------------------------------------------------------------- /app/controllers/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/event.js -------------------------------------------------------------------------------- /app/controllers/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/icon.js -------------------------------------------------------------------------------- /app/controllers/jamesbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/jamesbox.js -------------------------------------------------------------------------------- /app/controllers/management-appstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-appstore.js -------------------------------------------------------------------------------- /app/controllers/management-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-factory.js -------------------------------------------------------------------------------- /app/controllers/management-firmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-firmware.js -------------------------------------------------------------------------------- /app/controllers/management-licence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-licence.js -------------------------------------------------------------------------------- /app/controllers/management-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-local.js -------------------------------------------------------------------------------- /app/controllers/management-oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-oauth.js -------------------------------------------------------------------------------- /app/controllers/management-remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-remote.js -------------------------------------------------------------------------------- /app/controllers/management-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-report.js -------------------------------------------------------------------------------- /app/controllers/management-restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-restore.js -------------------------------------------------------------------------------- /app/controllers/management-timezone-jb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-timezone-jb.js -------------------------------------------------------------------------------- /app/controllers/management-timezone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-timezone.js -------------------------------------------------------------------------------- /app/controllers/management-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-user.js -------------------------------------------------------------------------------- /app/controllers/management-wifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management-wifi.js -------------------------------------------------------------------------------- /app/controllers/management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/management.js -------------------------------------------------------------------------------- /app/controllers/matter-commission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/matter-commission.js -------------------------------------------------------------------------------- /app/controllers/matter-inclusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/matter-inclusion.js -------------------------------------------------------------------------------- /app/controllers/matter-manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/matter-manage.js -------------------------------------------------------------------------------- /app/controllers/matter-vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/matter-vendor.js -------------------------------------------------------------------------------- /app/controllers/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/mobile.js -------------------------------------------------------------------------------- /app/controllers/mysettings-sessions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/mysettings-sessions.js -------------------------------------------------------------------------------- /app/controllers/mysettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/mysettings.js -------------------------------------------------------------------------------- /app/controllers/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/room.js -------------------------------------------------------------------------------- /app/controllers/rss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/rss.js -------------------------------------------------------------------------------- /app/controllers/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/skin.js -------------------------------------------------------------------------------- /app/controllers/smartstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/smartstart.js -------------------------------------------------------------------------------- /app/controllers/speech_assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/speech_assistant.js -------------------------------------------------------------------------------- /app/controllers/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/welcome.js -------------------------------------------------------------------------------- /app/controllers/wifiplug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/wifiplug.js -------------------------------------------------------------------------------- /app/controllers/zigbee-inclusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/zigbee-inclusion.js -------------------------------------------------------------------------------- /app/controllers/zigbee-manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/zigbee-manage.js -------------------------------------------------------------------------------- /app/controllers/zigbee-vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/zigbee-vendor.js -------------------------------------------------------------------------------- /app/controllers/zwave-exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/zwave-exclude.js -------------------------------------------------------------------------------- /app/controllers/zwave-inclusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/zwave-inclusion.js -------------------------------------------------------------------------------- /app/controllers/zwave-manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/zwave-manage.js -------------------------------------------------------------------------------- /app/controllers/zwave-vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/controllers/zwave-vendor.js -------------------------------------------------------------------------------- /app/css/.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/.css -------------------------------------------------------------------------------- /app/css/base/dots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/base/dots.css -------------------------------------------------------------------------------- /app/css/base/dots.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/base/dots.map -------------------------------------------------------------------------------- /app/css/homekit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/homekit.jpg -------------------------------------------------------------------------------- /app/css/img/fatal-error-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/img/fatal-error-32.png -------------------------------------------------------------------------------- /app/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/main.css -------------------------------------------------------------------------------- /app/css/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/main.css.map -------------------------------------------------------------------------------- /app/css/main.css.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/main.css.orig -------------------------------------------------------------------------------- /app/css/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/screenshot.png -------------------------------------------------------------------------------- /app/css/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/css/wallpaper.png -------------------------------------------------------------------------------- /app/directives/angular-long-press.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/angular-long-press.js -------------------------------------------------------------------------------- /app/directives/angular-long-press.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/angular-long-press.min.js -------------------------------------------------------------------------------- /app/directives/angular-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/angular-slider.js -------------------------------------------------------------------------------- /app/directives/contextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/contextMenu.js -------------------------------------------------------------------------------- /app/directives/dir-pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/dir-pagination.js -------------------------------------------------------------------------------- /app/directives/directives-expert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/directives-expert.js -------------------------------------------------------------------------------- /app/directives/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/directives.js -------------------------------------------------------------------------------- /app/directives/tc-angular-chartjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/directives/tc-angular-chartjs.js -------------------------------------------------------------------------------- /app/factories/factories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/factories/factories.js -------------------------------------------------------------------------------- /app/filters/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/filters/filters.js -------------------------------------------------------------------------------- /app/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /app/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /app/fonts/fa-duotone-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-duotone-900.eot -------------------------------------------------------------------------------- /app/fonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /app/fonts/fa-light-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-light-300.eot -------------------------------------------------------------------------------- /app/fonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /app/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /app/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /app/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /app/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /app/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/icons.js -------------------------------------------------------------------------------- /app/img/alexa/activate_skill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/alexa/activate_skill.png -------------------------------------------------------------------------------- /app/img/alexa/alexa_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/alexa/alexa_login.png -------------------------------------------------------------------------------- /app/img/alexa/amazon_echo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/alexa/amazon_echo.jpg -------------------------------------------------------------------------------- /app/img/alexa/found_skill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/alexa/found_skill.png -------------------------------------------------------------------------------- /app/img/alexa/manage_alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/alexa/manage_alexa.png -------------------------------------------------------------------------------- /app/img/alexa/oauth_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/alexa/oauth_login.png -------------------------------------------------------------------------------- /app/img/apple-store-badges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/apple-store-badges.svg -------------------------------------------------------------------------------- /app/img/automation/hazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/automation/hazard.png -------------------------------------------------------------------------------- /app/img/automation/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/automation/heating.png -------------------------------------------------------------------------------- /app/img/automation/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/automation/rules.png -------------------------------------------------------------------------------- /app/img/automation/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/automation/scenes.png -------------------------------------------------------------------------------- /app/img/automation/schedules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/automation/schedules.png -------------------------------------------------------------------------------- /app/img/automation/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/automation/security.png -------------------------------------------------------------------------------- /app/img/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/colorwheel.png -------------------------------------------------------------------------------- /app/img/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/cn.png -------------------------------------------------------------------------------- /app/img/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/cz.png -------------------------------------------------------------------------------- /app/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/de.png -------------------------------------------------------------------------------- /app/img/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/en.png -------------------------------------------------------------------------------- /app/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/es.png -------------------------------------------------------------------------------- /app/img/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/fi.png -------------------------------------------------------------------------------- /app/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/fr.png -------------------------------------------------------------------------------- /app/img/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/it.png -------------------------------------------------------------------------------- /app/img/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/pt.png -------------------------------------------------------------------------------- /app/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/ru.png -------------------------------------------------------------------------------- /app/img/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/sk.png -------------------------------------------------------------------------------- /app/img/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/flags/sv.png -------------------------------------------------------------------------------- /app/img/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/google-play-badge.png -------------------------------------------------------------------------------- /app/img/google_home/google_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/google_home/google_home.jpg -------------------------------------------------------------------------------- /app/img/icon_cloudbackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/icon_cloudbackup.png -------------------------------------------------------------------------------- /app/img/komsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/komsa.png -------------------------------------------------------------------------------- /app/img/logo-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-camera.png -------------------------------------------------------------------------------- /app/img/logo-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-camera.svg -------------------------------------------------------------------------------- /app/img/logo-enocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-enocean.svg -------------------------------------------------------------------------------- /app/img/logo-matter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-matter.svg -------------------------------------------------------------------------------- /app/img/logo-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-mobile.png -------------------------------------------------------------------------------- /app/img/logo-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-mobile.svg -------------------------------------------------------------------------------- /app/img/logo-speech-assistants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-speech-assistants.png -------------------------------------------------------------------------------- /app/img/logo-speech-assistants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-speech-assistants.svg -------------------------------------------------------------------------------- /app/img/logo-wifiplug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-wifiplug.png -------------------------------------------------------------------------------- /app/img/logo-wifiplug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-wifiplug.svg -------------------------------------------------------------------------------- /app/img/logo-z-wave-z-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-z-wave-z-only.png -------------------------------------------------------------------------------- /app/img/logo-zigbee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-zigbee.svg -------------------------------------------------------------------------------- /app/img/logo-zwave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/logo-zwave.svg -------------------------------------------------------------------------------- /app/img/small_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/small_logo.svg -------------------------------------------------------------------------------- /app/img/smartphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/smartphone.png -------------------------------------------------------------------------------- /app/img/smartstart/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/smartstart/qrcode.png -------------------------------------------------------------------------------- /app/img/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome.jpg -------------------------------------------------------------------------------- /app/img/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome.png -------------------------------------------------------------------------------- /app/img/welcome/automation_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/automation_view.jpg -------------------------------------------------------------------------------- /app/img/welcome/element_detail_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/element_detail_view.jpg -------------------------------------------------------------------------------- /app/img/welcome/elements.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/elements.jpg -------------------------------------------------------------------------------- /app/img/welcome/elements_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/elements_mobile.jpg -------------------------------------------------------------------------------- /app/img/welcome/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/events.jpg -------------------------------------------------------------------------------- /app/img/welcome/events_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/events_mobile.jpg -------------------------------------------------------------------------------- /app/img/welcome/menu_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/menu_view.jpg -------------------------------------------------------------------------------- /app/img/welcome/menu_view_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/menu_view_mobile.jpg -------------------------------------------------------------------------------- /app/img/welcome/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/overview.jpg -------------------------------------------------------------------------------- /app/img/welcome/overview_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/overview_mobile.jpg -------------------------------------------------------------------------------- /app/img/welcome/room_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/room_view.jpg -------------------------------------------------------------------------------- /app/img/welcome/room_view_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/welcome/room_view_mobile.jpg -------------------------------------------------------------------------------- /app/img/z-wave-me-mobile-app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/img/z-wave-me-mobile-app-icon.png -------------------------------------------------------------------------------- /app/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/info.json -------------------------------------------------------------------------------- /app/jquery/postrender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/jquery/postrender.js -------------------------------------------------------------------------------- /app/lang/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/cn.json -------------------------------------------------------------------------------- /app/lang/cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/cz.json -------------------------------------------------------------------------------- /app/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/de.json -------------------------------------------------------------------------------- /app/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/en.json -------------------------------------------------------------------------------- /app/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/es.json -------------------------------------------------------------------------------- /app/lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/fi.json -------------------------------------------------------------------------------- /app/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/fr.json -------------------------------------------------------------------------------- /app/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/it.json -------------------------------------------------------------------------------- /app/lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/pt.json -------------------------------------------------------------------------------- /app/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/ru.json -------------------------------------------------------------------------------- /app/lang/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/sk.json -------------------------------------------------------------------------------- /app/lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/lang/sv.json -------------------------------------------------------------------------------- /app/modules/httpLatency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/modules/httpLatency.js -------------------------------------------------------------------------------- /app/modules/ngDeviceDetector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/modules/ngDeviceDetector.js -------------------------------------------------------------------------------- /app/modules/ngDeviceDetector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/modules/ngDeviceDetector.min.js -------------------------------------------------------------------------------- /app/modules/qAllSettled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/modules/qAllSettled.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/sass/base/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_accordion.scss -------------------------------------------------------------------------------- /app/sass/base/_active_apps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_active_apps.scss -------------------------------------------------------------------------------- /app/sass/base/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_alert.scss -------------------------------------------------------------------------------- /app/sass/base/_apps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_apps.scss -------------------------------------------------------------------------------- /app/sass/base/_auth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_auth.scss -------------------------------------------------------------------------------- /app/sass/base/_autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_autocomplete.scss -------------------------------------------------------------------------------- /app/sass/base/_automation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_automation.scss -------------------------------------------------------------------------------- /app/sass/base/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_bar.scss -------------------------------------------------------------------------------- /app/sass/base/_blank.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_blank.scss -------------------------------------------------------------------------------- /app/sass/base/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_body.scss -------------------------------------------------------------------------------- /app/sass/base/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_button.scss -------------------------------------------------------------------------------- /app/sass/base/_commands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_commands.scss -------------------------------------------------------------------------------- /app/sass/base/_customize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_customize.scss -------------------------------------------------------------------------------- /app/sass/base/_definition_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_definition_list.scss -------------------------------------------------------------------------------- /app/sass/base/_devices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_devices.scss -------------------------------------------------------------------------------- /app/sass/base/_dots.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_dots.scss -------------------------------------------------------------------------------- /app/sass/base/_dragdrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_dragdrop.scss -------------------------------------------------------------------------------- /app/sass/base/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_dropdown.scss -------------------------------------------------------------------------------- /app/sass/base/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_elements.scss -------------------------------------------------------------------------------- /app/sass/base/_events.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_events.scss -------------------------------------------------------------------------------- /app/sass/base/_flexcard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_flexcard.scss -------------------------------------------------------------------------------- /app/sass/base/_flexgallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_flexgallery.scss -------------------------------------------------------------------------------- /app/sass/base/_flextag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_flextag.scss -------------------------------------------------------------------------------- /app/sass/base/_flip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_flip.scss -------------------------------------------------------------------------------- /app/sass/base/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_footer.scss -------------------------------------------------------------------------------- /app/sass/base/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_form.scss -------------------------------------------------------------------------------- /app/sass/base/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_grid.scss -------------------------------------------------------------------------------- /app/sass/base/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_header.scss -------------------------------------------------------------------------------- /app/sass/base/_iframe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_iframe.scss -------------------------------------------------------------------------------- /app/sass/base/_img.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_img.scss -------------------------------------------------------------------------------- /app/sass/base/_imglist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_imglist.scss -------------------------------------------------------------------------------- /app/sass/base/_inclusion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_inclusion.scss -------------------------------------------------------------------------------- /app/sass/base/_infowindow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_infowindow.scss -------------------------------------------------------------------------------- /app/sass/base/_input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_input.scss -------------------------------------------------------------------------------- /app/sass/base/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_label.scss -------------------------------------------------------------------------------- /app/sass/base/_list_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_list_panel.scss -------------------------------------------------------------------------------- /app/sass/base/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_loader.scss -------------------------------------------------------------------------------- /app/sass/base/_local_apps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_local_apps.scss -------------------------------------------------------------------------------- /app/sass/base/_media_queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_media_queries.scss -------------------------------------------------------------------------------- /app/sass/base/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_mixins.scss -------------------------------------------------------------------------------- /app/sass/base/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_modal.scss -------------------------------------------------------------------------------- /app/sass/base/_navi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_navi.scss -------------------------------------------------------------------------------- /app/sass/base/_night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_night.scss -------------------------------------------------------------------------------- /app/sass/base/_online_apps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_online_apps.scss -------------------------------------------------------------------------------- /app/sass/base/_page_topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_page_topbar.scss -------------------------------------------------------------------------------- /app/sass/base/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_pagination.scss -------------------------------------------------------------------------------- /app/sass/base/_report.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_report.scss -------------------------------------------------------------------------------- /app/sass/base/_rooms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_rooms.scss -------------------------------------------------------------------------------- /app/sass/base/_rss.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_rss.scss -------------------------------------------------------------------------------- /app/sass/base/_schedule.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_schedule.scss -------------------------------------------------------------------------------- /app/sass/base/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_section.scss -------------------------------------------------------------------------------- /app/sass/base/_security.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_security.scss -------------------------------------------------------------------------------- /app/sass/base/_sessions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_sessions.scss -------------------------------------------------------------------------------- /app/sass/base/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_slider.scss -------------------------------------------------------------------------------- /app/sass/base/_smartstart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_smartstart.scss -------------------------------------------------------------------------------- /app/sass/base/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_switch.scss -------------------------------------------------------------------------------- /app/sass/base/_tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_tab.scss -------------------------------------------------------------------------------- /app/sass/base/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_table.scss -------------------------------------------------------------------------------- /app/sass/base/_table_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_table_responsive.scss -------------------------------------------------------------------------------- /app/sass/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_variables.scss -------------------------------------------------------------------------------- /app/sass/base/_widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_widget.scss -------------------------------------------------------------------------------- /app/sass/base/_wifi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_wifi.scss -------------------------------------------------------------------------------- /app/sass/base/_wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/base/_wizard.scss -------------------------------------------------------------------------------- /app/sass/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/compile.sh -------------------------------------------------------------------------------- /app/sass/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/config.rb -------------------------------------------------------------------------------- /app/sass/custom/_bayernshui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_bayernshui.scss -------------------------------------------------------------------------------- /app/sass/custom/_blueshui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_blueshui.scss -------------------------------------------------------------------------------- /app/sass/custom/_dark_left.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_dark_left.scss -------------------------------------------------------------------------------- /app/sass/custom/_darkshui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_darkshui.scss -------------------------------------------------------------------------------- /app/sass/custom/_homekit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_homekit.scss -------------------------------------------------------------------------------- /app/sass/custom/_left_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_left_menu.scss -------------------------------------------------------------------------------- /app/sass/custom/_popp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_popp.scss -------------------------------------------------------------------------------- /app/sass/custom/_shui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_shui.scss -------------------------------------------------------------------------------- /app/sass/custom/_shui_night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/custom/_shui_night.scss -------------------------------------------------------------------------------- /app/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/main.scss -------------------------------------------------------------------------------- /app/sass/vendor/_alertify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_alertify.scss -------------------------------------------------------------------------------- /app/sass/vendor/_alpaca.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_alpaca.scss -------------------------------------------------------------------------------- /app/sass/vendor/_angular.slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_angular.slider.scss -------------------------------------------------------------------------------- /app/sass/vendor/_colorpicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_colorpicker.scss -------------------------------------------------------------------------------- /app/sass/vendor/_contextMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_contextMenu.scss -------------------------------------------------------------------------------- /app/sass/vendor/_highlight-textarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_highlight-textarea.scss -------------------------------------------------------------------------------- /app/sass/vendor/_highlight-vs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_highlight-vs.scss -------------------------------------------------------------------------------- /app/sass/vendor/_jquery.fileupload.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_jquery.fileupload.scss -------------------------------------------------------------------------------- /app/sass/vendor/_minireset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_minireset.scss -------------------------------------------------------------------------------- /app/sass/vendor/_slick.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/_slick.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_alerts.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_badges.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_close.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_code.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_dropdowns.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_forms.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_grid.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_labels.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_media.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_modals.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_navs.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_normalize.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_pager.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_pager.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_panels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_panels.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_popovers.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_print.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_tables.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_theme.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_type.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_variables.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/_wells.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/_wells.scss -------------------------------------------------------------------------------- /app/sass/vendor/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /app/sass/vendor/fontawesome/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/sass/vendor/fontawesome/all.scss -------------------------------------------------------------------------------- /app/services/mobile-detector.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/services/mobile-detector.service.js -------------------------------------------------------------------------------- /app/services/services-expert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/services/services-expert.js -------------------------------------------------------------------------------- /app/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/services/services.js -------------------------------------------------------------------------------- /app/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/templates.js -------------------------------------------------------------------------------- /app/views/apps/app_module_alpaca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/app_module_alpaca.html -------------------------------------------------------------------------------- /app/views/apps/apps_instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_instance.html -------------------------------------------------------------------------------- /app/views/apps/apps_instance_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_instance_ctrl.html -------------------------------------------------------------------------------- /app/views/apps/apps_instance_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_instance_widget.html -------------------------------------------------------------------------------- /app/views/apps/apps_local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_local.html -------------------------------------------------------------------------------- /app/views/apps/apps_local_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_local_ctrl.html -------------------------------------------------------------------------------- /app/views/apps/apps_local_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_local_id.html -------------------------------------------------------------------------------- /app/views/apps/apps_local_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_local_widget.html -------------------------------------------------------------------------------- /app/views/apps/apps_online.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_online.html -------------------------------------------------------------------------------- /app/views/apps/apps_online_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_online_ctrl.html -------------------------------------------------------------------------------- /app/views/apps/apps_online_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_online_filter.html -------------------------------------------------------------------------------- /app/views/apps/apps_online_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_online_id.html -------------------------------------------------------------------------------- /app/views/apps/apps_online_id_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_online_id_info.html -------------------------------------------------------------------------------- /app/views/apps/apps_online_slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_online_slider.html -------------------------------------------------------------------------------- /app/views/apps/apps_online_widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/apps_online_widget.html -------------------------------------------------------------------------------- /app/views/apps/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/dropdown.html -------------------------------------------------------------------------------- /app/views/apps/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/apps/navi.html -------------------------------------------------------------------------------- /app/views/auth/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/auth/auth.html -------------------------------------------------------------------------------- /app/views/auth/auth_firstaccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/auth/auth_firstaccess.html -------------------------------------------------------------------------------- /app/views/auth/auth_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/auth/auth_login.html -------------------------------------------------------------------------------- /app/views/auth/oauth2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/auth/oauth2.html -------------------------------------------------------------------------------- /app/views/auth/password_forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/auth/password_forgot.html -------------------------------------------------------------------------------- /app/views/auth/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/auth/password_reset.html -------------------------------------------------------------------------------- /app/views/automation/automations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/automations.html -------------------------------------------------------------------------------- /app/views/automation/hazard/hazard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/hazard/hazard.html -------------------------------------------------------------------------------- /app/views/automation/hazard/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/hazard/id.html -------------------------------------------------------------------------------- /app/views/automation/hazard/id_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/hazard/id_form.html -------------------------------------------------------------------------------- /app/views/automation/heating/heating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/heating/heating.html -------------------------------------------------------------------------------- /app/views/automation/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/navi.html -------------------------------------------------------------------------------- /app/views/automation/no_device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/no_device.html -------------------------------------------------------------------------------- /app/views/automation/rules/rule_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/rules/rule_id.html -------------------------------------------------------------------------------- /app/views/automation/rules/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/rules/rules.html -------------------------------------------------------------------------------- /app/views/automation/scenes/scene_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/scenes/scene_id.html -------------------------------------------------------------------------------- /app/views/automation/scenes/scenes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/scenes/scenes.html -------------------------------------------------------------------------------- /app/views/automation/security/id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/security/id.html -------------------------------------------------------------------------------- /app/views/automation/security/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/automation/security/tabs.html -------------------------------------------------------------------------------- /app/views/camera/camera_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/camera/camera_add.html -------------------------------------------------------------------------------- /app/views/camera/camera_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/camera/camera_manage.html -------------------------------------------------------------------------------- /app/views/camera/camera_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/camera/camera_nav.html -------------------------------------------------------------------------------- /app/views/camera/camera_navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/camera/camera_navi.html -------------------------------------------------------------------------------- /app/views/customize/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/customize/navi.html -------------------------------------------------------------------------------- /app/views/devices/devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/devices/devices.html -------------------------------------------------------------------------------- /app/views/devices/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/devices/modal.html -------------------------------------------------------------------------------- /app/views/dir-pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/dir-pagination.html -------------------------------------------------------------------------------- /app/views/dist_head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/dist_head.txt -------------------------------------------------------------------------------- /app/views/elements/element_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/element_id.html -------------------------------------------------------------------------------- /app/views/elements/element_id_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/element_id_icons.html -------------------------------------------------------------------------------- /app/views/elements/elements_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/elements_page.html -------------------------------------------------------------------------------- /app/views/elements/elements_room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/elements_room.html -------------------------------------------------------------------------------- /app/views/elements/elements_room_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/elements_room_bar.html -------------------------------------------------------------------------------- /app/views/elements/first_login_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/first_login_de.html -------------------------------------------------------------------------------- /app/views/elements/list_mode_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/list_mode_default.html -------------------------------------------------------------------------------- /app/views/elements/list_mode_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/list_mode_edit.html -------------------------------------------------------------------------------- /app/views/elements/no_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/no_dashboard.html -------------------------------------------------------------------------------- /app/views/elements/no_devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/no_devices.html -------------------------------------------------------------------------------- /app/views/elements/no_elements_room.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/no_elements_room.html -------------------------------------------------------------------------------- /app/views/elements/widgets/_muster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/widgets/_muster.html -------------------------------------------------------------------------------- /app/views/elements/widgets/camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/widgets/camera.html -------------------------------------------------------------------------------- /app/views/elements/widgets/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/widgets/default.html -------------------------------------------------------------------------------- /app/views/elements/widgets/doorlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/widgets/doorlock.html -------------------------------------------------------------------------------- /app/views/elements/widgets/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/widgets/text.html -------------------------------------------------------------------------------- /app/views/elements/widgets/textModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/elements/widgets/textModal.html -------------------------------------------------------------------------------- /app/views/enocean/controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/controller.html -------------------------------------------------------------------------------- /app/views/enocean/enocean_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/enocean_nav.html -------------------------------------------------------------------------------- /app/views/enocean/manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/manage.html -------------------------------------------------------------------------------- /app/views/enocean/manage_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/manage_detail.html -------------------------------------------------------------------------------- /app/views/enocean/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/navi.html -------------------------------------------------------------------------------- /app/views/enocean/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/products.html -------------------------------------------------------------------------------- /app/views/enocean/teachin-smartAck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/teachin-smartAck.html -------------------------------------------------------------------------------- /app/views/enocean/teachin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/teachin.html -------------------------------------------------------------------------------- /app/views/enocean/vendors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/enocean/vendors.html -------------------------------------------------------------------------------- /app/views/error_403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/error_403.html -------------------------------------------------------------------------------- /app/views/error_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/error_404.html -------------------------------------------------------------------------------- /app/views/events/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/events/dropdown.html -------------------------------------------------------------------------------- /app/views/events/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/events/events.html -------------------------------------------------------------------------------- /app/views/jamesbox/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/jamesbox/update.html -------------------------------------------------------------------------------- /app/views/management/management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/management/management.html -------------------------------------------------------------------------------- /app/views/management/management_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/management/management_info.html -------------------------------------------------------------------------------- /app/views/management/management_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/management/management_user.html -------------------------------------------------------------------------------- /app/views/management/modal_timezone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/management/modal_timezone.html -------------------------------------------------------------------------------- /app/views/matter/matter_batteries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_batteries.html -------------------------------------------------------------------------------- /app/views/matter/matter_commission.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_commission.html -------------------------------------------------------------------------------- /app/views/matter/matter_inclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_inclusion.html -------------------------------------------------------------------------------- /app/views/matter/matter_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_manage.html -------------------------------------------------------------------------------- /app/views/matter/matter_manage_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_manage_id.html -------------------------------------------------------------------------------- /app/views/matter/matter_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_nav.html -------------------------------------------------------------------------------- /app/views/matter/matter_network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_network.html -------------------------------------------------------------------------------- /app/views/matter/matter_products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_products.html -------------------------------------------------------------------------------- /app/views/matter/matter_vendors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_vendors.html -------------------------------------------------------------------------------- /app/views/matter/matter_vendors_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/matter_vendors_ctrl.html -------------------------------------------------------------------------------- /app/views/matter/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/matter/navi.html -------------------------------------------------------------------------------- /app/views/mobile/mobile_add_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/mobile/mobile_add_modal.html -------------------------------------------------------------------------------- /app/views/mobile/mobile_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/mobile/mobile_manage.html -------------------------------------------------------------------------------- /app/views/mysettings/mysettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/mysettings/mysettings.html -------------------------------------------------------------------------------- /app/views/pages/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/pages/about.html -------------------------------------------------------------------------------- /app/views/rooms/config_rooms_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/rooms/config_rooms_id.html -------------------------------------------------------------------------------- /app/views/rooms/room_assigned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/rooms/room_assigned.html -------------------------------------------------------------------------------- /app/views/rooms/room_available.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/rooms/room_available.1.html -------------------------------------------------------------------------------- /app/views/rooms/room_available.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/rooms/room_available.html -------------------------------------------------------------------------------- /app/views/rooms/room_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/rooms/room_form.html -------------------------------------------------------------------------------- /app/views/rooms/rooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/rooms/rooms.html -------------------------------------------------------------------------------- /app/views/rss/rss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/rss/rss.html -------------------------------------------------------------------------------- /app/views/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/simple.html -------------------------------------------------------------------------------- /app/views/smartstart/_smartstart_qr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/smartstart/_smartstart_qr.html -------------------------------------------------------------------------------- /app/views/smartstart/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/smartstart/navi.html -------------------------------------------------------------------------------- /app/views/smartstart/smartstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/smartstart/smartstart.html -------------------------------------------------------------------------------- /app/views/smartstart/smartstart_dsk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/smartstart/smartstart_dsk.html -------------------------------------------------------------------------------- /app/views/smartstart/smartstart_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/smartstart/smartstart_list.html -------------------------------------------------------------------------------- /app/views/smartstart/smartstart_qr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/smartstart/smartstart_qr.html -------------------------------------------------------------------------------- /app/views/speech_assistants/alexa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/speech_assistants/alexa.html -------------------------------------------------------------------------------- /app/views/speech_assistants/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/speech_assistants/nav.html -------------------------------------------------------------------------------- /app/views/speech_assistants/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/speech_assistants/navi.html -------------------------------------------------------------------------------- /app/views/welcome/first_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/first_login.html -------------------------------------------------------------------------------- /app/views/welcome/tab_automation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/tab_automation.html -------------------------------------------------------------------------------- /app/views/welcome/tab_elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/tab_elements.html -------------------------------------------------------------------------------- /app/views/welcome/tab_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/tab_events.html -------------------------------------------------------------------------------- /app/views/welcome/tab_lets_start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/tab_lets_start.html -------------------------------------------------------------------------------- /app/views/welcome/tab_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/tab_menu.html -------------------------------------------------------------------------------- /app/views/welcome/tab_rooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/tab_rooms.html -------------------------------------------------------------------------------- /app/views/welcome/tab_welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/welcome/tab_welcome.html -------------------------------------------------------------------------------- /app/views/wifiplug/wifi_navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/wifiplug/wifi_navi.html -------------------------------------------------------------------------------- /app/views/wifiplug/wifiplug_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/wifiplug/wifiplug_add.html -------------------------------------------------------------------------------- /app/views/wifiplug/wifiplug_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/wifiplug/wifiplug_manage.html -------------------------------------------------------------------------------- /app/views/wifiplug/wifiplug_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/wifiplug/wifiplug_nav.html -------------------------------------------------------------------------------- /app/views/zigbee/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/navi.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_batteries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_batteries.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_inclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_inclusion.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_manage.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_manage_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_manage_id.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_nav.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_network.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_products.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_vendors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_vendors.html -------------------------------------------------------------------------------- /app/views/zigbee/zigbee_vendors_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zigbee/zigbee_vendors_ctrl.html -------------------------------------------------------------------------------- /app/views/zwave/_smartstart/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/_smartstart/navi.html -------------------------------------------------------------------------------- /app/views/zwave/navi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/navi.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_batteries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_batteries.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_exclude.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_exclude.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_inclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_inclusion.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_manage.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_manage_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_manage_id.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_manage_id_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_manage_id_new.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_nav.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_network.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_products.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_vendors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_vendors.html -------------------------------------------------------------------------------- /app/views/zwave/zwave_vendors_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/app/views/zwave/zwave_vendors_ctrl.html -------------------------------------------------------------------------------- /dist/app/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/css/main.css -------------------------------------------------------------------------------- /dist/app/css/main.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/css/main.css.gz -------------------------------------------------------------------------------- /dist/app/css/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/css/screenshot.png -------------------------------------------------------------------------------- /dist/app/css/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/css/wallpaper.png -------------------------------------------------------------------------------- /dist/app/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /dist/app/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /dist/app/fonts/fa-duotone-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-duotone-900.eot -------------------------------------------------------------------------------- /dist/app/fonts/fa-duotone-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-duotone-900.woff2 -------------------------------------------------------------------------------- /dist/app/fonts/fa-light-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-light-300.eot -------------------------------------------------------------------------------- /dist/app/fonts/fa-light-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-light-300.woff2 -------------------------------------------------------------------------------- /dist/app/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /dist/app/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /dist/app/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /dist/app/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /dist/app/img/alexa/activate_skill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/alexa/activate_skill.png -------------------------------------------------------------------------------- /dist/app/img/alexa/alexa_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/alexa/alexa_login.png -------------------------------------------------------------------------------- /dist/app/img/alexa/amazon_echo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/alexa/amazon_echo.jpg -------------------------------------------------------------------------------- /dist/app/img/alexa/found_skill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/alexa/found_skill.png -------------------------------------------------------------------------------- /dist/app/img/alexa/manage_alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/alexa/manage_alexa.png -------------------------------------------------------------------------------- /dist/app/img/alexa/oauth_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/alexa/oauth_login.png -------------------------------------------------------------------------------- /dist/app/img/apple-store-badges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/apple-store-badges.svg -------------------------------------------------------------------------------- /dist/app/img/automation/hazard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/automation/hazard.png -------------------------------------------------------------------------------- /dist/app/img/automation/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/automation/heating.png -------------------------------------------------------------------------------- /dist/app/img/automation/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/automation/rules.png -------------------------------------------------------------------------------- /dist/app/img/automation/scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/automation/scenes.png -------------------------------------------------------------------------------- /dist/app/img/automation/schedules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/automation/schedules.png -------------------------------------------------------------------------------- /dist/app/img/automation/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/automation/security.png -------------------------------------------------------------------------------- /dist/app/img/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/colorwheel.png -------------------------------------------------------------------------------- /dist/app/img/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/cn.png -------------------------------------------------------------------------------- /dist/app/img/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/cz.png -------------------------------------------------------------------------------- /dist/app/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/de.png -------------------------------------------------------------------------------- /dist/app/img/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/en.png -------------------------------------------------------------------------------- /dist/app/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/es.png -------------------------------------------------------------------------------- /dist/app/img/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/fi.png -------------------------------------------------------------------------------- /dist/app/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/fr.png -------------------------------------------------------------------------------- /dist/app/img/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/it.png -------------------------------------------------------------------------------- /dist/app/img/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/pt.png -------------------------------------------------------------------------------- /dist/app/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/ru.png -------------------------------------------------------------------------------- /dist/app/img/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/sk.png -------------------------------------------------------------------------------- /dist/app/img/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/flags/sv.png -------------------------------------------------------------------------------- /dist/app/img/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/google-play-badge.png -------------------------------------------------------------------------------- /dist/app/img/google_home/google_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/google_home/google_home.jpg -------------------------------------------------------------------------------- /dist/app/img/icon_cloudbackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/icon_cloudbackup.png -------------------------------------------------------------------------------- /dist/app/img/komsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/komsa.png -------------------------------------------------------------------------------- /dist/app/img/logo-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-camera.png -------------------------------------------------------------------------------- /dist/app/img/logo-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-camera.svg -------------------------------------------------------------------------------- /dist/app/img/logo-enocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-enocean.svg -------------------------------------------------------------------------------- /dist/app/img/logo-matter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-matter.svg -------------------------------------------------------------------------------- /dist/app/img/logo-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-mobile.png -------------------------------------------------------------------------------- /dist/app/img/logo-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-mobile.svg -------------------------------------------------------------------------------- /dist/app/img/logo-speech-assistants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-speech-assistants.png -------------------------------------------------------------------------------- /dist/app/img/logo-speech-assistants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-speech-assistants.svg -------------------------------------------------------------------------------- /dist/app/img/logo-wifiplug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-wifiplug.png -------------------------------------------------------------------------------- /dist/app/img/logo-wifiplug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-wifiplug.svg -------------------------------------------------------------------------------- /dist/app/img/logo-z-wave-z-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-z-wave-z-only.png -------------------------------------------------------------------------------- /dist/app/img/logo-zigbee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-zigbee.svg -------------------------------------------------------------------------------- /dist/app/img/logo-zwave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/logo-zwave.svg -------------------------------------------------------------------------------- /dist/app/img/small_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/small_logo.svg -------------------------------------------------------------------------------- /dist/app/img/smartphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/smartphone.png -------------------------------------------------------------------------------- /dist/app/img/smartstart/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/smartstart/qrcode.png -------------------------------------------------------------------------------- /dist/app/img/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome.png -------------------------------------------------------------------------------- /dist/app/img/welcome/automation_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/automation_view.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/elements.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/elements.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/elements_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/elements_mobile.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/events.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/events.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/events_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/events_mobile.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/menu_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/menu_view.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/menu_view_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/menu_view_mobile.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/overview.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/overview_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/overview_mobile.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/room_view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/room_view.jpg -------------------------------------------------------------------------------- /dist/app/img/welcome/room_view_mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/img/welcome/room_view_mobile.jpg -------------------------------------------------------------------------------- /dist/app/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/info.json -------------------------------------------------------------------------------- /dist/app/info.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/info.json.gz -------------------------------------------------------------------------------- /dist/app/js/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/js/build.js -------------------------------------------------------------------------------- /dist/app/js/build.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/js/build.js.gz -------------------------------------------------------------------------------- /dist/app/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/js/config.js -------------------------------------------------------------------------------- /dist/app/js/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/js/icons.js -------------------------------------------------------------------------------- /dist/app/js/icons.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/js/icons.js.gz -------------------------------------------------------------------------------- /dist/app/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/js/notifications.js -------------------------------------------------------------------------------- /dist/app/js/notifications.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/js/notifications.js.gz -------------------------------------------------------------------------------- /dist/app/lang/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/cn.json -------------------------------------------------------------------------------- /dist/app/lang/cn.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/cn.json.gz -------------------------------------------------------------------------------- /dist/app/lang/cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/cz.json -------------------------------------------------------------------------------- /dist/app/lang/cz.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/cz.json.gz -------------------------------------------------------------------------------- /dist/app/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/de.json -------------------------------------------------------------------------------- /dist/app/lang/de.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/de.json.gz -------------------------------------------------------------------------------- /dist/app/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/en.json -------------------------------------------------------------------------------- /dist/app/lang/en.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/en.json.gz -------------------------------------------------------------------------------- /dist/app/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/es.json -------------------------------------------------------------------------------- /dist/app/lang/es.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/es.json.gz -------------------------------------------------------------------------------- /dist/app/lang/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/fi.json -------------------------------------------------------------------------------- /dist/app/lang/fi.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/fi.json.gz -------------------------------------------------------------------------------- /dist/app/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/fr.json -------------------------------------------------------------------------------- /dist/app/lang/fr.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/fr.json.gz -------------------------------------------------------------------------------- /dist/app/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/it.json -------------------------------------------------------------------------------- /dist/app/lang/it.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/it.json.gz -------------------------------------------------------------------------------- /dist/app/lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/pt.json -------------------------------------------------------------------------------- /dist/app/lang/pt.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/pt.json.gz -------------------------------------------------------------------------------- /dist/app/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/ru.json -------------------------------------------------------------------------------- /dist/app/lang/ru.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/ru.json.gz -------------------------------------------------------------------------------- /dist/app/lang/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/sk.json -------------------------------------------------------------------------------- /dist/app/lang/sk.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/sk.json.gz -------------------------------------------------------------------------------- /dist/app/lang/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/sv.json -------------------------------------------------------------------------------- /dist/app/lang/sv.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/app/lang/sv.json.gz -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /dist/favicon.ico.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/favicon.ico.gz -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/storage/data/devices_enocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/data/devices_enocean.json -------------------------------------------------------------------------------- /dist/storage/data/devices_enocean.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/data/devices_enocean.json.gz -------------------------------------------------------------------------------- /dist/storage/data/dsk-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/data/dsk-collection.json -------------------------------------------------------------------------------- /dist/storage/data/dsk-collection.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/data/dsk-collection.json.gz -------------------------------------------------------------------------------- /dist/storage/img/enocean/devices/EKCS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/enocean/devices/EKCS.jpg -------------------------------------------------------------------------------- /dist/storage/img/enocean/devices/EOSC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/enocean/devices/EOSC.jpg -------------------------------------------------------------------------------- /dist/storage/img/enocean/devices/EOSW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/enocean/devices/EOSW.jpg -------------------------------------------------------------------------------- /dist/storage/img/enocean/devices/FTKB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/enocean/devices/FTKB.jpg -------------------------------------------------------------------------------- /dist/storage/img/enocean/vendors/AWAG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/enocean/vendors/AWAG.jpg -------------------------------------------------------------------------------- /dist/storage/img/enocean/vendors/peha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/enocean/vendors/peha.gif -------------------------------------------------------------------------------- /dist/storage/img/icons/alarm-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/alarm-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/alarm-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/alarm-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/alarm.png -------------------------------------------------------------------------------- /dist/storage/img/icons/barometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/barometer.png -------------------------------------------------------------------------------- /dist/storage/img/icons/battery-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/battery-0.png -------------------------------------------------------------------------------- /dist/storage/img/icons/battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/battery-100.png -------------------------------------------------------------------------------- /dist/storage/img/icons/battery-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/battery-20.png -------------------------------------------------------------------------------- /dist/storage/img/icons/battery-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/battery-30.png -------------------------------------------------------------------------------- /dist/storage/img/icons/battery-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/battery-50.png -------------------------------------------------------------------------------- /dist/storage/img/icons/battery-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/battery-80.png -------------------------------------------------------------------------------- /dist/storage/img/icons/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/battery.png -------------------------------------------------------------------------------- /dist/storage/img/icons/blind-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/blind-down.png -------------------------------------------------------------------------------- /dist/storage/img/icons/blind-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/blind-half.png -------------------------------------------------------------------------------- /dist/storage/img/icons/blind-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/blind-up.png -------------------------------------------------------------------------------- /dist/storage/img/icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/camera.png -------------------------------------------------------------------------------- /dist/storage/img/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/cancel.png -------------------------------------------------------------------------------- /dist/storage/img/icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/caution.png -------------------------------------------------------------------------------- /dist/storage/img/icons/co-alarm-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/co-alarm-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/co-alarm-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/co-alarm-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/co.png -------------------------------------------------------------------------------- /dist/storage/img/icons/coo-alarm-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/coo-alarm-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/coo-alarm-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/coo-alarm-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/coo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/coo.png -------------------------------------------------------------------------------- /dist/storage/img/icons/cooling-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/cooling-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/cooling-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/cooling-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/dimmer-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/dimmer-half.png -------------------------------------------------------------------------------- /dist/storage/img/icons/dimmer-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/dimmer-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/dimmer-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/dimmer-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/door-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/door-closed.png -------------------------------------------------------------------------------- /dist/storage/img/icons/door-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/door-open.png -------------------------------------------------------------------------------- /dist/storage/img/icons/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/energy.png -------------------------------------------------------------------------------- /dist/storage/img/icons/event-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/event-device.png -------------------------------------------------------------------------------- /dist/storage/img/icons/event-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/event-module.png -------------------------------------------------------------------------------- /dist/storage/img/icons/fan-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/fan-half.png -------------------------------------------------------------------------------- /dist/storage/img/icons/fan-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/fan-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/fan-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/fan-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/flood-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/flood-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/flood-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/flood-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/hold.png -------------------------------------------------------------------------------- /dist/storage/img/icons/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/humidity.png -------------------------------------------------------------------------------- /dist/storage/img/icons/lock-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/lock-closed.png -------------------------------------------------------------------------------- /dist/storage/img/icons/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/lock-open.png -------------------------------------------------------------------------------- /dist/storage/img/icons/lock-opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/lock-opened.png -------------------------------------------------------------------------------- /dist/storage/img/icons/luminosity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/luminosity.png -------------------------------------------------------------------------------- /dist/storage/img/icons/meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/meter.png -------------------------------------------------------------------------------- /dist/storage/img/icons/motion-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/motion-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/motion-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/motion-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/new.png -------------------------------------------------------------------------------- /dist/storage/img/icons/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/placeholder.png -------------------------------------------------------------------------------- /dist/storage/img/icons/press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/press.png -------------------------------------------------------------------------------- /dist/storage/img/icons/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/rain.png -------------------------------------------------------------------------------- /dist/storage/img/icons/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/release.png -------------------------------------------------------------------------------- /dist/storage/img/icons/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/scene.png -------------------------------------------------------------------------------- /dist/storage/img/icons/security-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/security-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/security-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/security-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/siren-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/siren-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/siren-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/siren-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/smoke-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/smoke-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/smoke-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/smoke-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/smoke.png -------------------------------------------------------------------------------- /dist/storage/img/icons/swipe-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/swipe-down.png -------------------------------------------------------------------------------- /dist/storage/img/icons/swipe-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/swipe-left.png -------------------------------------------------------------------------------- /dist/storage/img/icons/swipe-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/swipe-right.png -------------------------------------------------------------------------------- /dist/storage/img/icons/swipe-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/swipe-up.png -------------------------------------------------------------------------------- /dist/storage/img/icons/switch-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/switch-blue.png -------------------------------------------------------------------------------- /dist/storage/img/icons/switch-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/switch-control.png -------------------------------------------------------------------------------- /dist/storage/img/icons/switch-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/switch-green.png -------------------------------------------------------------------------------- /dist/storage/img/icons/switch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/switch-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/switch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/switch-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/switch-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/switch-red.png -------------------------------------------------------------------------------- /dist/storage/img/icons/tamper-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/tamper-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/tamper-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/tamper-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/tap.png -------------------------------------------------------------------------------- /dist/storage/img/icons/temper_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/temper_off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/temper_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/temper_on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/temperature.png -------------------------------------------------------------------------------- /dist/storage/img/icons/thermostat-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/thermostat-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/thermostat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/thermostat.png -------------------------------------------------------------------------------- /dist/storage/img/icons/ultraviolet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/ultraviolet.png -------------------------------------------------------------------------------- /dist/storage/img/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/user.png -------------------------------------------------------------------------------- /dist/storage/img/icons/valve-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/valve-off.png -------------------------------------------------------------------------------- /dist/storage/img/icons/valve-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/valve-on.png -------------------------------------------------------------------------------- /dist/storage/img/icons/window-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/window-closed.png -------------------------------------------------------------------------------- /dist/storage/img/icons/window-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/window-down.png -------------------------------------------------------------------------------- /dist/storage/img/icons/window-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/window-half.png -------------------------------------------------------------------------------- /dist/storage/img/icons/window-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/window-open.png -------------------------------------------------------------------------------- /dist/storage/img/icons/window-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/icons/window-up.png -------------------------------------------------------------------------------- /dist/storage/img/logo/app-logo-popp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/logo/app-logo-popp.png -------------------------------------------------------------------------------- /dist/storage/img/logo/app-logo-wd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/logo/app-logo-wd.png -------------------------------------------------------------------------------- /dist/storage/img/placeholder-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/placeholder-img.png -------------------------------------------------------------------------------- /dist/storage/img/rooms/_add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/_add-icon.png -------------------------------------------------------------------------------- /dist/storage/img/rooms/_unassigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/_unassigned.png -------------------------------------------------------------------------------- /dist/storage/img/rooms/add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/add-icon.png -------------------------------------------------------------------------------- /dist/storage/img/rooms/bathroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/bathroom.jpg -------------------------------------------------------------------------------- /dist/storage/img/rooms/kitchen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/kitchen.jpg -------------------------------------------------------------------------------- /dist/storage/img/rooms/living_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/living_room.jpg -------------------------------------------------------------------------------- /dist/storage/img/rooms/new_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/new_room.jpg -------------------------------------------------------------------------------- /dist/storage/img/rooms/sleeping_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/sleeping_room.jpg -------------------------------------------------------------------------------- /dist/storage/img/rooms/unassigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/rooms/unassigned.png -------------------------------------------------------------------------------- /dist/storage/img/slider/Alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/slider/Alexa.png -------------------------------------------------------------------------------- /dist/storage/img/slider/HTTPDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/slider/HTTPDevice.png -------------------------------------------------------------------------------- /dist/storage/img/slider/IntChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/slider/IntChart.png -------------------------------------------------------------------------------- /dist/storage/img/upload/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/dist/storage/img/upload/csv.png -------------------------------------------------------------------------------- /dist/user/icons/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/user/skins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docstemplates/_class.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/_class.mustache -------------------------------------------------------------------------------- /docstemplates/_file.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/_file.mustache -------------------------------------------------------------------------------- /docstemplates/_function.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/_function.mustache -------------------------------------------------------------------------------- /docstemplates/class.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/class.mustache -------------------------------------------------------------------------------- /docstemplates/file.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/file.mustache -------------------------------------------------------------------------------- /docstemplates/function.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/function.mustache -------------------------------------------------------------------------------- /docstemplates/index.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/index.mustache -------------------------------------------------------------------------------- /docstemplates/overview.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/docstemplates/overview.mustache -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/index.html -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/package.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/release.sh -------------------------------------------------------------------------------- /storage/data/devices_enocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/data/devices_enocean.json -------------------------------------------------------------------------------- /storage/data/dsk-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/data/dsk-collection.json -------------------------------------------------------------------------------- /storage/help/interview.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/help/interview.de.html -------------------------------------------------------------------------------- /storage/help/interview.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/help/interview.en.html -------------------------------------------------------------------------------- /storage/help/secure_login.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/help/secure_login.de.html -------------------------------------------------------------------------------- /storage/help/secure_login.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/help/secure_login.en.html -------------------------------------------------------------------------------- /storage/img/enocean/devices/EKCS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/EKCS.jpg -------------------------------------------------------------------------------- /storage/img/enocean/devices/EOSC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/EOSC.jpg -------------------------------------------------------------------------------- /storage/img/enocean/devices/EOSW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/EOSW.jpg -------------------------------------------------------------------------------- /storage/img/enocean/devices/FABH65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/FABH65.jpg -------------------------------------------------------------------------------- /storage/img/enocean/devices/FTKB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/FTKB.jpg -------------------------------------------------------------------------------- /storage/img/enocean/devices/FU-BLS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/FU-BLS.jpg -------------------------------------------------------------------------------- /storage/img/enocean/devices/PTM250.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/PTM250.gif -------------------------------------------------------------------------------- /storage/img/enocean/devices/PTM250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/PTM250.jpg -------------------------------------------------------------------------------- /storage/img/enocean/devices/STM250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/devices/STM250.jpg -------------------------------------------------------------------------------- /storage/img/enocean/vendors/AWAG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/vendors/AWAG.jpg -------------------------------------------------------------------------------- /storage/img/enocean/vendors/Hoppe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/vendors/Hoppe.jpg -------------------------------------------------------------------------------- /storage/img/enocean/vendors/Hubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/vendors/Hubble.png -------------------------------------------------------------------------------- /storage/img/enocean/vendors/afriso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/vendors/afriso.png -------------------------------------------------------------------------------- /storage/img/enocean/vendors/nodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/vendors/nodon.png -------------------------------------------------------------------------------- /storage/img/enocean/vendors/peha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/vendors/peha.gif -------------------------------------------------------------------------------- /storage/img/enocean/vendors/rehau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/enocean/vendors/rehau.png -------------------------------------------------------------------------------- /storage/img/icons/alarm-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/alarm-off.png -------------------------------------------------------------------------------- /storage/img/icons/alarm-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/alarm-on.png -------------------------------------------------------------------------------- /storage/img/icons/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/alarm.png -------------------------------------------------------------------------------- /storage/img/icons/barometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/barometer.png -------------------------------------------------------------------------------- /storage/img/icons/battery-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/battery-0.png -------------------------------------------------------------------------------- /storage/img/icons/battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/battery-100.png -------------------------------------------------------------------------------- /storage/img/icons/battery-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/battery-20.png -------------------------------------------------------------------------------- /storage/img/icons/battery-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/battery-30.png -------------------------------------------------------------------------------- /storage/img/icons/battery-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/battery-50.png -------------------------------------------------------------------------------- /storage/img/icons/battery-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/battery-80.png -------------------------------------------------------------------------------- /storage/img/icons/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/battery.png -------------------------------------------------------------------------------- /storage/img/icons/blind-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/blind-down.png -------------------------------------------------------------------------------- /storage/img/icons/blind-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/blind-half.png -------------------------------------------------------------------------------- /storage/img/icons/blind-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/blind-up.png -------------------------------------------------------------------------------- /storage/img/icons/burglar-alarm-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/burglar-alarm-on.png -------------------------------------------------------------------------------- /storage/img/icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/camera.png -------------------------------------------------------------------------------- /storage/img/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/cancel.png -------------------------------------------------------------------------------- /storage/img/icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/caution.png -------------------------------------------------------------------------------- /storage/img/icons/co-alarm-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/co-alarm-off.png -------------------------------------------------------------------------------- /storage/img/icons/co-alarm-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/co-alarm-on.png -------------------------------------------------------------------------------- /storage/img/icons/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/co.png -------------------------------------------------------------------------------- /storage/img/icons/coo-alarm-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/coo-alarm-off.png -------------------------------------------------------------------------------- /storage/img/icons/coo-alarm-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/coo-alarm-on.png -------------------------------------------------------------------------------- /storage/img/icons/coo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/coo.png -------------------------------------------------------------------------------- /storage/img/icons/cooling-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/cooling-off.png -------------------------------------------------------------------------------- /storage/img/icons/cooling-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/cooling-on.png -------------------------------------------------------------------------------- /storage/img/icons/dimmer-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/dimmer-half.png -------------------------------------------------------------------------------- /storage/img/icons/dimmer-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/dimmer-off.png -------------------------------------------------------------------------------- /storage/img/icons/dimmer-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/dimmer-on.png -------------------------------------------------------------------------------- /storage/img/icons/door-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/door-closed.png -------------------------------------------------------------------------------- /storage/img/icons/door-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/door-open.png -------------------------------------------------------------------------------- /storage/img/icons/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/energy.png -------------------------------------------------------------------------------- /storage/img/icons/event-device-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/event-device-off.png -------------------------------------------------------------------------------- /storage/img/icons/event-device-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/event-device-on.png -------------------------------------------------------------------------------- /storage/img/icons/event-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/event-device.png -------------------------------------------------------------------------------- /storage/img/icons/event-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/event-module.png -------------------------------------------------------------------------------- /storage/img/icons/fan-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/fan-half.png -------------------------------------------------------------------------------- /storage/img/icons/fan-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/fan-off.png -------------------------------------------------------------------------------- /storage/img/icons/fan-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/fan-on.png -------------------------------------------------------------------------------- /storage/img/icons/flood-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/flood-off.png -------------------------------------------------------------------------------- /storage/img/icons/flood-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/flood-on.png -------------------------------------------------------------------------------- /storage/img/icons/hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/hold.png -------------------------------------------------------------------------------- /storage/img/icons/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/humidity.png -------------------------------------------------------------------------------- /storage/img/icons/lock-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/lock-closed.png -------------------------------------------------------------------------------- /storage/img/icons/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/lock-open.png -------------------------------------------------------------------------------- /storage/img/icons/lock-opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/lock-opened.png -------------------------------------------------------------------------------- /storage/img/icons/luminosity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/luminosity.png -------------------------------------------------------------------------------- /storage/img/icons/meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/meter.png -------------------------------------------------------------------------------- /storage/img/icons/motion-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/motion-off.png -------------------------------------------------------------------------------- /storage/img/icons/motion-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/motion-on.png -------------------------------------------------------------------------------- /storage/img/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/new.png -------------------------------------------------------------------------------- /storage/img/icons/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/placeholder.png -------------------------------------------------------------------------------- /storage/img/icons/press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/press.png -------------------------------------------------------------------------------- /storage/img/icons/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/rain.png -------------------------------------------------------------------------------- /storage/img/icons/release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/release.png -------------------------------------------------------------------------------- /storage/img/icons/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/scene.png -------------------------------------------------------------------------------- /storage/img/icons/security-alarmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/security-alarmed.png -------------------------------------------------------------------------------- /storage/img/icons/security-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/security-off.png -------------------------------------------------------------------------------- /storage/img/icons/security-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/security-on.png -------------------------------------------------------------------------------- /storage/img/icons/security-pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/security-pending.png -------------------------------------------------------------------------------- /storage/img/icons/siren-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/siren-off.png -------------------------------------------------------------------------------- /storage/img/icons/siren-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/siren-on.png -------------------------------------------------------------------------------- /storage/img/icons/smoke-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/smoke-off.png -------------------------------------------------------------------------------- /storage/img/icons/smoke-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/smoke-on.png -------------------------------------------------------------------------------- /storage/img/icons/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/smoke.png -------------------------------------------------------------------------------- /storage/img/icons/swipe-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/swipe-down.png -------------------------------------------------------------------------------- /storage/img/icons/swipe-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/swipe-left.png -------------------------------------------------------------------------------- /storage/img/icons/swipe-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/swipe-right.png -------------------------------------------------------------------------------- /storage/img/icons/swipe-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/swipe-up.png -------------------------------------------------------------------------------- /storage/img/icons/switch-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/switch-blue.png -------------------------------------------------------------------------------- /storage/img/icons/switch-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/switch-control.png -------------------------------------------------------------------------------- /storage/img/icons/switch-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/switch-green.png -------------------------------------------------------------------------------- /storage/img/icons/switch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/switch-off.png -------------------------------------------------------------------------------- /storage/img/icons/switch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/switch-on.png -------------------------------------------------------------------------------- /storage/img/icons/switch-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/switch-red.png -------------------------------------------------------------------------------- /storage/img/icons/tamper-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/tamper-off.png -------------------------------------------------------------------------------- /storage/img/icons/tamper-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/tamper-on.png -------------------------------------------------------------------------------- /storage/img/icons/tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/tap.png -------------------------------------------------------------------------------- /storage/img/icons/temper_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/temper_off.png -------------------------------------------------------------------------------- /storage/img/icons/temper_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/temper_on.png -------------------------------------------------------------------------------- /storage/img/icons/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/temperature.png -------------------------------------------------------------------------------- /storage/img/icons/thermostat-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/thermostat-off.png -------------------------------------------------------------------------------- /storage/img/icons/thermostat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/thermostat.png -------------------------------------------------------------------------------- /storage/img/icons/ultraviolet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/ultraviolet.png -------------------------------------------------------------------------------- /storage/img/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/user.png -------------------------------------------------------------------------------- /storage/img/icons/valve-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/valve-off.png -------------------------------------------------------------------------------- /storage/img/icons/valve-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/valve-on.png -------------------------------------------------------------------------------- /storage/img/icons/window-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/window-closed.png -------------------------------------------------------------------------------- /storage/img/icons/window-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/window-down.png -------------------------------------------------------------------------------- /storage/img/icons/window-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/window-half.png -------------------------------------------------------------------------------- /storage/img/icons/window-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/window-open.png -------------------------------------------------------------------------------- /storage/img/icons/window-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/icons/window-up.png -------------------------------------------------------------------------------- /storage/img/logo/_app-logo-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/logo/_app-logo-default.png -------------------------------------------------------------------------------- /storage/img/logo/app-logo-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/logo/app-logo-default.png -------------------------------------------------------------------------------- /storage/img/logo/app-logo-popp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/logo/app-logo-popp.png -------------------------------------------------------------------------------- /storage/img/logo/app-logo-wd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/logo/app-logo-wd.png -------------------------------------------------------------------------------- /storage/img/placeholder-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/placeholder-img.png -------------------------------------------------------------------------------- /storage/img/rooms/_add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/_add-icon.png -------------------------------------------------------------------------------- /storage/img/rooms/_unassigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/_unassigned.png -------------------------------------------------------------------------------- /storage/img/rooms/add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/add-icon.png -------------------------------------------------------------------------------- /storage/img/rooms/bathroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/bathroom.jpg -------------------------------------------------------------------------------- /storage/img/rooms/kitchen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/kitchen.jpg -------------------------------------------------------------------------------- /storage/img/rooms/living_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/living_room.jpg -------------------------------------------------------------------------------- /storage/img/rooms/new_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/new_room.jpg -------------------------------------------------------------------------------- /storage/img/rooms/sleeping_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/sleeping_room.jpg -------------------------------------------------------------------------------- /storage/img/rooms/unassigned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/rooms/unassigned.png -------------------------------------------------------------------------------- /storage/img/slider/Alexa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/Alexa.png -------------------------------------------------------------------------------- /storage/img/slider/ClimateControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/ClimateControl.png -------------------------------------------------------------------------------- /storage/img/slider/CustomUserCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/CustomUserCode.png -------------------------------------------------------------------------------- /storage/img/slider/HTTPDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/HTTPDevice.png -------------------------------------------------------------------------------- /storage/img/slider/ImportRemoteHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/ImportRemoteHA.png -------------------------------------------------------------------------------- /storage/img/slider/IntChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/IntChart.png -------------------------------------------------------------------------------- /storage/img/slider/SecurityModule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/SecurityModule.png -------------------------------------------------------------------------------- /storage/img/slider/ToggleDevices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/slider/ToggleDevices.png -------------------------------------------------------------------------------- /storage/img/upload/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/upload/csv.png -------------------------------------------------------------------------------- /storage/img/zwave/zwavevendors/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/storage/img/zwave/zwavevendors/ge.png -------------------------------------------------------------------------------- /vendor/alertify/alertify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/alertify/alertify.js -------------------------------------------------------------------------------- /vendor/alertify/alertify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/alertify/alertify.min.js -------------------------------------------------------------------------------- /vendor/alertify/ngAlertify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/alertify/ngAlertify.js -------------------------------------------------------------------------------- /vendor/alpaca/1.1.3/alpaca.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/alpaca/1.1.3/alpaca.min.js -------------------------------------------------------------------------------- /vendor/alpaca/1.5.13/alpaca.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/alpaca/1.5.13/alpaca.min.js -------------------------------------------------------------------------------- /vendor/angular/angular-1.2.28/version.txt: -------------------------------------------------------------------------------- 1 | 1.2.28 -------------------------------------------------------------------------------- /vendor/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /vendor/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/chartjs/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/chartjs/Chart.js -------------------------------------------------------------------------------- /vendor/chartjs/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/chartjs/Chart.min.js -------------------------------------------------------------------------------- /vendor/handlebars/handlebars-v3.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/handlebars/handlebars-v3.0.3.js -------------------------------------------------------------------------------- /vendor/handlebars/handlebars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/handlebars/handlebars.min.js -------------------------------------------------------------------------------- /vendor/highlight/highlight-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/highlight/highlight-textarea.js -------------------------------------------------------------------------------- /vendor/highlight/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/highlight/highlight.pack.js -------------------------------------------------------------------------------- /vendor/jquery/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/jquery/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /vendor/jquery/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/jquery/jquery-ui.min.js -------------------------------------------------------------------------------- /vendor/knob/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/knob/jquery.knob.js -------------------------------------------------------------------------------- /vendor/knob/jquery.knob.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/knob/jquery.knob.min.js -------------------------------------------------------------------------------- /vendor/qrcode/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/qrcode/qrcode.js -------------------------------------------------------------------------------- /vendor/qrcode/qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/qrcode/qrcode.min.js -------------------------------------------------------------------------------- /vendor/qrcode/qrcode.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/qrcode/qrcode.min.js.map -------------------------------------------------------------------------------- /vendor/qrcode_reader/qr_packed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/qrcode_reader/qr_packed.js -------------------------------------------------------------------------------- /vendor/scheduler/jq.schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/scheduler/jq.schedule.js -------------------------------------------------------------------------------- /vendor/upload/FileAPI.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/upload/FileAPI.flash.swf -------------------------------------------------------------------------------- /vendor/upload/FileAPI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/upload/FileAPI.min.js -------------------------------------------------------------------------------- /vendor/upload/angular-file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Z-Wave-Me/zwave-smarthome/HEAD/vendor/upload/angular-file-upload.js --------------------------------------------------------------------------------