├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src │ ├── dev │ │ ├── AndroidManifest.xml │ │ └── google-services.json │ ├── free │ │ ├── AndroidManifest.xml │ │ └── google-services.json │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── nl │ │ │ │ └── hnogames │ │ │ │ └── domoticz │ │ │ │ ├── BeaconSettingsActivity.java │ │ │ │ ├── BluetoothSettingsActivity.java │ │ │ │ ├── CameraActivity.java │ │ │ │ ├── EventsActivity.java │ │ │ │ ├── GeoSettingsActivity.java │ │ │ │ ├── GraphActivity.java │ │ │ │ ├── LogsActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── NFCSettingsActivity.java │ │ │ │ ├── NotificationHistoryActivity.java │ │ │ │ ├── NotificationSettingsActivity.java │ │ │ │ ├── PlanActivity.java │ │ │ │ ├── QRCodeCaptureActivity.java │ │ │ │ ├── QRCodeSettingsActivity.java │ │ │ │ ├── ServerListSettingsActivity.java │ │ │ │ ├── ServerSettingsActivity.java │ │ │ │ ├── SettingsActivity.java │ │ │ │ ├── SpeechSettingsActivity.java │ │ │ │ ├── TempGraphsActivity.java │ │ │ │ ├── UpdateActivity.java │ │ │ │ ├── UserVariablesActivity.java │ │ │ │ ├── WifiSettingsActivity.java │ │ │ │ ├── adapters │ │ │ │ ├── BeaconAdapter.java │ │ │ │ ├── BluetoothAdapter.java │ │ │ │ ├── CamerasAdapter.java │ │ │ │ ├── DashboardAdapter.java │ │ │ │ ├── EventsAdapter.java │ │ │ │ ├── FlavorRecyclerAdapter.java │ │ │ │ ├── LocationAdapter.java │ │ │ │ ├── LogAdapter.java │ │ │ │ ├── NFCAdapter.java │ │ │ │ ├── NotificationsAdapter.java │ │ │ │ ├── PlansAdapter.java │ │ │ │ ├── QRCodeAdapter.java │ │ │ │ ├── SceneAdapter.java │ │ │ │ ├── ServerAdapter.java │ │ │ │ ├── SmallPlansAdapter.java │ │ │ │ ├── SpeechAdapter.java │ │ │ │ ├── SwitchesAdapter.java │ │ │ │ ├── TemperatureAdapter.java │ │ │ │ ├── TemperatureWidgetAdapter.java │ │ │ │ ├── TimersAdapter.java │ │ │ │ ├── UserVariablesAdapter.java │ │ │ │ ├── UtilityAdapter.java │ │ │ │ ├── WeatherAdapter.java │ │ │ │ ├── WidgetsAdapter.java │ │ │ │ └── WifiAdapter.java │ │ │ │ ├── ads │ │ │ │ ├── NativeTemplateStyle.java │ │ │ │ └── TemplateView.java │ │ │ │ ├── app │ │ │ │ ├── AppCompatAssistActivity.java │ │ │ │ ├── AppCompatPermissionsActivity.java │ │ │ │ ├── AppController.java │ │ │ │ ├── DomoticzCardFragment.java │ │ │ │ ├── DomoticzDashboardFragment.java │ │ │ │ ├── DomoticzPlansFragment.java │ │ │ │ ├── DomoticzRecyclerFragment.java │ │ │ │ └── RefreshFragment.java │ │ │ │ ├── cache │ │ │ │ ├── AppDatabase.java │ │ │ │ ├── JsonCache.java │ │ │ │ ├── JsonCacheDao.java │ │ │ │ └── JsonCacheManager.java │ │ │ │ ├── containers │ │ │ │ ├── BeaconInfo.java │ │ │ │ ├── BluetoothInfo.java │ │ │ │ ├── LocationInfo.java │ │ │ │ ├── NFCInfo.java │ │ │ │ ├── NotificationInfo.java │ │ │ │ ├── QRCodeInfo.java │ │ │ │ ├── SpeechInfo.java │ │ │ │ ├── UserInfo.java │ │ │ │ └── WifiInfo.java │ │ │ │ ├── fragments │ │ │ │ ├── Camera.java │ │ │ │ ├── Cameras.java │ │ │ │ ├── Dashboard.java │ │ │ │ ├── Error.java │ │ │ │ ├── Events.java │ │ │ │ ├── Graph.java │ │ │ │ ├── Loading.java │ │ │ │ ├── Logs.java │ │ │ │ ├── MainPager.java │ │ │ │ ├── NotificationHistory.java │ │ │ │ ├── Plan.java │ │ │ │ ├── Plans.java │ │ │ │ ├── Scenes.java │ │ │ │ ├── Switches.java │ │ │ │ ├── TempGraphs.java │ │ │ │ ├── Temperature.java │ │ │ │ ├── TemperatureMainPager.java │ │ │ │ ├── UserVariables.java │ │ │ │ ├── Utilities.java │ │ │ │ ├── Weather.java │ │ │ │ └── Wizard.java │ │ │ │ ├── helpers │ │ │ │ ├── BasicAuthInterceptor.java │ │ │ │ ├── CustomIncomingMessageViewHolder.java │ │ │ │ ├── CustomOutcomingMessageViewHolder.java │ │ │ │ ├── DefaultHeadersInterceptor.java │ │ │ │ ├── ItemMoveAdapter.java │ │ │ │ ├── MarginItemDecoration.java │ │ │ │ ├── SimpleItemTouchHelperCallback.java │ │ │ │ ├── StaticHelper.java │ │ │ │ ├── TagDispatcher.java │ │ │ │ └── TagDispatcherBuilder.java │ │ │ │ ├── interfaces │ │ │ │ ├── BeaconClickListener.java │ │ │ │ ├── BluetoothClickListener.java │ │ │ │ ├── CameraClickListener.java │ │ │ │ ├── DomoticzFragmentListener.java │ │ │ │ ├── EventsClickListener.java │ │ │ │ ├── IDynamicProvider.java │ │ │ │ ├── LocationClickListener.java │ │ │ │ ├── NFCClickListener.java │ │ │ │ ├── OnDiscoveredTagListener.java │ │ │ │ ├── PlanClickListener.java │ │ │ │ ├── QRCodeClickListener.java │ │ │ │ ├── ScenesClickListener.java │ │ │ │ ├── ServerClickListener.java │ │ │ │ ├── SpeechClickListener.java │ │ │ │ ├── SubscriptionsListener.java │ │ │ │ ├── TemperatureClickListener.java │ │ │ │ ├── UserVariablesClickListener.java │ │ │ │ ├── UtilityClickListener.java │ │ │ │ ├── WeatherClickListener.java │ │ │ │ ├── WifiClickListener.java │ │ │ │ └── switchesClickListener.java │ │ │ │ ├── preference │ │ │ │ ├── AutoMultiSelectListPreference.java │ │ │ │ ├── EditTextIntegerPreference.java │ │ │ │ ├── NotificationPreferenceFragment.java │ │ │ │ ├── NotificationsMultiSelectListPreference.java │ │ │ │ ├── PreferenceFragment.java │ │ │ │ └── WearMultiSelectListPreference.java │ │ │ │ ├── service │ │ │ │ ├── AutoScreen.java │ │ │ │ ├── AutoService.java │ │ │ │ ├── BluetoothConnectionReceiver.java │ │ │ │ ├── BootUpReceiver.java │ │ │ │ ├── CustomControlService.java │ │ │ │ ├── FCMMessageInstanceService.java │ │ │ │ ├── GeofenceBroadcastReceiver.java │ │ │ │ ├── GeofenceTransitionsIntentService.java │ │ │ │ ├── LocationProviderChangedReceiver.java │ │ │ │ ├── NFCServiceActivity.java │ │ │ │ ├── RingtonePlayingService.java │ │ │ │ ├── StopAlarmButtonListener.java │ │ │ │ ├── TaskService.java │ │ │ │ ├── UpdateReceiver.java │ │ │ │ ├── WearMessageListenerService.java │ │ │ │ ├── WifiReceiver.java │ │ │ │ ├── WifiReceiverManager.java │ │ │ │ └── tiles │ │ │ │ │ ├── BeaconTileService.java │ │ │ │ │ ├── BluetoothTileService.java │ │ │ │ │ ├── GeofenceTileService.java │ │ │ │ │ ├── NFCTileService.java │ │ │ │ │ ├── QRCodeTileService.java │ │ │ │ │ ├── SpeechRecognitionTileService.java │ │ │ │ │ └── WifiTileService.java │ │ │ │ ├── ui │ │ │ │ ├── AddBeaconDialog.java │ │ │ │ ├── Backdrop │ │ │ │ │ ├── BackdropActions.java │ │ │ │ │ ├── BackdropContainer.java │ │ │ │ │ └── ToolbarIconClick.java │ │ │ │ ├── DeviceInfoDialog.java │ │ │ │ ├── FingerprintPasswordDialog.java │ │ │ │ ├── LevelIndicator.java │ │ │ │ ├── MjpegViewer │ │ │ │ │ ├── MjpegCallback.java │ │ │ │ │ ├── MjpegInputStream.java │ │ │ │ │ ├── MjpegView.java │ │ │ │ │ └── MjpegViewThread.java │ │ │ │ ├── MultiSelectionSpinner.java │ │ │ │ ├── NotificationInfoDialog.java │ │ │ │ ├── PasswordDialog.java │ │ │ │ ├── ProgressBarAnimation.java │ │ │ │ ├── RGBWWColorPickerDialog.java │ │ │ │ ├── SceneInfoDialog.java │ │ │ │ ├── ScheduledTemperatureDialog.java │ │ │ │ ├── ScoopSettingsActivity.java │ │ │ │ ├── SecurityPanelDialog.java │ │ │ │ ├── SendNotificationDialog.java │ │ │ │ ├── SimpleTextDialog.java │ │ │ │ ├── SortDialog.java │ │ │ │ ├── SunriseInfoDialog.java │ │ │ │ ├── SwitchDialog.java │ │ │ │ ├── SwitchInfoDialog.java │ │ │ │ ├── SwitchLogInfoDialog.java │ │ │ │ ├── SwitchTimerInfoDialog.java │ │ │ │ ├── TemperatureDialog.java │ │ │ │ ├── TemperatureInfoDialog.java │ │ │ │ ├── TextDialog.java │ │ │ │ ├── UtilitiesInfoDialog.java │ │ │ │ ├── VerticalScrollview.java │ │ │ │ ├── WWColorPickerDialog.java │ │ │ │ └── WeatherInfoDialog.java │ │ │ │ ├── utils │ │ │ │ ├── AnimationUtil.java │ │ │ │ ├── BitmapLruCache.java │ │ │ │ ├── CameraUtil.java │ │ │ │ ├── DeviceUtils.java │ │ │ │ ├── GCMUtils.java │ │ │ │ ├── GeoUtils.java │ │ │ │ ├── MaterialColorPalette.java │ │ │ │ ├── NotificationUtil.java │ │ │ │ ├── PermissionsUtil.java │ │ │ │ ├── PicassoUtil.java │ │ │ │ ├── SerializableManager.java │ │ │ │ ├── SharedPrefUtil.java │ │ │ │ ├── TalkBackUtil.java │ │ │ │ ├── UsefulBits.java │ │ │ │ ├── ViewUtils.java │ │ │ │ └── WidgetUtils.java │ │ │ │ ├── welcome │ │ │ │ ├── SetupServerSettings.java │ │ │ │ ├── WelcomePage2.java │ │ │ │ ├── WelcomePage3.java │ │ │ │ ├── WelcomePage4.java │ │ │ │ └── WelcomeViewActivity.java │ │ │ │ └── widgets │ │ │ │ ├── SmallTempWidgetConfigurationActivity.java │ │ │ │ ├── SmallWidgetConfigurationActivity.java │ │ │ │ ├── WidgetConfigurationActivity.java │ │ │ │ ├── WidgetIntentService.java │ │ │ │ ├── WidgetProviderLarge.java │ │ │ │ ├── WidgetProviderSmall.java │ │ │ │ ├── WidgetProviderSmallTemp.java │ │ │ │ └── database │ │ │ │ ├── WidgetContract.java │ │ │ │ └── WidgetDbHelper.java │ │ ├── rename-translations.txt │ │ └── res │ │ │ ├── anim │ │ │ ├── enter_from_above.xml │ │ │ ├── enter_from_left.xml │ │ │ ├── enter_from_right.xml │ │ │ ├── exit_to_above.xml │ │ │ ├── exit_to_left.xml │ │ │ ├── exit_to_right.xml │ │ │ └── fade_in.xml │ │ │ ├── animator │ │ │ └── fade_in.xml │ │ │ ├── drawable-hdpi-v11 │ │ │ ├── bordershadowdark.xml │ │ │ └── domoticz_white.png │ │ │ ├── drawable-hdpi-v14 │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ └── appwidget_inner_pressed_r.9.png │ │ │ ├── drawable-hdpi │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_dark_bg_pressed.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ ├── appwidget_inner_pressed_r.9.png │ │ │ ├── baseline_add_white_18.png │ │ │ ├── baseline_add_white_24.png │ │ │ ├── baseline_add_white_36.png │ │ │ ├── baseline_add_white_48.png │ │ │ ├── baseline_addchart_white_18.png │ │ │ ├── baseline_addchart_white_24.png │ │ │ ├── baseline_addchart_white_36.png │ │ │ ├── baseline_addchart_white_48.png │ │ │ ├── baseline_bar_chart_black_18.png │ │ │ ├── baseline_bar_chart_black_24.png │ │ │ ├── baseline_bar_chart_black_36.png │ │ │ ├── baseline_bar_chart_black_48.png │ │ │ ├── baseline_bar_chart_white_18.png │ │ │ ├── baseline_bar_chart_white_24.png │ │ │ ├── baseline_bar_chart_white_36.png │ │ │ ├── baseline_bar_chart_white_48.png │ │ │ ├── baseline_bluetooth_black_18.webp │ │ │ ├── baseline_bluetooth_black_24.webp │ │ │ ├── baseline_bluetooth_black_36.webp │ │ │ ├── baseline_bluetooth_black_48.webp │ │ │ ├── baseline_camera_black_18.webp │ │ │ ├── baseline_camera_black_24.webp │ │ │ ├── baseline_camera_black_36.webp │ │ │ ├── baseline_camera_black_48.webp │ │ │ ├── baseline_close_white_18.png │ │ │ ├── baseline_close_white_24.png │ │ │ ├── baseline_close_white_36.png │ │ │ ├── baseline_close_white_48.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dashboard_white_18.png │ │ │ ├── baseline_dashboard_white_20.png │ │ │ ├── baseline_dashboard_white_24.png │ │ │ ├── baseline_dashboard_white_36.png │ │ │ ├── baseline_dashboard_white_48.png │ │ │ ├── baseline_date_range_white_18.png │ │ │ ├── baseline_date_range_white_24.png │ │ │ ├── baseline_date_range_white_36.png │ │ │ ├── baseline_date_range_white_48.png │ │ │ ├── baseline_delete_outline_white_18.png │ │ │ ├── baseline_delete_outline_white_20.png │ │ │ ├── baseline_delete_outline_white_24.png │ │ │ ├── baseline_delete_outline_white_36.png │ │ │ ├── baseline_delete_outline_white_48.png │ │ │ ├── baseline_directions_car_white_12.png │ │ │ ├── baseline_directions_car_white_18.png │ │ │ ├── baseline_directions_car_white_20.png │ │ │ ├── baseline_directions_car_white_24.png │ │ │ ├── baseline_directions_car_white_36.png │ │ │ ├── baseline_directions_car_white_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.png │ │ │ ├── baseline_dvr_black_48.webp │ │ │ ├── baseline_dvr_white_18.png │ │ │ ├── baseline_dvr_white_20.png │ │ │ ├── baseline_dvr_white_24.png │ │ │ ├── baseline_dvr_white_36.png │ │ │ ├── baseline_dvr_white_48.png │ │ │ ├── baseline_error_outline_black_24.webp │ │ │ ├── baseline_error_outline_white_18.png │ │ │ ├── baseline_error_outline_white_24.png │ │ │ ├── baseline_error_outline_white_36.png │ │ │ ├── baseline_error_outline_white_48.png │ │ │ ├── baseline_filter_list_white_18.png │ │ │ ├── baseline_filter_list_white_24.png │ │ │ ├── baseline_filter_list_white_36.png │ │ │ ├── baseline_filter_list_white_48.png │ │ │ ├── baseline_fingerprint_white_18.png │ │ │ ├── baseline_fingerprint_white_24.png │ │ │ ├── baseline_fingerprint_white_36.png │ │ │ ├── baseline_fingerprint_white_48.png │ │ │ ├── baseline_fullscreen_white_18.png │ │ │ ├── baseline_fullscreen_white_24.png │ │ │ ├── baseline_fullscreen_white_36.png │ │ │ ├── baseline_fullscreen_white_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_info_white_18.png │ │ │ ├── baseline_info_white_24.png │ │ │ ├── baseline_info_white_36.png │ │ │ ├── baseline_info_white_48.png │ │ │ ├── baseline_invert_colors_white_18.png │ │ │ ├── baseline_invert_colors_white_24.png │ │ │ ├── baseline_invert_colors_white_36.png │ │ │ ├── baseline_invert_colors_white_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_language_white_18.png │ │ │ ├── baseline_language_white_24.png │ │ │ ├── baseline_language_white_36.png │ │ │ ├── baseline_language_white_48.png │ │ │ ├── baseline_lightbulb_outline_white_18.png │ │ │ ├── baseline_lightbulb_outline_white_20.png │ │ │ ├── baseline_lightbulb_outline_white_24.png │ │ │ ├── baseline_lightbulb_outline_white_36.png │ │ │ ├── baseline_lightbulb_outline_white_48.png │ │ │ ├── baseline_mic_black_18.webp │ │ │ ├── baseline_mic_black_24.webp │ │ │ ├── baseline_mic_black_36.webp │ │ │ ├── baseline_mic_black_48.webp │ │ │ ├── baseline_mic_none_white_18.png │ │ │ ├── baseline_mic_none_white_24.png │ │ │ ├── baseline_mic_none_white_36.png │ │ │ ├── baseline_mic_none_white_48.png │ │ │ ├── baseline_mic_white_18.png │ │ │ ├── baseline_mic_white_24.png │ │ │ ├── baseline_mic_white_36.png │ │ │ ├── baseline_mic_white_48.png │ │ │ ├── baseline_my_location_white_18.png │ │ │ ├── baseline_my_location_white_24.png │ │ │ ├── baseline_my_location_white_36.png │ │ │ ├── baseline_my_location_white_48.png │ │ │ ├── baseline_network_wifi_black_18.png │ │ │ ├── baseline_network_wifi_black_20.png │ │ │ ├── baseline_network_wifi_black_24.png │ │ │ ├── baseline_network_wifi_black_36.png │ │ │ ├── baseline_network_wifi_black_48.png │ │ │ ├── baseline_nfc_white_18.png │ │ │ ├── baseline_nfc_white_24.png │ │ │ ├── baseline_nfc_white_36.png │ │ │ ├── baseline_nfc_white_48.png │ │ │ ├── baseline_notification_important_white_18.png │ │ │ ├── baseline_notification_important_white_24.png │ │ │ ├── baseline_notification_important_white_36.png │ │ │ ├── baseline_notification_important_white_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.png │ │ │ ├── baseline_opacity_black_36.png │ │ │ ├── baseline_opacity_black_48.webp │ │ │ ├── baseline_opacity_white_18.png │ │ │ ├── baseline_opacity_white_20.png │ │ │ ├── baseline_opacity_white_24.png │ │ │ ├── baseline_opacity_white_36.png │ │ │ ├── baseline_opacity_white_48.png │ │ │ ├── baseline_qr_code_scanner_white_18.png │ │ │ ├── baseline_qr_code_scanner_white_20.png │ │ │ ├── baseline_qr_code_scanner_white_24.png │ │ │ ├── baseline_qr_code_scanner_white_36.png │ │ │ ├── baseline_qr_code_scanner_white_48.png │ │ │ ├── baseline_search_white_18.png │ │ │ ├── baseline_search_white_24.png │ │ │ ├── baseline_search_white_36.png │ │ │ ├── baseline_search_white_48.png │ │ │ ├── baseline_send_white_18.png │ │ │ ├── baseline_send_white_24.png │ │ │ ├── baseline_send_white_36.png │ │ │ ├── baseline_send_white_48.png │ │ │ ├── baseline_settings_input_component_white_18.png │ │ │ ├── baseline_settings_input_component_white_24.png │ │ │ ├── baseline_settings_input_component_white_36.png │ │ │ ├── baseline_settings_input_component_white_48.png │ │ │ ├── baseline_settings_white_18.png │ │ │ ├── baseline_settings_white_24.png │ │ │ ├── baseline_settings_white_36.png │ │ │ ├── baseline_settings_white_48.png │ │ │ ├── baseline_share_white_18.png │ │ │ ├── baseline_share_white_24.png │ │ │ ├── baseline_share_white_36.png │ │ │ ├── baseline_share_white_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_store_white_18.png │ │ │ ├── baseline_store_white_24.png │ │ │ ├── baseline_store_white_36.png │ │ │ ├── baseline_store_white_48.png │ │ │ ├── baseline_sync_black_18.png │ │ │ ├── baseline_sync_black_20.png │ │ │ ├── baseline_sync_black_24.png │ │ │ ├── baseline_sync_black_36.png │ │ │ ├── baseline_sync_black_48.png │ │ │ ├── baseline_sync_white_18.png │ │ │ ├── baseline_sync_white_20.png │ │ │ ├── baseline_sync_white_24.png │ │ │ ├── baseline_sync_white_36.png │ │ │ ├── baseline_sync_white_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_watch_white_18.png │ │ │ ├── baseline_watch_white_24.png │ │ │ ├── baseline_watch_white_36.png │ │ │ ├── baseline_watch_white_48.png │ │ │ ├── baseline_wb_sunny_black_18.webp │ │ │ ├── baseline_wb_sunny_black_24.webp │ │ │ ├── baseline_wb_sunny_black_36.webp │ │ │ ├── baseline_wb_sunny_black_48.webp │ │ │ ├── baseline_whatshot_white_18.png │ │ │ ├── baseline_whatshot_white_24.png │ │ │ ├── baseline_whatshot_white_36.png │ │ │ ├── baseline_whatshot_white_48.png │ │ │ ├── baseline_wifi_tethering_black_18.webp │ │ │ ├── baseline_wifi_tethering_black_24.webp │ │ │ ├── baseline_wifi_tethering_black_36.webp │ │ │ ├── baseline_wifi_tethering_black_48.webp │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.webp │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_domoticz_logo.webp │ │ │ ├── ic_domoticz_logo_white.webp │ │ │ ├── ic_event.webp │ │ │ ├── ic_logs.png │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.webp │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.webp │ │ │ ├── ic_plus.webp │ │ │ ├── ic_repeat_black_18dp.webp │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.webp │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.webp │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.png │ │ │ ├── ic_weather.webp │ │ │ ├── ic_wizard.webp │ │ │ ├── outline_info_black_18.webp │ │ │ ├── outline_info_black_24.webp │ │ │ ├── outline_info_black_36.png │ │ │ ├── outline_info_black_48.webp │ │ │ ├── outline_widgets_white_18.png │ │ │ ├── outline_widgets_white_24.png │ │ │ ├── outline_widgets_white_36.png │ │ │ └── outline_widgets_white_48.png │ │ │ ├── drawable-ldpi │ │ │ ├── darkheader.webp │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.webp │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_domoticz_logo.webp │ │ │ ├── ic_domoticz_logo_white.webp │ │ │ ├── ic_event.png │ │ │ ├── ic_logs.webp │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.webp │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.webp │ │ │ ├── ic_plus.png │ │ │ ├── ic_scenes.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.webp │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.webp │ │ │ ├── ic_weather.png │ │ │ └── ic_wizard.webp │ │ │ ├── drawable-mdpi-v11 │ │ │ └── domoticz_white.png │ │ │ ├── drawable-mdpi-v14 │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ └── appwidget_inner_pressed_r.9.png │ │ │ ├── drawable-mdpi │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_dark_bg_pressed.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ ├── appwidget_inner_pressed_r.9.png │ │ │ ├── baseline_add_white_18.png │ │ │ ├── baseline_add_white_24.png │ │ │ ├── baseline_add_white_36.png │ │ │ ├── baseline_add_white_48.png │ │ │ ├── baseline_addchart_white_18.png │ │ │ ├── baseline_addchart_white_24.png │ │ │ ├── baseline_addchart_white_36.png │ │ │ ├── baseline_addchart_white_48.png │ │ │ ├── baseline_bar_chart_black_18.png │ │ │ ├── baseline_bar_chart_black_24.png │ │ │ ├── baseline_bar_chart_black_36.png │ │ │ ├── baseline_bar_chart_black_48.png │ │ │ ├── baseline_bar_chart_white_18.png │ │ │ ├── baseline_bar_chart_white_24.png │ │ │ ├── baseline_bar_chart_white_36.png │ │ │ ├── baseline_bar_chart_white_48.png │ │ │ ├── baseline_bluetooth_black_18.png │ │ │ ├── baseline_bluetooth_black_24.webp │ │ │ ├── baseline_bluetooth_black_36.webp │ │ │ ├── baseline_bluetooth_black_48.webp │ │ │ ├── baseline_camera_black_18.webp │ │ │ ├── baseline_camera_black_24.webp │ │ │ ├── baseline_camera_black_36.webp │ │ │ ├── baseline_camera_black_48.webp │ │ │ ├── baseline_close_white_18.png │ │ │ ├── baseline_close_white_24.png │ │ │ ├── baseline_close_white_36.png │ │ │ ├── baseline_close_white_48.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dashboard_white_18.png │ │ │ ├── baseline_dashboard_white_20.png │ │ │ ├── baseline_dashboard_white_24.png │ │ │ ├── baseline_dashboard_white_36.png │ │ │ ├── baseline_dashboard_white_48.png │ │ │ ├── baseline_date_range_white_18.png │ │ │ ├── baseline_date_range_white_24.png │ │ │ ├── baseline_date_range_white_36.png │ │ │ ├── baseline_date_range_white_48.png │ │ │ ├── baseline_delete_outline_white_18.png │ │ │ ├── baseline_delete_outline_white_20.png │ │ │ ├── baseline_delete_outline_white_24.png │ │ │ ├── baseline_delete_outline_white_36.png │ │ │ ├── baseline_delete_outline_white_48.png │ │ │ ├── baseline_directions_car_white_12.png │ │ │ ├── baseline_directions_car_white_18.png │ │ │ ├── baseline_directions_car_white_20.png │ │ │ ├── baseline_directions_car_white_24.png │ │ │ ├── baseline_directions_car_white_36.png │ │ │ ├── baseline_directions_car_white_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.png │ │ │ ├── baseline_dvr_black_48.png │ │ │ ├── baseline_dvr_white_18.png │ │ │ ├── baseline_dvr_white_20.png │ │ │ ├── baseline_dvr_white_24.png │ │ │ ├── baseline_dvr_white_36.png │ │ │ ├── baseline_dvr_white_48.png │ │ │ ├── baseline_error_outline_black_24.webp │ │ │ ├── baseline_error_outline_white_18.png │ │ │ ├── baseline_error_outline_white_24.png │ │ │ ├── baseline_error_outline_white_36.png │ │ │ ├── baseline_error_outline_white_48.png │ │ │ ├── baseline_filter_list_white_18.png │ │ │ ├── baseline_filter_list_white_24.png │ │ │ ├── baseline_filter_list_white_36.png │ │ │ ├── baseline_filter_list_white_48.png │ │ │ ├── baseline_fingerprint_white_18.png │ │ │ ├── baseline_fingerprint_white_24.png │ │ │ ├── baseline_fingerprint_white_36.png │ │ │ ├── baseline_fingerprint_white_48.png │ │ │ ├── baseline_fullscreen_white_18.png │ │ │ ├── baseline_fullscreen_white_24.png │ │ │ ├── baseline_fullscreen_white_36.png │ │ │ ├── baseline_fullscreen_white_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_info_white_18.png │ │ │ ├── baseline_info_white_24.png │ │ │ ├── baseline_info_white_36.png │ │ │ ├── baseline_info_white_48.png │ │ │ ├── baseline_invert_colors_white_18.png │ │ │ ├── baseline_invert_colors_white_24.png │ │ │ ├── baseline_invert_colors_white_36.png │ │ │ ├── baseline_invert_colors_white_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_language_white_18.png │ │ │ ├── baseline_language_white_24.png │ │ │ ├── baseline_language_white_36.png │ │ │ ├── baseline_language_white_48.png │ │ │ ├── baseline_lightbulb_outline_white_18.png │ │ │ ├── baseline_lightbulb_outline_white_20.png │ │ │ ├── baseline_lightbulb_outline_white_24.png │ │ │ ├── baseline_lightbulb_outline_white_36.png │ │ │ ├── baseline_lightbulb_outline_white_48.png │ │ │ ├── baseline_mic_black_18.webp │ │ │ ├── baseline_mic_black_24.webp │ │ │ ├── baseline_mic_black_36.webp │ │ │ ├── baseline_mic_black_48.webp │ │ │ ├── baseline_mic_none_white_18.png │ │ │ ├── baseline_mic_none_white_24.png │ │ │ ├── baseline_mic_none_white_36.png │ │ │ ├── baseline_mic_none_white_48.png │ │ │ ├── baseline_mic_white_18.png │ │ │ ├── baseline_mic_white_24.png │ │ │ ├── baseline_mic_white_36.png │ │ │ ├── baseline_mic_white_48.png │ │ │ ├── baseline_my_location_white_18.png │ │ │ ├── baseline_my_location_white_24.png │ │ │ ├── baseline_my_location_white_36.png │ │ │ ├── baseline_my_location_white_48.png │ │ │ ├── baseline_network_wifi_black_18.png │ │ │ ├── baseline_network_wifi_black_20.png │ │ │ ├── baseline_network_wifi_black_24.png │ │ │ ├── baseline_network_wifi_black_36.png │ │ │ ├── baseline_network_wifi_black_48.png │ │ │ ├── baseline_nfc_white_18.png │ │ │ ├── baseline_nfc_white_24.png │ │ │ ├── baseline_nfc_white_36.png │ │ │ ├── baseline_nfc_white_48.png │ │ │ ├── baseline_notification_important_white_18.png │ │ │ ├── baseline_notification_important_white_24.png │ │ │ ├── baseline_notification_important_white_36.png │ │ │ ├── baseline_notification_important_white_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.png │ │ │ ├── baseline_opacity_black_36.png │ │ │ ├── baseline_opacity_black_48.webp │ │ │ ├── baseline_opacity_white_18.png │ │ │ ├── baseline_opacity_white_20.png │ │ │ ├── baseline_opacity_white_24.png │ │ │ ├── baseline_opacity_white_36.png │ │ │ ├── baseline_opacity_white_48.png │ │ │ ├── baseline_qr_code_scanner_white_18.png │ │ │ ├── baseline_qr_code_scanner_white_20.png │ │ │ ├── baseline_qr_code_scanner_white_24.png │ │ │ ├── baseline_qr_code_scanner_white_36.png │ │ │ ├── baseline_qr_code_scanner_white_48.png │ │ │ ├── baseline_search_white_18.png │ │ │ ├── baseline_search_white_24.png │ │ │ ├── baseline_search_white_36.png │ │ │ ├── baseline_search_white_48.png │ │ │ ├── baseline_send_white_18.png │ │ │ ├── baseline_send_white_24.png │ │ │ ├── baseline_send_white_36.png │ │ │ ├── baseline_send_white_48.png │ │ │ ├── baseline_settings_input_component_white_18.png │ │ │ ├── baseline_settings_input_component_white_24.png │ │ │ ├── baseline_settings_input_component_white_36.png │ │ │ ├── baseline_settings_input_component_white_48.png │ │ │ ├── baseline_settings_white_18.png │ │ │ ├── baseline_settings_white_24.png │ │ │ ├── baseline_settings_white_36.png │ │ │ ├── baseline_settings_white_48.png │ │ │ ├── baseline_share_white_18.png │ │ │ ├── baseline_share_white_24.png │ │ │ ├── baseline_share_white_36.png │ │ │ ├── baseline_share_white_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_store_white_18.png │ │ │ ├── baseline_store_white_24.png │ │ │ ├── baseline_store_white_36.png │ │ │ ├── baseline_store_white_48.png │ │ │ ├── baseline_sync_black_18.png │ │ │ ├── baseline_sync_black_20.png │ │ │ ├── baseline_sync_black_24.png │ │ │ ├── baseline_sync_black_36.png │ │ │ ├── baseline_sync_black_48.png │ │ │ ├── baseline_sync_white_18.png │ │ │ ├── baseline_sync_white_20.png │ │ │ ├── baseline_sync_white_24.png │ │ │ ├── baseline_sync_white_36.png │ │ │ ├── baseline_sync_white_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_watch_white_18.png │ │ │ ├── baseline_watch_white_24.png │ │ │ ├── baseline_watch_white_36.png │ │ │ ├── baseline_watch_white_48.png │ │ │ ├── baseline_wb_sunny_black_18.png │ │ │ ├── baseline_wb_sunny_black_24.png │ │ │ ├── baseline_wb_sunny_black_36.webp │ │ │ ├── baseline_wb_sunny_black_48.png │ │ │ ├── baseline_whatshot_white_18.png │ │ │ ├── baseline_whatshot_white_24.png │ │ │ ├── baseline_whatshot_white_36.png │ │ │ ├── baseline_whatshot_white_48.png │ │ │ ├── baseline_wifi_tethering_black_18.webp │ │ │ ├── baseline_wifi_tethering_black_24.webp │ │ │ ├── baseline_wifi_tethering_black_36.webp │ │ │ ├── baseline_wifi_tethering_black_48.webp │ │ │ ├── button_off.xml │ │ │ ├── darkheader.webp │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.webp │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_domoticz_logo.webp │ │ │ ├── ic_domoticz_logo_white.webp │ │ │ ├── ic_event.webp │ │ │ ├── ic_logs.webp │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.webp │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.webp │ │ │ ├── ic_plus.png │ │ │ ├── ic_repeat_black_18dp.png │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.webp │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.webp │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_wizard.webp │ │ │ ├── outline_info_black_18.png │ │ │ ├── outline_info_black_24.webp │ │ │ ├── outline_info_black_36.webp │ │ │ ├── outline_info_black_48.webp │ │ │ ├── outline_widgets_white_18.png │ │ │ ├── outline_widgets_white_24.png │ │ │ ├── outline_widgets_white_36.png │ │ │ └── outline_widgets_white_48.png │ │ │ ├── drawable-nodpi │ │ │ ├── domoticz.webp │ │ │ ├── security_widget_preview.webp │ │ │ ├── widget_preview_dark.webp │ │ │ └── widget_preview_light.webp │ │ │ ├── drawable-xhdpi-v11 │ │ │ └── domoticz_white.png │ │ │ ├── drawable-xhdpi-v14 │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ └── appwidget_inner_pressed_r.9.png │ │ │ ├── drawable-xhdpi │ │ │ ├── baseline_add_white_18.png │ │ │ ├── baseline_add_white_24.png │ │ │ ├── baseline_add_white_36.png │ │ │ ├── baseline_add_white_48.png │ │ │ ├── baseline_addchart_white_18.png │ │ │ ├── baseline_addchart_white_24.png │ │ │ ├── baseline_addchart_white_36.png │ │ │ ├── baseline_addchart_white_48.png │ │ │ ├── baseline_bar_chart_black_18.png │ │ │ ├── baseline_bar_chart_black_24.png │ │ │ ├── baseline_bar_chart_black_36.png │ │ │ ├── baseline_bar_chart_black_48.png │ │ │ ├── baseline_bar_chart_white_18.png │ │ │ ├── baseline_bar_chart_white_24.png │ │ │ ├── baseline_bar_chart_white_36.png │ │ │ ├── baseline_bar_chart_white_48.png │ │ │ ├── baseline_bluetooth_black_18.webp │ │ │ ├── baseline_bluetooth_black_24.webp │ │ │ ├── baseline_bluetooth_black_36.webp │ │ │ ├── baseline_bluetooth_black_48.webp │ │ │ ├── baseline_camera_black_18.webp │ │ │ ├── baseline_camera_black_24.webp │ │ │ ├── baseline_camera_black_36.webp │ │ │ ├── baseline_camera_black_48.webp │ │ │ ├── baseline_close_white_18.png │ │ │ ├── baseline_close_white_24.png │ │ │ ├── baseline_close_white_36.png │ │ │ ├── baseline_close_white_48.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dashboard_white_18.png │ │ │ ├── baseline_dashboard_white_20.png │ │ │ ├── baseline_dashboard_white_24.png │ │ │ ├── baseline_dashboard_white_36.png │ │ │ ├── baseline_dashboard_white_48.png │ │ │ ├── baseline_date_range_white_18.png │ │ │ ├── baseline_date_range_white_24.png │ │ │ ├── baseline_date_range_white_36.png │ │ │ ├── baseline_date_range_white_48.png │ │ │ ├── baseline_delete_outline_white_18.png │ │ │ ├── baseline_delete_outline_white_20.png │ │ │ ├── baseline_delete_outline_white_24.png │ │ │ ├── baseline_delete_outline_white_36.png │ │ │ ├── baseline_delete_outline_white_48.png │ │ │ ├── baseline_directions_car_white_12.png │ │ │ ├── baseline_directions_car_white_18.png │ │ │ ├── baseline_directions_car_white_20.png │ │ │ ├── baseline_directions_car_white_24.png │ │ │ ├── baseline_directions_car_white_36.png │ │ │ ├── baseline_directions_car_white_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.webp │ │ │ ├── baseline_dvr_black_48.webp │ │ │ ├── baseline_dvr_white_18.png │ │ │ ├── baseline_dvr_white_20.png │ │ │ ├── baseline_dvr_white_24.png │ │ │ ├── baseline_dvr_white_36.png │ │ │ ├── baseline_dvr_white_48.png │ │ │ ├── baseline_error_outline_black_24.webp │ │ │ ├── baseline_error_outline_white_18.png │ │ │ ├── baseline_error_outline_white_24.png │ │ │ ├── baseline_error_outline_white_36.png │ │ │ ├── baseline_error_outline_white_48.png │ │ │ ├── baseline_filter_list_white_18.png │ │ │ ├── baseline_filter_list_white_24.png │ │ │ ├── baseline_filter_list_white_36.png │ │ │ ├── baseline_filter_list_white_48.png │ │ │ ├── baseline_fingerprint_white_18.png │ │ │ ├── baseline_fingerprint_white_24.png │ │ │ ├── baseline_fingerprint_white_36.png │ │ │ ├── baseline_fingerprint_white_48.png │ │ │ ├── baseline_fullscreen_white_18.png │ │ │ ├── baseline_fullscreen_white_24.png │ │ │ ├── baseline_fullscreen_white_36.png │ │ │ ├── baseline_fullscreen_white_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.webp │ │ │ ├── baseline_info_white_18.png │ │ │ ├── baseline_info_white_24.png │ │ │ ├── baseline_info_white_36.png │ │ │ ├── baseline_info_white_48.png │ │ │ ├── baseline_invert_colors_white_18.png │ │ │ ├── baseline_invert_colors_white_24.png │ │ │ ├── baseline_invert_colors_white_36.png │ │ │ ├── baseline_invert_colors_white_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.webp │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.webp │ │ │ ├── baseline_language_white_18.png │ │ │ ├── baseline_language_white_24.png │ │ │ ├── baseline_language_white_36.png │ │ │ ├── baseline_language_white_48.png │ │ │ ├── baseline_lightbulb_outline_white_18.png │ │ │ ├── baseline_lightbulb_outline_white_20.png │ │ │ ├── baseline_lightbulb_outline_white_24.png │ │ │ ├── baseline_lightbulb_outline_white_36.png │ │ │ ├── baseline_lightbulb_outline_white_48.png │ │ │ ├── baseline_mic_black_18.webp │ │ │ ├── baseline_mic_black_24.webp │ │ │ ├── baseline_mic_black_36.webp │ │ │ ├── baseline_mic_black_48.webp │ │ │ ├── baseline_mic_none_white_18.png │ │ │ ├── baseline_mic_none_white_24.png │ │ │ ├── baseline_mic_none_white_36.png │ │ │ ├── baseline_mic_none_white_48.png │ │ │ ├── baseline_mic_white_18.png │ │ │ ├── baseline_mic_white_24.png │ │ │ ├── baseline_mic_white_36.png │ │ │ ├── baseline_mic_white_48.png │ │ │ ├── baseline_my_location_white_18.png │ │ │ ├── baseline_my_location_white_24.png │ │ │ ├── baseline_my_location_white_36.png │ │ │ ├── baseline_my_location_white_48.png │ │ │ ├── baseline_network_wifi_black_18.png │ │ │ ├── baseline_network_wifi_black_20.png │ │ │ ├── baseline_network_wifi_black_24.png │ │ │ ├── baseline_network_wifi_black_36.png │ │ │ ├── baseline_network_wifi_black_48.png │ │ │ ├── baseline_nfc_white_18.png │ │ │ ├── baseline_nfc_white_24.png │ │ │ ├── baseline_nfc_white_36.png │ │ │ ├── baseline_nfc_white_48.png │ │ │ ├── baseline_notification_important_white_18.png │ │ │ ├── baseline_notification_important_white_24.png │ │ │ ├── baseline_notification_important_white_36.png │ │ │ ├── baseline_notification_important_white_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.webp │ │ │ ├── baseline_opacity_black_36.webp │ │ │ ├── baseline_opacity_black_48.webp │ │ │ ├── baseline_opacity_white_18.png │ │ │ ├── baseline_opacity_white_20.png │ │ │ ├── baseline_opacity_white_24.png │ │ │ ├── baseline_opacity_white_36.png │ │ │ ├── baseline_opacity_white_48.png │ │ │ ├── baseline_qr_code_scanner_white_18.png │ │ │ ├── baseline_qr_code_scanner_white_20.png │ │ │ ├── baseline_qr_code_scanner_white_24.png │ │ │ ├── baseline_qr_code_scanner_white_36.png │ │ │ ├── baseline_qr_code_scanner_white_48.png │ │ │ ├── baseline_search_white_18.png │ │ │ ├── baseline_search_white_24.png │ │ │ ├── baseline_search_white_36.png │ │ │ ├── baseline_search_white_48.png │ │ │ ├── baseline_send_white_18.png │ │ │ ├── baseline_send_white_24.png │ │ │ ├── baseline_send_white_36.png │ │ │ ├── baseline_send_white_48.png │ │ │ ├── baseline_settings_input_component_white_18.png │ │ │ ├── baseline_settings_input_component_white_24.png │ │ │ ├── baseline_settings_input_component_white_36.png │ │ │ ├── baseline_settings_input_component_white_48.png │ │ │ ├── baseline_settings_white_18.png │ │ │ ├── baseline_settings_white_24.png │ │ │ ├── baseline_settings_white_36.png │ │ │ ├── baseline_settings_white_48.png │ │ │ ├── baseline_share_white_18.png │ │ │ ├── baseline_share_white_24.png │ │ │ ├── baseline_share_white_36.png │ │ │ ├── baseline_share_white_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_store_white_18.png │ │ │ ├── baseline_store_white_24.png │ │ │ ├── baseline_store_white_36.png │ │ │ ├── baseline_store_white_48.png │ │ │ ├── baseline_sync_black_18.png │ │ │ ├── baseline_sync_black_20.png │ │ │ ├── baseline_sync_black_24.png │ │ │ ├── baseline_sync_black_36.png │ │ │ ├── baseline_sync_black_48.png │ │ │ ├── baseline_sync_white_18.png │ │ │ ├── baseline_sync_white_20.png │ │ │ ├── baseline_sync_white_24.png │ │ │ ├── baseline_sync_white_36.png │ │ │ ├── baseline_sync_white_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_watch_white_18.png │ │ │ ├── baseline_watch_white_24.png │ │ │ ├── baseline_watch_white_36.png │ │ │ ├── baseline_watch_white_48.png │ │ │ ├── baseline_wb_sunny_black_18.webp │ │ │ ├── baseline_wb_sunny_black_24.png │ │ │ ├── baseline_wb_sunny_black_36.webp │ │ │ ├── baseline_wb_sunny_black_48.webp │ │ │ ├── baseline_whatshot_white_18.png │ │ │ ├── baseline_whatshot_white_24.png │ │ │ ├── baseline_whatshot_white_36.png │ │ │ ├── baseline_whatshot_white_48.png │ │ │ ├── baseline_wifi_tethering_black_18.webp │ │ │ ├── baseline_wifi_tethering_black_24.webp │ │ │ ├── baseline_wifi_tethering_black_36.webp │ │ │ ├── baseline_wifi_tethering_black_48.webp │ │ │ ├── darkheader.webp │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.webp │ │ │ ├── ic_dashboard.webp │ │ │ ├── ic_domoticz_logo.webp │ │ │ ├── ic_domoticz_logo_white.webp │ │ │ ├── ic_event.webp │ │ │ ├── ic_logs.webp │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.webp │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.webp │ │ │ ├── ic_plus.png │ │ │ ├── ic_repeat_black_18dp.webp │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.webp │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.webp │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.webp │ │ │ ├── ic_vars.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_wizard.webp │ │ │ ├── outline_info_black_18.webp │ │ │ ├── outline_info_black_24.webp │ │ │ ├── outline_info_black_36.webp │ │ │ ├── outline_info_black_48.webp │ │ │ ├── outline_widgets_white_18.png │ │ │ ├── outline_widgets_white_24.png │ │ │ ├── outline_widgets_white_36.png │ │ │ ├── outline_widgets_white_48.png │ │ │ ├── sad_smiley.webp │ │ │ └── sad_smiley_dark.webp │ │ │ ├── drawable-xxhdpi │ │ │ ├── baseline_add_white_18.png │ │ │ ├── baseline_add_white_24.png │ │ │ ├── baseline_add_white_36.png │ │ │ ├── baseline_add_white_48.png │ │ │ ├── baseline_addchart_white_18.png │ │ │ ├── baseline_addchart_white_24.png │ │ │ ├── baseline_addchart_white_36.png │ │ │ ├── baseline_addchart_white_48.png │ │ │ ├── baseline_bar_chart_black_18.png │ │ │ ├── baseline_bar_chart_black_24.png │ │ │ ├── baseline_bar_chart_black_36.png │ │ │ ├── baseline_bar_chart_black_48.png │ │ │ ├── baseline_bar_chart_white_18.png │ │ │ ├── baseline_bar_chart_white_24.png │ │ │ ├── baseline_bar_chart_white_36.png │ │ │ ├── baseline_bar_chart_white_48.png │ │ │ ├── baseline_bluetooth_black_18.webp │ │ │ ├── baseline_bluetooth_black_24.webp │ │ │ ├── baseline_bluetooth_black_36.webp │ │ │ ├── baseline_bluetooth_black_48.webp │ │ │ ├── baseline_camera_black_18.webp │ │ │ ├── baseline_camera_black_24.webp │ │ │ ├── baseline_camera_black_36.webp │ │ │ ├── baseline_camera_black_48.webp │ │ │ ├── baseline_close_white_18.png │ │ │ ├── baseline_close_white_24.png │ │ │ ├── baseline_close_white_36.png │ │ │ ├── baseline_close_white_48.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dashboard_white_18.png │ │ │ ├── baseline_dashboard_white_20.png │ │ │ ├── baseline_dashboard_white_24.png │ │ │ ├── baseline_dashboard_white_36.png │ │ │ ├── baseline_dashboard_white_48.png │ │ │ ├── baseline_date_range_white_18.png │ │ │ ├── baseline_date_range_white_24.png │ │ │ ├── baseline_date_range_white_36.png │ │ │ ├── baseline_date_range_white_48.png │ │ │ ├── baseline_delete_outline_white_18.png │ │ │ ├── baseline_delete_outline_white_20.png │ │ │ ├── baseline_delete_outline_white_24.png │ │ │ ├── baseline_delete_outline_white_36.png │ │ │ ├── baseline_delete_outline_white_48.png │ │ │ ├── baseline_directions_car_white_12.png │ │ │ ├── baseline_directions_car_white_18.png │ │ │ ├── baseline_directions_car_white_20.png │ │ │ ├── baseline_directions_car_white_24.png │ │ │ ├── baseline_directions_car_white_36.png │ │ │ ├── baseline_directions_car_white_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.webp │ │ │ ├── baseline_dvr_black_36.webp │ │ │ ├── baseline_dvr_black_48.webp │ │ │ ├── baseline_dvr_white_18.png │ │ │ ├── baseline_dvr_white_20.png │ │ │ ├── baseline_dvr_white_24.png │ │ │ ├── baseline_dvr_white_36.png │ │ │ ├── baseline_dvr_white_48.png │ │ │ ├── baseline_error_outline_black_24.webp │ │ │ ├── baseline_error_outline_white_18.png │ │ │ ├── baseline_error_outline_white_24.png │ │ │ ├── baseline_error_outline_white_36.png │ │ │ ├── baseline_error_outline_white_48.png │ │ │ ├── baseline_filter_list_white_18.png │ │ │ ├── baseline_filter_list_white_24.png │ │ │ ├── baseline_filter_list_white_36.png │ │ │ ├── baseline_filter_list_white_48.png │ │ │ ├── baseline_fingerprint_white_18.png │ │ │ ├── baseline_fingerprint_white_24.png │ │ │ ├── baseline_fingerprint_white_36.png │ │ │ ├── baseline_fingerprint_white_48.png │ │ │ ├── baseline_fullscreen_white_18.png │ │ │ ├── baseline_fullscreen_white_24.png │ │ │ ├── baseline_fullscreen_white_36.png │ │ │ ├── baseline_fullscreen_white_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.webp │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_info_white_18.png │ │ │ ├── baseline_info_white_24.png │ │ │ ├── baseline_info_white_36.png │ │ │ ├── baseline_info_white_48.png │ │ │ ├── baseline_invert_colors_white_18.png │ │ │ ├── baseline_invert_colors_white_24.png │ │ │ ├── baseline_invert_colors_white_36.png │ │ │ ├── baseline_invert_colors_white_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.webp │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_language_white_18.png │ │ │ ├── baseline_language_white_24.png │ │ │ ├── baseline_language_white_36.png │ │ │ ├── baseline_language_white_48.png │ │ │ ├── baseline_lightbulb_outline_white_18.png │ │ │ ├── baseline_lightbulb_outline_white_20.png │ │ │ ├── baseline_lightbulb_outline_white_24.png │ │ │ ├── baseline_lightbulb_outline_white_36.png │ │ │ ├── baseline_lightbulb_outline_white_48.png │ │ │ ├── baseline_mic_black_18.webp │ │ │ ├── baseline_mic_black_24.webp │ │ │ ├── baseline_mic_black_36.webp │ │ │ ├── baseline_mic_black_48.webp │ │ │ ├── baseline_mic_none_white_18.png │ │ │ ├── baseline_mic_none_white_24.png │ │ │ ├── baseline_mic_none_white_36.png │ │ │ ├── baseline_mic_none_white_48.png │ │ │ ├── baseline_mic_white_18.png │ │ │ ├── baseline_mic_white_24.png │ │ │ ├── baseline_mic_white_36.png │ │ │ ├── baseline_mic_white_48.png │ │ │ ├── baseline_my_location_white_18.png │ │ │ ├── baseline_my_location_white_24.png │ │ │ ├── baseline_my_location_white_36.png │ │ │ ├── baseline_my_location_white_48.png │ │ │ ├── baseline_network_wifi_black_18.png │ │ │ ├── baseline_network_wifi_black_20.png │ │ │ ├── baseline_network_wifi_black_24.png │ │ │ ├── baseline_network_wifi_black_36.png │ │ │ ├── baseline_network_wifi_black_48.png │ │ │ ├── baseline_nfc_white_18.png │ │ │ ├── baseline_nfc_white_24.png │ │ │ ├── baseline_nfc_white_36.png │ │ │ ├── baseline_nfc_white_48.png │ │ │ ├── baseline_notification_important_white_18.png │ │ │ ├── baseline_notification_important_white_24.png │ │ │ ├── baseline_notification_important_white_36.png │ │ │ ├── baseline_notification_important_white_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.webp │ │ │ ├── baseline_opacity_black_36.webp │ │ │ ├── baseline_opacity_black_48.webp │ │ │ ├── baseline_opacity_white_18.png │ │ │ ├── baseline_opacity_white_20.png │ │ │ ├── baseline_opacity_white_24.png │ │ │ ├── baseline_opacity_white_36.png │ │ │ ├── baseline_opacity_white_48.png │ │ │ ├── baseline_qr_code_scanner_white_18.png │ │ │ ├── baseline_qr_code_scanner_white_20.png │ │ │ ├── baseline_qr_code_scanner_white_24.png │ │ │ ├── baseline_qr_code_scanner_white_36.png │ │ │ ├── baseline_qr_code_scanner_white_48.png │ │ │ ├── baseline_search_white_18.png │ │ │ ├── baseline_search_white_24.png │ │ │ ├── baseline_search_white_36.png │ │ │ ├── baseline_search_white_48.png │ │ │ ├── baseline_send_white_18.png │ │ │ ├── baseline_send_white_24.png │ │ │ ├── baseline_send_white_36.png │ │ │ ├── baseline_send_white_48.png │ │ │ ├── baseline_settings_input_component_white_18.png │ │ │ ├── baseline_settings_input_component_white_24.png │ │ │ ├── baseline_settings_input_component_white_36.png │ │ │ ├── baseline_settings_input_component_white_48.png │ │ │ ├── baseline_settings_white_18.png │ │ │ ├── baseline_settings_white_24.png │ │ │ ├── baseline_settings_white_36.png │ │ │ ├── baseline_settings_white_48.png │ │ │ ├── baseline_share_white_18.png │ │ │ ├── baseline_share_white_24.png │ │ │ ├── baseline_share_white_36.png │ │ │ ├── baseline_share_white_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_store_white_18.png │ │ │ ├── baseline_store_white_24.png │ │ │ ├── baseline_store_white_36.png │ │ │ ├── baseline_store_white_48.png │ │ │ ├── baseline_sync_black_18.png │ │ │ ├── baseline_sync_black_20.png │ │ │ ├── baseline_sync_black_24.png │ │ │ ├── baseline_sync_black_36.png │ │ │ ├── baseline_sync_black_48.png │ │ │ ├── baseline_sync_white_18.png │ │ │ ├── baseline_sync_white_20.png │ │ │ ├── baseline_sync_white_24.png │ │ │ ├── baseline_sync_white_36.png │ │ │ ├── baseline_sync_white_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_watch_white_18.png │ │ │ ├── baseline_watch_white_24.png │ │ │ ├── baseline_watch_white_36.png │ │ │ ├── baseline_watch_white_48.png │ │ │ ├── baseline_wb_sunny_black_18.webp │ │ │ ├── baseline_wb_sunny_black_24.webp │ │ │ ├── baseline_wb_sunny_black_36.webp │ │ │ ├── baseline_wb_sunny_black_48.webp │ │ │ ├── baseline_whatshot_white_18.png │ │ │ ├── baseline_whatshot_white_24.png │ │ │ ├── baseline_whatshot_white_36.png │ │ │ ├── baseline_whatshot_white_48.png │ │ │ ├── baseline_wifi_tethering_black_18.webp │ │ │ ├── baseline_wifi_tethering_black_24.webp │ │ │ ├── baseline_wifi_tethering_black_36.webp │ │ │ ├── baseline_wifi_tethering_black_48.png │ │ │ ├── darkheader.webp │ │ │ ├── domoticz_white.png │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.webp │ │ │ ├── ic_dashboard.webp │ │ │ ├── ic_domoticz_logo.webp │ │ │ ├── ic_domoticz_logo_white.webp │ │ │ ├── ic_event.webp │ │ │ ├── ic_logs.webp │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.webp │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.webp │ │ │ ├── ic_plus.webp │ │ │ ├── ic_repeat_black_18dp.webp │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.webp │ │ │ ├── ic_stop.webp │ │ │ ├── ic_switch.webp │ │ │ ├── ic_temperature.webp │ │ │ ├── ic_utilities.webp │ │ │ ├── ic_vars.webp │ │ │ ├── ic_weather.webp │ │ │ ├── ic_wizard.webp │ │ │ ├── outline_info_black_18.png │ │ │ ├── outline_info_black_24.webp │ │ │ ├── outline_info_black_36.webp │ │ │ ├── outline_info_black_48.webp │ │ │ ├── outline_widgets_white_18.png │ │ │ ├── outline_widgets_white_24.png │ │ │ ├── outline_widgets_white_36.png │ │ │ ├── outline_widgets_white_48.png │ │ │ ├── placeholder.webp │ │ │ ├── tileset_bluetooth.png │ │ │ ├── tileset_fingerprint.png │ │ │ ├── tileset_geofence.png │ │ │ ├── tileset_mic.png │ │ │ ├── tileset_network_wifi.png │ │ │ ├── tileset_nfc.png │ │ │ ├── tileset_qr_code_scanner.png │ │ │ └── tileset_wifi_tethering.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── baseline_add_white_18.png │ │ │ ├── baseline_add_white_24.png │ │ │ ├── baseline_add_white_36.png │ │ │ ├── baseline_add_white_48.png │ │ │ ├── baseline_addchart_white_18.png │ │ │ ├── baseline_addchart_white_24.png │ │ │ ├── baseline_addchart_white_36.png │ │ │ ├── baseline_addchart_white_48.png │ │ │ ├── baseline_bar_chart_black_18.png │ │ │ ├── baseline_bar_chart_black_24.png │ │ │ ├── baseline_bar_chart_black_36.png │ │ │ ├── baseline_bar_chart_black_48.png │ │ │ ├── baseline_bar_chart_white_18.png │ │ │ ├── baseline_bar_chart_white_24.png │ │ │ ├── baseline_bar_chart_white_36.png │ │ │ ├── baseline_bar_chart_white_48.png │ │ │ ├── baseline_bluetooth_black_18.webp │ │ │ ├── baseline_bluetooth_black_24.webp │ │ │ ├── baseline_bluetooth_black_36.webp │ │ │ ├── baseline_bluetooth_black_48.webp │ │ │ ├── baseline_camera_black_18.webp │ │ │ ├── baseline_camera_black_24.webp │ │ │ ├── baseline_camera_black_36.webp │ │ │ ├── baseline_camera_black_48.webp │ │ │ ├── baseline_close_white_18.png │ │ │ ├── baseline_close_white_24.png │ │ │ ├── baseline_close_white_36.png │ │ │ ├── baseline_close_white_48.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dashboard_white_18.png │ │ │ ├── baseline_dashboard_white_20.png │ │ │ ├── baseline_dashboard_white_24.png │ │ │ ├── baseline_dashboard_white_36.png │ │ │ ├── baseline_dashboard_white_48.png │ │ │ ├── baseline_date_range_white_18.png │ │ │ ├── baseline_date_range_white_24.png │ │ │ ├── baseline_date_range_white_36.png │ │ │ ├── baseline_date_range_white_48.png │ │ │ ├── baseline_delete_outline_white_18.png │ │ │ ├── baseline_delete_outline_white_20.png │ │ │ ├── baseline_delete_outline_white_24.png │ │ │ ├── baseline_delete_outline_white_36.png │ │ │ ├── baseline_delete_outline_white_48.png │ │ │ ├── baseline_directions_car_white_12.png │ │ │ ├── baseline_directions_car_white_18.png │ │ │ ├── baseline_directions_car_white_20.png │ │ │ ├── baseline_directions_car_white_24.png │ │ │ ├── baseline_directions_car_white_36.png │ │ │ ├── baseline_directions_car_white_48.png │ │ │ ├── baseline_dvr_black_18.webp │ │ │ ├── baseline_dvr_black_24.webp │ │ │ ├── baseline_dvr_black_36.webp │ │ │ ├── baseline_dvr_black_48.webp │ │ │ ├── baseline_dvr_white_18.png │ │ │ ├── baseline_dvr_white_20.png │ │ │ ├── baseline_dvr_white_24.png │ │ │ ├── baseline_dvr_white_36.png │ │ │ ├── baseline_dvr_white_48.png │ │ │ ├── baseline_error_outline_white_18.png │ │ │ ├── baseline_error_outline_white_24.png │ │ │ ├── baseline_error_outline_white_36.png │ │ │ ├── baseline_error_outline_white_48.png │ │ │ ├── baseline_filter_list_white_18.png │ │ │ ├── baseline_filter_list_white_24.png │ │ │ ├── baseline_filter_list_white_36.png │ │ │ ├── baseline_filter_list_white_48.png │ │ │ ├── baseline_fingerprint_white_18.png │ │ │ ├── baseline_fingerprint_white_24.png │ │ │ ├── baseline_fingerprint_white_36.png │ │ │ ├── baseline_fingerprint_white_48.png │ │ │ ├── baseline_fullscreen_white_18.png │ │ │ ├── baseline_fullscreen_white_24.png │ │ │ ├── baseline_fullscreen_white_36.png │ │ │ ├── baseline_fullscreen_white_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.webp │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.webp │ │ │ ├── baseline_info_white_18.png │ │ │ ├── baseline_info_white_24.png │ │ │ ├── baseline_info_white_36.png │ │ │ ├── baseline_info_white_48.png │ │ │ ├── baseline_invert_colors_white_18.png │ │ │ ├── baseline_invert_colors_white_24.png │ │ │ ├── baseline_invert_colors_white_36.png │ │ │ ├── baseline_invert_colors_white_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.webp │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.webp │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_language_white_18.png │ │ │ ├── baseline_language_white_24.png │ │ │ ├── baseline_language_white_36.png │ │ │ ├── baseline_language_white_48.png │ │ │ ├── baseline_lightbulb_outline_white_18.png │ │ │ ├── baseline_lightbulb_outline_white_20.png │ │ │ ├── baseline_lightbulb_outline_white_24.png │ │ │ ├── baseline_lightbulb_outline_white_36.png │ │ │ ├── baseline_lightbulb_outline_white_48.png │ │ │ ├── baseline_mic_black_18.webp │ │ │ ├── baseline_mic_black_24.webp │ │ │ ├── baseline_mic_black_36.webp │ │ │ ├── baseline_mic_black_48.webp │ │ │ ├── baseline_mic_none_white_18.png │ │ │ ├── baseline_mic_none_white_24.png │ │ │ ├── baseline_mic_none_white_36.png │ │ │ ├── baseline_mic_none_white_48.png │ │ │ ├── baseline_mic_white_18.png │ │ │ ├── baseline_mic_white_24.png │ │ │ ├── baseline_mic_white_36.png │ │ │ ├── baseline_mic_white_48.png │ │ │ ├── baseline_my_location_white_18.png │ │ │ ├── baseline_my_location_white_24.png │ │ │ ├── baseline_my_location_white_36.png │ │ │ ├── baseline_my_location_white_48.png │ │ │ ├── baseline_network_wifi_black_18.png │ │ │ ├── baseline_network_wifi_black_20.png │ │ │ ├── baseline_network_wifi_black_24.png │ │ │ ├── baseline_network_wifi_black_36.png │ │ │ ├── baseline_network_wifi_black_48.png │ │ │ ├── baseline_nfc_white_18.png │ │ │ ├── baseline_nfc_white_24.png │ │ │ ├── baseline_nfc_white_36.png │ │ │ ├── baseline_nfc_white_48.png │ │ │ ├── baseline_notification_important_white_18.png │ │ │ ├── baseline_notification_important_white_24.png │ │ │ ├── baseline_notification_important_white_36.png │ │ │ ├── baseline_notification_important_white_48.png │ │ │ ├── baseline_opacity_black_18.webp │ │ │ ├── baseline_opacity_black_24.webp │ │ │ ├── baseline_opacity_black_36.webp │ │ │ ├── baseline_opacity_black_48.webp │ │ │ ├── baseline_opacity_white_18.png │ │ │ ├── baseline_opacity_white_20.png │ │ │ ├── baseline_opacity_white_24.png │ │ │ ├── baseline_opacity_white_36.png │ │ │ ├── baseline_opacity_white_48.png │ │ │ ├── baseline_qr_code_scanner_white_18.png │ │ │ ├── baseline_qr_code_scanner_white_20.png │ │ │ ├── baseline_qr_code_scanner_white_24.png │ │ │ ├── baseline_qr_code_scanner_white_36.png │ │ │ ├── baseline_qr_code_scanner_white_48.png │ │ │ ├── baseline_search_white_18.png │ │ │ ├── baseline_search_white_24.png │ │ │ ├── baseline_search_white_36.png │ │ │ ├── baseline_search_white_48.png │ │ │ ├── baseline_send_white_18.png │ │ │ ├── baseline_send_white_24.png │ │ │ ├── baseline_send_white_36.png │ │ │ ├── baseline_send_white_48.png │ │ │ ├── baseline_settings_input_component_white_18.png │ │ │ ├── baseline_settings_input_component_white_24.png │ │ │ ├── baseline_settings_input_component_white_36.png │ │ │ ├── baseline_settings_input_component_white_48.png │ │ │ ├── baseline_settings_white_18.png │ │ │ ├── baseline_settings_white_24.png │ │ │ ├── baseline_settings_white_36.png │ │ │ ├── baseline_settings_white_48.png │ │ │ ├── baseline_share_white_18.png │ │ │ ├── baseline_share_white_24.png │ │ │ ├── baseline_share_white_36.png │ │ │ ├── baseline_share_white_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_store_white_18.png │ │ │ ├── baseline_store_white_24.png │ │ │ ├── baseline_store_white_36.png │ │ │ ├── baseline_store_white_48.png │ │ │ ├── baseline_sync_black_18.png │ │ │ ├── baseline_sync_black_20.png │ │ │ ├── baseline_sync_black_24.png │ │ │ ├── baseline_sync_black_36.png │ │ │ ├── baseline_sync_black_48.png │ │ │ ├── baseline_sync_white_18.png │ │ │ ├── baseline_sync_white_20.png │ │ │ ├── baseline_sync_white_24.png │ │ │ ├── baseline_sync_white_36.png │ │ │ ├── baseline_sync_white_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_watch_white_18.png │ │ │ ├── baseline_watch_white_24.png │ │ │ ├── baseline_watch_white_36.png │ │ │ ├── baseline_watch_white_48.png │ │ │ ├── baseline_wb_sunny_black_18.webp │ │ │ ├── baseline_wb_sunny_black_24.webp │ │ │ ├── baseline_wb_sunny_black_36.webp │ │ │ ├── baseline_wb_sunny_black_48.webp │ │ │ ├── baseline_whatshot_white_18.png │ │ │ ├── baseline_whatshot_white_24.png │ │ │ ├── baseline_whatshot_white_36.png │ │ │ ├── baseline_whatshot_white_48.png │ │ │ ├── baseline_wifi_tethering_black_18.webp │ │ │ ├── baseline_wifi_tethering_black_24.webp │ │ │ ├── baseline_wifi_tethering_black_36.png │ │ │ ├── baseline_wifi_tethering_black_48.webp │ │ │ ├── ic_domoticz_logo.webp │ │ │ ├── ic_domoticz_logo_white.webp │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.webp │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_pause.webp │ │ │ ├── ic_play.webp │ │ │ ├── ic_repeat_black_18dp.webp │ │ │ ├── ic_schedule_black_18dp.webp │ │ │ ├── outline_info_black_18.webp │ │ │ ├── outline_info_black_24.webp │ │ │ ├── outline_info_black_36.webp │ │ │ ├── outline_info_black_48.webp │ │ │ ├── outline_widgets_white_18.png │ │ │ ├── outline_widgets_white_24.png │ │ │ ├── outline_widgets_white_36.png │ │ │ └── outline_widgets_white_48.png │ │ │ ├── drawable │ │ │ ├── appwidget_bg_clickable.xml │ │ │ ├── appwidget_button_center.xml │ │ │ ├── appwidget_button_left.xml │ │ │ ├── appwidget_button_right.xml │ │ │ ├── appwidget_dark_bg_clickable.xml │ │ │ ├── baseline_qr_code_scanner_24.xml │ │ │ ├── border.xml │ │ │ ├── bordershadow.xml │ │ │ ├── button_dark_status.xml │ │ │ ├── button_dark_status_normal.xml │ │ │ ├── button_dark_status_pressed.xml │ │ │ ├── button_normal.xml │ │ │ ├── button_on.xml │ │ │ ├── button_pressed.xml │ │ │ ├── button_status.xml │ │ │ ├── button_status_dark.xml │ │ │ ├── button_status_dark_normal.xml │ │ │ ├── button_status_dark_pressed.xml │ │ │ ├── button_status_normal.xml │ │ │ ├── button_status_pressed.xml │ │ │ ├── button_white_status.xml │ │ │ ├── button_white_status_normal.xml │ │ │ ├── button_white_status_pressed.xml │ │ │ ├── gnt_outline_shape.xml │ │ │ ├── gnt_rounded_corners_shape.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── palette.webp │ │ │ ├── wheel.webp │ │ │ ├── wheel_dark.png │ │ │ ├── widgetpreview.png │ │ │ ├── widgetsmallpreview.png │ │ │ ├── widgettemppreview.png │ │ │ ├── wwpalette.png │ │ │ └── wwslider.webp │ │ │ ├── layout-land │ │ │ ├── dialog_notifications.xml │ │ │ ├── fragment_welcome1.xml │ │ │ └── notification_row.xml │ │ │ ├── layout-sw720dp │ │ │ ├── activity_newmain_free.xml │ │ │ └── activity_newmain_paid.xml │ │ │ ├── layout │ │ │ ├── activity_beacon_settings.xml │ │ │ ├── activity_bluetooth_settings.xml │ │ │ ├── activity_geo_settings.xml │ │ │ ├── activity_graph.xml │ │ │ ├── activity_logs.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_newmain_free.xml │ │ │ ├── activity_newmain_paid.xml │ │ │ ├── activity_nfc_settings.xml │ │ │ ├── activity_qrcode_settings.xml │ │ │ ├── activity_server_settings.xml │ │ │ ├── activity_speech_settings.xml │ │ │ ├── activity_temp_graphs.xml │ │ │ ├── activity_theme_settings.xml │ │ │ ├── activity_update.xml │ │ │ ├── activity_welcome.xml │ │ │ ├── activity_wifi_settings.xml │ │ │ ├── barcode_capture.xml │ │ │ ├── beacon_row.xml │ │ │ ├── bluetooth_row.xml │ │ │ ├── camera_default.xml │ │ │ ├── camera_row.xml │ │ │ ├── camera_row_noads.xml │ │ │ ├── changelog_fragment.xml │ │ │ ├── dashboard_row.xml │ │ │ ├── dashboard_row_default.xml │ │ │ ├── dashboard_row_list.xml │ │ │ ├── dashboard_row_list_noads.xml │ │ │ ├── dashboard_row_noads.xml │ │ │ ├── default_layout.xml │ │ │ ├── dialog_beacon.xml │ │ │ ├── dialog_fingerprint_password.xml │ │ │ ├── dialog_graph.xml │ │ │ ├── dialog_location.xml │ │ │ ├── dialog_password.xml │ │ │ ├── dialog_rgbwwcolor.xml │ │ │ ├── dialog_scene_info.xml │ │ │ ├── dialog_security.xml │ │ │ ├── dialog_send_notification.xml │ │ │ ├── dialog_sunrise.xml │ │ │ ├── dialog_switch_info.xml │ │ │ ├── dialog_switch_logs.xml │ │ │ ├── dialog_switch_timer.xml │ │ │ ├── dialog_temp_graphs.xml │ │ │ ├── dialog_temperature.xml │ │ │ ├── dialog_text.xml │ │ │ ├── dialog_utilities_info.xml │ │ │ ├── dialog_weather.xml │ │ │ ├── dialog_wwcolor.xml │ │ │ ├── event_row_default.xml │ │ │ ├── fragment_add_server.xml │ │ │ ├── fragment_cameras.xml │ │ │ ├── fragment_notification_history.xml │ │ │ ├── fragment_welcome1.xml │ │ │ ├── fragment_welcome2.xml │ │ │ ├── fragment_welcome3.xml │ │ │ ├── fragment_welcome4.xml │ │ │ ├── fragment_wizard.xml │ │ │ ├── geo_row_location.xml │ │ │ ├── gnt_medium_template_view.xml │ │ │ ├── gnt_small_template_view.xml │ │ │ ├── gnt_square_template_view.xml │ │ │ ├── item_custom_incoming_text_message.xml │ │ │ ├── item_custom_outcoming_text_message.xml │ │ │ ├── item_layout_flavor.xml │ │ │ ├── log_all_buttons.xml │ │ │ ├── log_graph_buttons_row_default.xml │ │ │ ├── log_text_button_row_default.xml │ │ │ ├── log_timer_button_row_default.xml │ │ │ ├── logs_row_default.xml │ │ │ ├── mainpager.xml │ │ │ ├── nav_item_header.xml │ │ │ ├── nav_item_row.xml │ │ │ ├── nfc_row.xml │ │ │ ├── plan_row.xml │ │ │ ├── plan_row_noads.xml │ │ │ ├── scene_row_default.xml │ │ │ ├── scene_row_default_noads.xml │ │ │ ├── server_row.xml │ │ │ ├── small_plan_row.xml │ │ │ ├── speech_row.xml │ │ │ ├── spinner_list_item.xml │ │ │ ├── switch_row_list.xml │ │ │ ├── switch_row_list_noads.xml │ │ │ ├── temp_mainpager.xml │ │ │ ├── temperature_row_default.xml │ │ │ ├── temperature_row_default_noads.xml │ │ │ ├── timer_row.xml │ │ │ ├── utilities_row_default.xml │ │ │ ├── vars_row_default.xml │ │ │ ├── weather_row_default.xml │ │ │ ├── weather_row_default_noads.xml │ │ │ ├── widget_configuration.xml │ │ │ ├── widget_configuration_row.xml │ │ │ ├── widget_layout.xml │ │ │ ├── widget_layout_blinds.xml │ │ │ ├── widget_layout_blinds_dark.xml │ │ │ ├── widget_layout_blinds_transparent.xml │ │ │ ├── widget_layout_blinds_transparent_dark.xml │ │ │ ├── widget_layout_buttons.xml │ │ │ ├── widget_layout_buttons_dark.xml │ │ │ ├── widget_layout_buttons_transparent.xml │ │ │ ├── widget_layout_buttons_transparent_dark.xml │ │ │ ├── widget_layout_dark.xml │ │ │ ├── widget_layout_default.xml │ │ │ ├── widget_layout_default_dark.xml │ │ │ ├── widget_layout_preview.xml │ │ │ ├── widget_layout_transparent.xml │ │ │ ├── widget_layout_transparent_dark.xml │ │ │ ├── widget_security_configuration.xml │ │ │ ├── widget_security_layout.xml │ │ │ ├── widget_security_layout_dark.xml │ │ │ ├── widget_security_layout_transparent.xml │ │ │ ├── widget_security_layout_transparent_dark.xml │ │ │ ├── widget_small_layout.xml │ │ │ ├── widget_small_layout_dark.xml │ │ │ ├── widget_small_layout_preview.xml │ │ │ ├── widget_small_layout_transparent.xml │ │ │ ├── widget_small_layout_transparent_dark.xml │ │ │ ├── widget_small_temp_layout.xml │ │ │ ├── widget_small_temp_layout_dark.xml │ │ │ ├── widget_small_temp_layout_preview.xml │ │ │ ├── widget_small_temp_layout_transparent.xml │ │ │ └── widget_small_temp_layout_transparent_dark.xml │ │ │ ├── menu │ │ │ ├── menu_beacon.xml │ │ │ ├── menu_bluetooth.xml │ │ │ ├── menu_bottom.xml │ │ │ ├── menu_bottom_temp.xml │ │ │ ├── menu_camera.xml │ │ │ ├── menu_camera_pause.xml │ │ │ ├── menu_camera_single.xml │ │ │ ├── menu_camera_single_pause.xml │ │ │ ├── menu_error.xml │ │ │ ├── menu_geo.xml │ │ │ ├── menu_graph_sort.xml │ │ │ ├── menu_logs_sort.xml │ │ │ ├── menu_main.xml │ │ │ ├── menu_main_sort.xml │ │ │ ├── menu_notification.xml │ │ │ ├── menu_notification_user.xml │ │ │ ├── menu_preferences.xml │ │ │ ├── menu_qrcode.xml │ │ │ ├── menu_search.xml │ │ │ ├── menu_server.xml │ │ │ ├── menu_simple.xml │ │ │ ├── menu_speech.xml │ │ │ ├── menu_temp_graph_sort.xml │ │ │ └── menu_temperature.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-bg │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-bs │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-ca │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-cs │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-da │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-de │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-el │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-es │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-fa │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-fi │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_into.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-fr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-he │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-hr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-hu │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-it │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-kab │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-nl │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-no │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-pl │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-pt │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-ro │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-ru │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sk │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sl │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sv │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sw600dp │ │ │ └── bools.xml │ │ │ ├── values-tr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-uk │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ ├── values-zh-rCN │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-zh │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values │ │ │ ├── attrs.xml │ │ │ ├── bools.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── drawer_actions.xml │ │ │ ├── evohome_states.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_beacon.xml │ │ │ ├── strings_bluetooth.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_users.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wifi.xml │ │ │ ├── strings_wizard.xml │ │ │ ├── styles.xml │ │ │ └── translationArrays.xml │ │ │ ├── xml-v31 │ │ │ ├── widget_large_info.xml │ │ │ ├── widget_small_info.xml │ │ │ └── widget_small_temp_info.xml │ │ │ └── xml │ │ │ ├── app_tracker.xml │ │ │ ├── automotive_app_desc.xml │ │ │ ├── nfc_tech_list.xml │ │ │ ├── notificationpreferences.xml │ │ │ ├── preferences.xml │ │ │ ├── searchable.xml │ │ │ ├── shortcuts.xml │ │ │ ├── widget_large_info.xml │ │ │ ├── widget_small_info.xml │ │ │ └── widget_small_temp_info.xml │ ├── oott │ │ ├── AndroidManifest.xml │ │ ├── google-services.json │ │ └── res │ │ │ ├── drawable-hdpi-v11 │ │ │ ├── bordershadowdark.xml │ │ │ └── domoticz_white.png │ │ │ ├── drawable-hdpi-v14 │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ └── appwidget_inner_pressed_r.9.png │ │ │ ├── drawable-hdpi │ │ │ ├── alarm.png │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_dark_bg_pressed.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ ├── appwidget_inner_pressed_r.9.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.png │ │ │ ├── baseline_dvr_black_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.png │ │ │ ├── baseline_opacity_black_36.png │ │ │ ├── baseline_opacity_black_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_wb_sunny_black_18.png │ │ │ ├── baseline_wb_sunny_black_24.png │ │ │ ├── baseline_wb_sunny_black_36.png │ │ │ ├── baseline_wb_sunny_black_48.png │ │ │ ├── christmastree.png │ │ │ ├── clock48.png │ │ │ ├── computer.png │ │ │ ├── cone.png │ │ │ ├── contact.png │ │ │ ├── cooling.png │ │ │ ├── darkheader.png │ │ │ ├── defaultimage.png │ │ │ ├── demand.png │ │ │ ├── dimmer.png │ │ │ ├── door.png │ │ │ ├── down.png │ │ │ ├── empty.png │ │ │ ├── fan.png │ │ │ ├── flame.png │ │ │ ├── gauge.png │ │ │ ├── generic.png │ │ │ ├── harddisk.png │ │ │ ├── heating.png │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.png │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_domoticz_logo.png │ │ │ ├── ic_event.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_logs.png │ │ │ ├── ic_microphone.png │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.png │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.png │ │ │ ├── ic_plus.png │ │ │ ├── ic_repeat_black_18dp.png │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.png │ │ │ ├── ic_sort.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.png │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.png │ │ │ ├── ic_weather.png │ │ │ ├── ic_wizard.png │ │ │ ├── leaf.png │ │ │ ├── lights.png │ │ │ ├── lock.png │ │ │ ├── media.png │ │ │ ├── mic.png │ │ │ ├── motion.png │ │ │ ├── outline_info_black_18.png │ │ │ ├── outline_info_black_24.png │ │ │ ├── outline_info_black_36.png │ │ │ ├── outline_info_black_48.png │ │ │ ├── percentage.png │ │ │ ├── phone.png │ │ │ ├── printer.png │ │ │ ├── program.png │ │ │ ├── pushoff.png │ │ │ ├── qrcode.png │ │ │ ├── radiation.png │ │ │ ├── rain.png │ │ │ ├── refresh.png │ │ │ ├── remote.png │ │ │ ├── rgb.png │ │ │ ├── scale.png │ │ │ ├── security.png │ │ │ ├── siren.png │ │ │ ├── smoke.png │ │ │ ├── speaker.png │ │ │ ├── stop.png │ │ │ ├── sub.png │ │ │ ├── temp48.png │ │ │ ├── temperature.png │ │ │ ├── text.png │ │ │ ├── tv.png │ │ │ ├── up.png │ │ │ ├── uv.png │ │ │ ├── uvdark.png │ │ │ ├── uvsunny.png │ │ │ ├── video.png │ │ │ ├── visibility.png │ │ │ ├── volume.png │ │ │ ├── wall.png │ │ │ ├── water.png │ │ │ └── wind.png │ │ │ ├── drawable-ldpi │ │ │ ├── alarm.png │ │ │ ├── christmastree.png │ │ │ ├── clock48.png │ │ │ ├── computer.png │ │ │ ├── cone.png │ │ │ ├── contact.png │ │ │ ├── cooling.png │ │ │ ├── darkheader.png │ │ │ ├── defaultimage.png │ │ │ ├── demand.png │ │ │ ├── dimmer.png │ │ │ ├── door.png │ │ │ ├── down.png │ │ │ ├── empty.png │ │ │ ├── fan.png │ │ │ ├── flame.png │ │ │ ├── gauge.png │ │ │ ├── generic.png │ │ │ ├── harddisk.png │ │ │ ├── heating.png │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.png │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_event.png │ │ │ ├── ic_logs.png │ │ │ ├── ic_microphone.png │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.png │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.png │ │ │ ├── ic_plus.png │ │ │ ├── ic_scenes.png │ │ │ ├── ic_sort.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.png │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.png │ │ │ ├── ic_weather.png │ │ │ ├── ic_wizard.png │ │ │ ├── leaf.png │ │ │ ├── lights.png │ │ │ ├── lock.png │ │ │ ├── media.png │ │ │ ├── mic.png │ │ │ ├── motion.png │ │ │ ├── percentage.png │ │ │ ├── phone.png │ │ │ ├── printer.png │ │ │ ├── program.png │ │ │ ├── pushoff.png │ │ │ ├── qrcode.png │ │ │ ├── radiation.png │ │ │ ├── rain.png │ │ │ ├── refresh.png │ │ │ ├── remote.png │ │ │ ├── rgb.png │ │ │ ├── scale.png │ │ │ ├── security.png │ │ │ ├── siren.png │ │ │ ├── smoke.png │ │ │ ├── speaker.png │ │ │ ├── stop.png │ │ │ ├── sub.png │ │ │ ├── temp48.png │ │ │ ├── temperature.png │ │ │ ├── text.png │ │ │ ├── tv.png │ │ │ ├── up.png │ │ │ ├── uv.png │ │ │ ├── uvdark.png │ │ │ ├── uvsunny.png │ │ │ ├── video.png │ │ │ ├── visibility.png │ │ │ ├── volume.png │ │ │ ├── wall.png │ │ │ ├── water.png │ │ │ └── wind.png │ │ │ ├── drawable-mdpi-v11 │ │ │ └── domoticz_white.png │ │ │ ├── drawable-mdpi-v14 │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ └── appwidget_inner_pressed_r.9.png │ │ │ ├── drawable-mdpi │ │ │ ├── alarm.png │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_dark_bg_pressed.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ ├── appwidget_inner_pressed_r.9.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.png │ │ │ ├── baseline_dvr_black_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.png │ │ │ ├── baseline_opacity_black_36.png │ │ │ ├── baseline_opacity_black_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_wb_sunny_black_18.png │ │ │ ├── baseline_wb_sunny_black_24.png │ │ │ ├── baseline_wb_sunny_black_36.png │ │ │ ├── baseline_wb_sunny_black_48.png │ │ │ ├── button_off.xml │ │ │ ├── christmastree.png │ │ │ ├── clock48.png │ │ │ ├── computer.png │ │ │ ├── cone.png │ │ │ ├── contact.png │ │ │ ├── cooling.png │ │ │ ├── darkheader.png │ │ │ ├── defaultimage.png │ │ │ ├── demand.png │ │ │ ├── dimmer.png │ │ │ ├── door.png │ │ │ ├── down.png │ │ │ ├── empty.png │ │ │ ├── fan.png │ │ │ ├── flame.png │ │ │ ├── gauge.png │ │ │ ├── generic.png │ │ │ ├── harddisk.png │ │ │ ├── heating.png │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.png │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_domoticz_logo.png │ │ │ ├── ic_event.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_logs.png │ │ │ ├── ic_microphone.png │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.png │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.png │ │ │ ├── ic_plus.png │ │ │ ├── ic_repeat_black_18dp.png │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.png │ │ │ ├── ic_sort.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.png │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.png │ │ │ ├── ic_weather.png │ │ │ ├── ic_wizard.png │ │ │ ├── leaf.png │ │ │ ├── lights.png │ │ │ ├── lock.png │ │ │ ├── media.png │ │ │ ├── mic.png │ │ │ ├── motion.png │ │ │ ├── outline_info_black_18.png │ │ │ ├── outline_info_black_24.png │ │ │ ├── outline_info_black_36.png │ │ │ ├── outline_info_black_48.png │ │ │ ├── percentage.png │ │ │ ├── phone.png │ │ │ ├── printer.png │ │ │ ├── program.png │ │ │ ├── pushoff.png │ │ │ ├── qrcode.png │ │ │ ├── radiation.png │ │ │ ├── rain.png │ │ │ ├── refresh.png │ │ │ ├── remote.png │ │ │ ├── rgb.png │ │ │ ├── scale.png │ │ │ ├── security.png │ │ │ ├── siren.png │ │ │ ├── smoke.png │ │ │ ├── speaker.png │ │ │ ├── stop.png │ │ │ ├── sub.png │ │ │ ├── temp48.png │ │ │ ├── temperature.png │ │ │ ├── text.png │ │ │ ├── tv.png │ │ │ ├── up.png │ │ │ ├── uv.png │ │ │ ├── uvdark.png │ │ │ ├── uvsunny.png │ │ │ ├── video.png │ │ │ ├── visibility.png │ │ │ ├── volume.png │ │ │ ├── wall.png │ │ │ ├── water.png │ │ │ └── wind.png │ │ │ ├── drawable-nodpi │ │ │ ├── domoticz.png │ │ │ ├── security_widget_preview.png │ │ │ ├── widget_preview_dark.png │ │ │ └── widget_preview_light.png │ │ │ ├── drawable-xhdpi-v11 │ │ │ └── domoticz_white.png │ │ │ ├── drawable-xhdpi-v14 │ │ │ ├── appwidget_bg.9.png │ │ │ ├── appwidget_bg_focused.9.png │ │ │ ├── appwidget_bg_pressed.9.png │ │ │ ├── appwidget_dark_bg.9.png │ │ │ ├── appwidget_dark_bg_focused.9.png │ │ │ ├── appwidget_inner_focused_c.9.png │ │ │ ├── appwidget_inner_focused_l.9.png │ │ │ ├── appwidget_inner_focused_r.9.png │ │ │ ├── appwidget_inner_pressed_c.9.png │ │ │ ├── appwidget_inner_pressed_l.9.png │ │ │ └── appwidget_inner_pressed_r.9.png │ │ │ ├── drawable-xhdpi │ │ │ ├── alarm.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.png │ │ │ ├── baseline_dvr_black_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.png │ │ │ ├── baseline_opacity_black_36.png │ │ │ ├── baseline_opacity_black_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_wb_sunny_black_18.png │ │ │ ├── baseline_wb_sunny_black_24.png │ │ │ ├── baseline_wb_sunny_black_36.png │ │ │ ├── baseline_wb_sunny_black_48.png │ │ │ ├── christmastree.png │ │ │ ├── clock48.png │ │ │ ├── computer.png │ │ │ ├── cone.png │ │ │ ├── contact.png │ │ │ ├── cooling.png │ │ │ ├── darkheader.png │ │ │ ├── defaultimage.png │ │ │ ├── demand.png │ │ │ ├── dimmer.png │ │ │ ├── door.png │ │ │ ├── down.png │ │ │ ├── empty.png │ │ │ ├── fan.png │ │ │ ├── flame.png │ │ │ ├── gauge.png │ │ │ ├── generic.png │ │ │ ├── harddisk.png │ │ │ ├── heating.png │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.png │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_domoticz_logo.png │ │ │ ├── ic_event.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_logs.png │ │ │ ├── ic_microphone.png │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.png │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.png │ │ │ ├── ic_plus.png │ │ │ ├── ic_repeat_black_18dp.png │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.png │ │ │ ├── ic_sort.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.png │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.png │ │ │ ├── ic_weather.png │ │ │ ├── ic_wizard.png │ │ │ ├── leaf.png │ │ │ ├── lights.png │ │ │ ├── lock.png │ │ │ ├── media.png │ │ │ ├── mic.png │ │ │ ├── motion.png │ │ │ ├── outline_info_black_18.png │ │ │ ├── outline_info_black_24.png │ │ │ ├── outline_info_black_36.png │ │ │ ├── outline_info_black_48.png │ │ │ ├── percentage.png │ │ │ ├── phone.png │ │ │ ├── printer.png │ │ │ ├── program.png │ │ │ ├── pushoff.png │ │ │ ├── qrcode.png │ │ │ ├── radiation.png │ │ │ ├── rain.png │ │ │ ├── refresh.png │ │ │ ├── remote.png │ │ │ ├── rgb.png │ │ │ ├── sad_smiley.jpeg │ │ │ ├── sad_smiley_dark.png │ │ │ ├── scale.png │ │ │ ├── security.png │ │ │ ├── siren.png │ │ │ ├── smoke.png │ │ │ ├── speaker.png │ │ │ ├── stop.png │ │ │ ├── sub.png │ │ │ ├── temp48.png │ │ │ ├── temperature.png │ │ │ ├── text.png │ │ │ ├── tv.png │ │ │ ├── up.png │ │ │ ├── uv.png │ │ │ ├── uvdark.png │ │ │ ├── uvsunny.png │ │ │ ├── video.png │ │ │ ├── visibility.png │ │ │ ├── volume.png │ │ │ ├── wall.png │ │ │ ├── water.png │ │ │ └── wind.png │ │ │ ├── drawable-xxhdpi-v11 │ │ │ └── domoticz_white.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── alarm.png │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.png │ │ │ ├── baseline_dvr_black_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.png │ │ │ ├── baseline_opacity_black_36.png │ │ │ ├── baseline_opacity_black_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_wb_sunny_black_18.png │ │ │ ├── baseline_wb_sunny_black_24.png │ │ │ ├── baseline_wb_sunny_black_36.png │ │ │ ├── baseline_wb_sunny_black_48.png │ │ │ ├── christmastree.png │ │ │ ├── clock48.png │ │ │ ├── computer.png │ │ │ ├── cone.png │ │ │ ├── contact.png │ │ │ ├── cooling.png │ │ │ ├── darkheader.png │ │ │ ├── defaultimage.png │ │ │ ├── demand.png │ │ │ ├── dimmer.png │ │ │ ├── door.png │ │ │ ├── down.png │ │ │ ├── empty.png │ │ │ ├── fan.png │ │ │ ├── flame.png │ │ │ ├── gauge.png │ │ │ ├── generic.png │ │ │ ├── harddisk.png │ │ │ ├── heating.png │ │ │ ├── ic_arrow_down.png │ │ │ ├── ic_arrow_up.png │ │ │ ├── ic_cameras.png │ │ │ ├── ic_dashboard.png │ │ │ ├── ic_domoticz_logo.png │ │ │ ├── ic_event.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_logs.png │ │ │ ├── ic_microphone.png │ │ │ ├── ic_minus.png │ │ │ ├── ic_pause.png │ │ │ ├── ic_plan.png │ │ │ ├── ic_play.png │ │ │ ├── ic_plus.png │ │ │ ├── ic_repeat_black_18dp.png │ │ │ ├── ic_scenes.png │ │ │ ├── ic_schedule_black_18dp.png │ │ │ ├── ic_sort.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_switch.png │ │ │ ├── ic_temperature.png │ │ │ ├── ic_utilities.png │ │ │ ├── ic_vars.png │ │ │ ├── ic_weather.png │ │ │ ├── ic_wizard.png │ │ │ ├── leaf.png │ │ │ ├── lights.png │ │ │ ├── lock.png │ │ │ ├── media.png │ │ │ ├── mic.png │ │ │ ├── motion.png │ │ │ ├── outline_info_black_18.png │ │ │ ├── outline_info_black_24.png │ │ │ ├── outline_info_black_36.png │ │ │ ├── outline_info_black_48.png │ │ │ ├── percentage.png │ │ │ ├── phone.png │ │ │ ├── placeholder.jpg │ │ │ ├── printer.png │ │ │ ├── program.png │ │ │ ├── pushoff.png │ │ │ ├── qrcode.png │ │ │ ├── radiation.png │ │ │ ├── rain.png │ │ │ ├── refresh.png │ │ │ ├── remote.png │ │ │ ├── rgb.png │ │ │ ├── scale.png │ │ │ ├── security.png │ │ │ ├── siren.png │ │ │ ├── smoke.png │ │ │ ├── speaker.png │ │ │ ├── stop.png │ │ │ ├── sub.png │ │ │ ├── temp48.png │ │ │ ├── temperature.png │ │ │ ├── text.png │ │ │ ├── tv.png │ │ │ ├── up.png │ │ │ ├── users.png │ │ │ ├── uv.png │ │ │ ├── uvdark.png │ │ │ ├── uvsunny.png │ │ │ ├── video.png │ │ │ ├── visibility.png │ │ │ ├── volume.png │ │ │ ├── wall.png │ │ │ ├── water.png │ │ │ └── wind.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── baseline_dashboard_black_18.png │ │ │ ├── baseline_dashboard_black_24.png │ │ │ ├── baseline_dashboard_black_36.png │ │ │ ├── baseline_dashboard_black_48.png │ │ │ ├── baseline_dvr_black_18.png │ │ │ ├── baseline_dvr_black_24.png │ │ │ ├── baseline_dvr_black_36.png │ │ │ ├── baseline_dvr_black_48.png │ │ │ ├── baseline_highlight_black_18.png │ │ │ ├── baseline_highlight_black_24.png │ │ │ ├── baseline_highlight_black_36.png │ │ │ ├── baseline_highlight_black_48.png │ │ │ ├── baseline_keyboard_arrow_down_black_18.png │ │ │ ├── baseline_keyboard_arrow_down_black_24.png │ │ │ ├── baseline_keyboard_arrow_down_black_36.png │ │ │ ├── baseline_keyboard_arrow_down_black_48.png │ │ │ ├── baseline_keyboard_arrow_up_black_18.png │ │ │ ├── baseline_keyboard_arrow_up_black_24.png │ │ │ ├── baseline_keyboard_arrow_up_black_36.png │ │ │ ├── baseline_keyboard_arrow_up_black_48.png │ │ │ ├── baseline_opacity_black_18.png │ │ │ ├── baseline_opacity_black_24.png │ │ │ ├── baseline_opacity_black_36.png │ │ │ ├── baseline_opacity_black_48.png │ │ │ ├── baseline_stop_black_18.png │ │ │ ├── baseline_stop_black_24.png │ │ │ ├── baseline_stop_black_36.png │ │ │ ├── baseline_stop_black_48.png │ │ │ ├── baseline_view_carousel_black_18.png │ │ │ ├── baseline_view_carousel_black_24.png │ │ │ ├── baseline_view_carousel_black_36.png │ │ │ ├── baseline_view_carousel_black_48.png │ │ │ ├── baseline_wb_sunny_black_18.png │ │ │ ├── baseline_wb_sunny_black_24.png │ │ │ ├── baseline_wb_sunny_black_36.png │ │ │ ├── baseline_wb_sunny_black_48.png │ │ │ ├── ic_domoticz_logo.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_pause.png │ │ │ ├── ic_play.png │ │ │ ├── ic_repeat_black_18dp.png │ │ │ ├── ic_schedule_black_18dp.png │ │ │ ├── outline_info_black_18.png │ │ │ ├── outline_info_black_24.png │ │ │ ├── outline_info_black_36.png │ │ │ └── outline_info_black_48.png │ │ │ ├── drawable │ │ │ ├── appwidget_bg_clickable.xml │ │ │ ├── appwidget_button_center.xml │ │ │ ├── appwidget_button_left.xml │ │ │ ├── appwidget_button_right.xml │ │ │ ├── appwidget_dark_bg_clickable.xml │ │ │ ├── border.xml │ │ │ ├── bordershadow.xml │ │ │ ├── button_dark_status.xml │ │ │ ├── button_dark_status_normal.xml │ │ │ ├── button_dark_status_pressed.xml │ │ │ ├── button_normal.xml │ │ │ ├── button_on.xml │ │ │ ├── button_pressed.xml │ │ │ ├── button_status.xml │ │ │ ├── button_status_dark.xml │ │ │ ├── button_status_dark_normal.xml │ │ │ ├── button_status_dark_pressed.xml │ │ │ ├── button_status_normal.xml │ │ │ ├── button_status_pressed.xml │ │ │ ├── button_white_status.xml │ │ │ ├── button_white_status_normal.xml │ │ │ ├── button_white_status_pressed.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── palette.png │ │ │ ├── wheel.png │ │ │ ├── wheel_dark.png │ │ │ ├── widgetpreview.png │ │ │ ├── wwpalette.png │ │ │ └── wwslider.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-bg │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-bs │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-ca │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-cs │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-da │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-de │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-el │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-es │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-fa │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-fi │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-fr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-he │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-hr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-hu │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-it │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-kab │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-nl │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-no │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-pl │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-pt │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-ro │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-ru │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sk │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sl │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-sv │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-tr │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-uk │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-zh-rCN │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ ├── values-zh │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ └── strings_wizard.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── evohome_states.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ ├── strings_actions.xml │ │ │ ├── strings_cameras.xml │ │ │ ├── strings_dashboard.xml │ │ │ ├── strings_errors.xml │ │ │ ├── strings_events.xml │ │ │ ├── strings_locations.xml │ │ │ ├── strings_logs.xml │ │ │ ├── strings_nfc.xml │ │ │ ├── strings_notifications.xml │ │ │ ├── strings_permissions.xml │ │ │ ├── strings_plans.xml │ │ │ ├── strings_qrcode.xml │ │ │ ├── strings_scenes.xml │ │ │ ├── strings_security.xml │ │ │ ├── strings_server.xml │ │ │ ├── strings_settings.xml │ │ │ ├── strings_speech.xml │ │ │ ├── strings_switches.xml │ │ │ ├── strings_temperature.xml │ │ │ ├── strings_timer.xml │ │ │ ├── strings_users.xml │ │ │ ├── strings_utilities.xml │ │ │ ├── strings_vars.xml │ │ │ ├── strings_weather.xml │ │ │ ├── strings_welcome.xml │ │ │ ├── strings_widgets.xml │ │ │ ├── strings_wizard.xml │ │ │ ├── styles.xml │ │ │ └── translationArrays.xml │ └── paid │ │ ├── AndroidManifest.xml │ │ └── google-services.json └── version.properties ├── build.gradle ├── domoticzapi ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── nl │ │ │ └── hnogames │ │ │ └── domoticzapi │ │ │ ├── Containers │ │ │ ├── CameraInfo.java │ │ │ ├── ConfigInfo.java │ │ │ ├── DevicesInfo.java │ │ │ ├── EventInfo.java │ │ │ ├── EventXmlInfo.java │ │ │ ├── ExtendedStatusInfo.java │ │ │ ├── GraphPointInfo.java │ │ │ ├── Language.java │ │ │ ├── LogInfo.java │ │ │ ├── LoginInfo.java │ │ │ ├── NotificationInfo.java │ │ │ ├── NotificationTypeInfo.java │ │ │ ├── PlanInfo.java │ │ │ ├── SceneInfo.java │ │ │ ├── ServerInfo.java │ │ │ ├── ServerUpdateInfo.java │ │ │ ├── SettingsInfo.java │ │ │ ├── SunRiseInfo.java │ │ │ ├── SwitchInfo.java │ │ │ ├── SwitchLogInfo.java │ │ │ ├── SwitchTimerInfo.java │ │ │ ├── TemperatureInfo.java │ │ │ ├── UserInfo.java │ │ │ ├── UserVariableInfo.java │ │ │ ├── UtilitiesInfo.java │ │ │ ├── VersionInfo.java │ │ │ └── WeatherInfo.java │ │ │ ├── Domoticz.java │ │ │ ├── DomoticzIcons.java │ │ │ ├── DomoticzUrls.java │ │ │ ├── DomoticzValues.java │ │ │ ├── Interfaces │ │ │ ├── CameraReceiver.java │ │ │ ├── ConfigReceiver.java │ │ │ ├── DevicesReceiver.java │ │ │ ├── DownloadUpdateServerReceiver.java │ │ │ ├── EventReceiver.java │ │ │ ├── EventXmlReceiver.java │ │ │ ├── GraphDataReceiver.java │ │ │ ├── JSONParserInterface.java │ │ │ ├── LanguageReceiver.java │ │ │ ├── LoginReceiver.java │ │ │ ├── LogsReceiver.java │ │ │ ├── MobileDeviceReceiver.java │ │ │ ├── NotificationReceiver.java │ │ │ ├── NotificationTypesReceiver.java │ │ │ ├── PlansReceiver.java │ │ │ ├── ScenesReceiver.java │ │ │ ├── SendNotificationReceiver.java │ │ │ ├── SettingsReceiver.java │ │ │ ├── StatusReceiver.java │ │ │ ├── SunRiseReceiver.java │ │ │ ├── SwitchLogReceiver.java │ │ │ ├── SwitchTimerReceiver.java │ │ │ ├── SwitchesReceiver.java │ │ │ ├── TemperatureReceiver.java │ │ │ ├── UpdateDomoticzServerReceiver.java │ │ │ ├── UpdateDownloadReadyReceiver.java │ │ │ ├── UpdateVersionReceiver.java │ │ │ ├── UserVariablesReceiver.java │ │ │ ├── UsersReceiver.java │ │ │ ├── UtilitiesReceiver.java │ │ │ ├── VersionReceiver.java │ │ │ ├── VolleyErrorListener.java │ │ │ ├── WeatherReceiver.java │ │ │ ├── WifiSSIDListener.java │ │ │ └── setCommandReceiver.java │ │ │ ├── Parsers │ │ │ ├── CameraParser.java │ │ │ ├── ConfigParser.java │ │ │ ├── DevicesParser.java │ │ │ ├── DownloadUpdateParser.java │ │ │ ├── EventsParser.java │ │ │ ├── EventsXmlParser.java │ │ │ ├── GraphDataParser.java │ │ │ ├── LanguageParser.java │ │ │ ├── LogOffParser.java │ │ │ ├── LoginParser.java │ │ │ ├── LogsParser.java │ │ │ ├── MobileDeviceParser.java │ │ │ ├── NotificationTypesParser.java │ │ │ ├── NotificationsParser.java │ │ │ ├── PlanParser.java │ │ │ ├── ScenesParser.java │ │ │ ├── SendNotificationParser.java │ │ │ ├── SettingsParser.java │ │ │ ├── StatusInfoParser.java │ │ │ ├── SunRiseParser.java │ │ │ ├── SwitchLogParser.java │ │ │ ├── SwitchTimerParser.java │ │ │ ├── SwitchesParser.java │ │ │ ├── TemperaturesParser.java │ │ │ ├── UpdateDomoticzServerParser.java │ │ │ ├── UpdateDownloadReadyParser.java │ │ │ ├── UpdateVersionParser.java │ │ │ ├── UserVariablesParser.java │ │ │ ├── UsersParser.java │ │ │ ├── UtilitiesParser.java │ │ │ ├── VersionParser.java │ │ │ ├── WeatherParser.java │ │ │ └── setCommandParser.java │ │ │ └── Utils │ │ │ ├── BitmapLruCache.java │ │ │ ├── PhoneConnectionUtil.java │ │ │ ├── RequestUtil.java │ │ │ ├── SerializableManager.java │ │ │ ├── ServerUtil.java │ │ │ ├── SessionUtil.java │ │ │ ├── UsefulBits.java │ │ │ └── VolleyUtil.java │ │ └── res │ │ ├── drawable-hdpi-v11 │ │ ├── bordershadowdark.xml │ │ └── domoticz_white.png │ │ ├── drawable-hdpi-v14 │ │ ├── appwidget_bg.9.png │ │ ├── appwidget_bg_focused.9.png │ │ ├── appwidget_bg_pressed.9.png │ │ ├── appwidget_dark_bg.9.png │ │ ├── appwidget_dark_bg_focused.9.png │ │ ├── appwidget_inner_focused_c.9.png │ │ ├── appwidget_inner_focused_l.9.png │ │ ├── appwidget_inner_focused_r.9.png │ │ ├── appwidget_inner_pressed_c.9.png │ │ ├── appwidget_inner_pressed_l.9.png │ │ └── appwidget_inner_pressed_r.9.png │ │ ├── drawable-hdpi-v9 │ │ └── domoticz_white.png │ │ ├── drawable-hdpi │ │ ├── appwidget_bg.9.png │ │ ├── appwidget_bg_focused.9.png │ │ ├── appwidget_bg_pressed.9.png │ │ ├── appwidget_dark_bg.9.png │ │ ├── appwidget_dark_bg_focused.9.png │ │ ├── appwidget_dark_bg_pressed.9.png │ │ ├── appwidget_inner_focused_c.9.png │ │ ├── appwidget_inner_focused_l.9.png │ │ ├── appwidget_inner_focused_r.9.png │ │ ├── appwidget_inner_pressed_c.9.png │ │ ├── appwidget_inner_pressed_l.9.png │ │ ├── appwidget_inner_pressed_r.9.png │ │ ├── darkheader.png │ │ ├── domoticz_white.png │ │ ├── empty.png │ │ ├── ic_arrow_down.png │ │ ├── ic_arrow_up.png │ │ ├── ic_cameras.png │ │ ├── ic_dashboard.png │ │ ├── ic_domoticz_logo.png │ │ ├── ic_domoticz_logo_white.png │ │ ├── ic_event.png │ │ ├── ic_launcher.png │ │ ├── ic_logs.png │ │ ├── ic_microphone.png │ │ ├── ic_minus.png │ │ ├── ic_pause.png │ │ ├── ic_plan.png │ │ ├── ic_play.png │ │ ├── ic_plus.png │ │ ├── ic_repeat_black_18dp.png │ │ ├── ic_scenes.png │ │ ├── ic_schedule_black_18dp.png │ │ ├── ic_sort.png │ │ ├── ic_stop.png │ │ ├── ic_switch.png │ │ ├── ic_temperature.png │ │ ├── ic_utilities.png │ │ ├── ic_vars.png │ │ ├── ic_weather.png │ │ ├── ic_wizard.png │ │ └── placeholder.png │ │ ├── drawable-ldpi │ │ ├── darkheader.png │ │ ├── domoticz_white.png │ │ ├── empty.png │ │ ├── ic_arrow_down.png │ │ ├── ic_arrow_up.png │ │ ├── ic_cameras.png │ │ ├── ic_dashboard.png │ │ ├── ic_domoticz_logo.png │ │ ├── ic_domoticz_logo_white.png │ │ ├── ic_event.png │ │ ├── ic_launcher.png │ │ ├── ic_logs.png │ │ ├── ic_microphone.png │ │ ├── ic_minus.png │ │ ├── ic_pause.png │ │ ├── ic_plan.png │ │ ├── ic_play.png │ │ ├── ic_plus.png │ │ ├── ic_repeat_black_18dp.png │ │ ├── ic_scenes.png │ │ ├── ic_schedule_black_18dp.png │ │ ├── ic_sort.png │ │ ├── ic_stop.png │ │ ├── ic_switch.png │ │ ├── ic_temperature.png │ │ ├── ic_utilities.png │ │ ├── ic_vars.png │ │ ├── ic_weather.png │ │ ├── ic_wizard.png │ │ └── placeholder.png │ │ ├── drawable-mdpi-v11 │ │ └── domoticz_white.png │ │ ├── drawable-mdpi-v14 │ │ ├── appwidget_bg.9.png │ │ ├── appwidget_bg_focused.9.png │ │ ├── appwidget_bg_pressed.9.png │ │ ├── appwidget_dark_bg.9.png │ │ ├── appwidget_dark_bg_focused.9.png │ │ ├── appwidget_inner_focused_c.9.png │ │ ├── appwidget_inner_focused_l.9.png │ │ ├── appwidget_inner_focused_r.9.png │ │ ├── appwidget_inner_pressed_c.9.png │ │ ├── appwidget_inner_pressed_l.9.png │ │ └── appwidget_inner_pressed_r.9.png │ │ ├── drawable-mdpi-v9 │ │ └── domoticz_white.png │ │ ├── drawable-mdpi │ │ ├── appwidget_bg.9.png │ │ ├── appwidget_bg_focused.9.png │ │ ├── appwidget_bg_pressed.9.png │ │ ├── appwidget_dark_bg.9.png │ │ ├── appwidget_dark_bg_focused.9.png │ │ ├── appwidget_dark_bg_pressed.9.png │ │ ├── appwidget_inner_focused_c.9.png │ │ ├── appwidget_inner_focused_l.9.png │ │ ├── appwidget_inner_focused_r.9.png │ │ ├── appwidget_inner_pressed_c.9.png │ │ ├── appwidget_inner_pressed_l.9.png │ │ ├── appwidget_inner_pressed_r.9.png │ │ ├── button_off.xml │ │ ├── darkheader.png │ │ ├── domoticz_white.png │ │ ├── empty.png │ │ ├── ic_arrow_down.png │ │ ├── ic_arrow_up.png │ │ ├── ic_cameras.png │ │ ├── ic_dashboard.png │ │ ├── ic_domoticz_logo.png │ │ ├── ic_domoticz_logo_white.png │ │ ├── ic_event.png │ │ ├── ic_launcher.png │ │ ├── ic_logs.png │ │ ├── ic_microphone.png │ │ ├── ic_minus.png │ │ ├── ic_pause.png │ │ ├── ic_plan.png │ │ ├── ic_play.png │ │ ├── ic_plus.png │ │ ├── ic_repeat_black_18dp.png │ │ ├── ic_scenes.png │ │ ├── ic_schedule_black_18dp.png │ │ ├── ic_sort.png │ │ ├── ic_stop.png │ │ ├── ic_switch.png │ │ ├── ic_temperature.png │ │ ├── ic_utilities.png │ │ ├── ic_vars.png │ │ ├── ic_weather.png │ │ ├── ic_wizard.png │ │ └── placeholder.png │ │ ├── drawable-nodpi │ │ ├── widget_preview_dark.png │ │ └── widget_preview_light.png │ │ ├── drawable-xhdpi-v11 │ │ └── domoticz_white.png │ │ ├── drawable-xhdpi-v14 │ │ ├── appwidget_bg.9.png │ │ ├── appwidget_bg_focused.9.png │ │ ├── appwidget_bg_pressed.9.png │ │ ├── appwidget_dark_bg.9.png │ │ ├── appwidget_dark_bg_focused.9.png │ │ ├── appwidget_inner_focused_c.9.png │ │ ├── appwidget_inner_focused_l.9.png │ │ ├── appwidget_inner_focused_r.9.png │ │ ├── appwidget_inner_pressed_c.9.png │ │ ├── appwidget_inner_pressed_l.9.png │ │ └── appwidget_inner_pressed_r.9.png │ │ ├── drawable-xhdpi-v9 │ │ └── domoticz_white.png │ │ ├── drawable-xhdpi │ │ ├── darkheader.png │ │ ├── domoticz_white.png │ │ ├── ic_arrow_down.png │ │ ├── ic_arrow_up.png │ │ ├── ic_cameras.png │ │ ├── ic_dashboard.png │ │ ├── ic_domoticz_logo.png │ │ ├── ic_domoticz_logo_white.png │ │ ├── ic_event.png │ │ ├── ic_launcher.png │ │ ├── ic_logs.png │ │ ├── ic_microphone.png │ │ ├── ic_minus.png │ │ ├── ic_pause.png │ │ ├── ic_plan.png │ │ ├── ic_play.png │ │ ├── ic_plus.png │ │ ├── ic_repeat_black_18dp.png │ │ ├── ic_scenes.png │ │ ├── ic_schedule_black_18dp.png │ │ ├── ic_sort.png │ │ ├── ic_stop.png │ │ ├── ic_switch.png │ │ ├── ic_temperature.png │ │ ├── ic_utilities.png │ │ ├── ic_vars.png │ │ ├── ic_weather.png │ │ ├── ic_wizard.png │ │ ├── placeholder.png │ │ ├── sad_smiley.jpeg │ │ └── sad_smiley_dark.png │ │ ├── drawable-xxhdpi-v11 │ │ └── domoticz_white.png │ │ ├── drawable-xxhdpi-v9 │ │ └── domoticz_white.png │ │ ├── drawable-xxhdpi │ │ ├── air_conditioning_indoor.png │ │ ├── air_conditioning_outdoor.png │ │ ├── alarm.png │ │ ├── bulb.png │ │ ├── christmas.png │ │ ├── clock48.png │ │ ├── clock_b.png │ │ ├── cold.png │ │ ├── computer.png │ │ ├── darkheader.png │ │ ├── defaultimage.png │ │ ├── dome_camera.png │ │ ├── domoticz_white.png │ │ ├── door_handle.png │ │ ├── doorbell.png │ │ ├── down.png │ │ ├── drop.png │ │ ├── electric_range.png │ │ ├── eye.png │ │ ├── flame.png │ │ ├── garage.png │ │ ├── generic.png │ │ ├── google_home.png │ │ ├── harddisk.png │ │ ├── heater.png │ │ ├── houseplant.png │ │ ├── ic_arrow_down.png │ │ ├── ic_arrow_up.png │ │ ├── ic_cameras.png │ │ ├── ic_dashboard.png │ │ ├── ic_domoticz_logo.png │ │ ├── ic_domoticz_logo_white.png │ │ ├── ic_event.png │ │ ├── ic_launcher.png │ │ ├── ic_logs.png │ │ ├── ic_microphone.png │ │ ├── ic_minus.png │ │ ├── ic_pause.png │ │ ├── ic_plan.png │ │ ├── ic_play.png │ │ ├── ic_plus.png │ │ ├── ic_repeat_black_18dp.png │ │ ├── ic_scenes.png │ │ ├── ic_schedule_black_18dp.png │ │ ├── ic_sort.png │ │ ├── ic_stop.png │ │ ├── ic_switch.png │ │ ├── ic_temperature.png │ │ ├── ic_utilities.png │ │ ├── ic_vars.png │ │ ├── ic_weather.png │ │ ├── ic_wizard.png │ │ ├── ip_camera.png │ │ ├── key.png │ │ ├── lock_a.png │ │ ├── lock_b.png │ │ ├── loudspeakers.png │ │ ├── media.png │ │ ├── mic.png │ │ ├── pet.png │ │ ├── placeholder.jpg │ │ ├── plug.png │ │ ├── pool.png │ │ ├── power.png │ │ ├── power_button.png │ │ ├── printer.png │ │ ├── qrcode.png │ │ ├── recycling.png │ │ ├── remote_control.png │ │ ├── router.png │ │ ├── smartphone.png │ │ ├── smoke.png │ │ ├── socket_f.png │ │ ├── socket_g.png │ │ ├── socket_i.png │ │ ├── solar_panel.png │ │ ├── sun.png │ │ ├── temperature.png │ │ ├── thermostat.png │ │ ├── tv.png │ │ ├── up.png │ │ ├── users.png │ │ ├── vacuum_robot.png │ │ ├── ventilation.png │ │ ├── washer.png │ │ └── weather.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_domoticz_logo.png │ │ ├── ic_domoticz_logo_white.png │ │ ├── ic_pause.png │ │ ├── ic_play.png │ │ ├── ic_repeat_black_18dp.png │ │ └── ic_schedule_black_18dp.png │ │ ├── drawable │ │ ├── appwidget_bg_clickable.xml │ │ ├── appwidget_button_center.xml │ │ ├── appwidget_button_left.xml │ │ ├── appwidget_button_right.xml │ │ ├── appwidget_dark_bg_clickable.xml │ │ ├── border.xml │ │ ├── bordershadow.xml │ │ ├── button_dark_status.xml │ │ ├── button_dark_status_normal.xml │ │ ├── button_dark_status_pressed.xml │ │ ├── button_normal.xml │ │ ├── button_on.xml │ │ ├── button_pressed.xml │ │ ├── button_status.xml │ │ ├── button_status_dark.xml │ │ ├── button_status_dark_normal.xml │ │ ├── button_status_dark_pressed.xml │ │ ├── button_status_normal.xml │ │ ├── button_status_pressed.xml │ │ ├── button_white_status.xml │ │ ├── button_white_status_normal.xml │ │ └── button_white_status_pressed.xml │ │ ├── values-bg │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-ca │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-cs │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-da │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-de │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-el │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-es │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-fa │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-fi │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-fr │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-he │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-hr │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-hu │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-it │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-nl │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-no │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-pl │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-pt │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-ro │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-ru │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-sk │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-sl │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-sr │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-sv │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-tr │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-uk │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values-zh-rCN │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-zh-rTW │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ ├── values-zh │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ └── strings_wizard.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawer_actions.xml │ │ ├── evohome_states.xml │ │ ├── strings.xml │ │ ├── strings_actions.xml │ │ ├── strings_cameras.xml │ │ ├── strings_dashboard.xml │ │ ├── strings_errors.xml │ │ ├── strings_events.xml │ │ ├── strings_locations.xml │ │ ├── strings_logs.xml │ │ ├── strings_nfc.xml │ │ ├── strings_notifications.xml │ │ ├── strings_permissions.xml │ │ ├── strings_plans.xml │ │ ├── strings_qrcode.xml │ │ ├── strings_scenes.xml │ │ ├── strings_security.xml │ │ ├── strings_server.xml │ │ ├── strings_settings.xml │ │ ├── strings_speech.xml │ │ ├── strings_switches.xml │ │ ├── strings_temperature.xml │ │ ├── strings_timer.xml │ │ ├── strings_users.xml │ │ ├── strings_utilities.xml │ │ ├── strings_vars.xml │ │ ├── strings_weather.xml │ │ ├── strings_welcome.xml │ │ ├── strings_widgets.xml │ │ ├── strings_wizard.xml │ │ └── translationArrays.xml └── version.properties ├── gradle-wrapper.properties ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs ├── MemorizingTrustManager │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── proguard-project.txt │ ├── res │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-es │ │ │ └── strings.xml │ │ ├── values-eu │ │ │ └── strings.xml │ │ ├── values-fi │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-nl │ │ │ └── strings.xml │ │ ├── values-no │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── de │ │ └── duenndns │ │ └── ssl │ │ ├── MTMDecision.java │ │ ├── MemorizingActivity.java │ │ └── MemorizingTrustManager.java ├── SeekArc_library │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── licence.txt │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── scrubber_control_disabled_holo.png │ │ │ ├── scrubber_control_focused_holo.png │ │ │ ├── scrubber_control_normal_holo.png │ │ │ └── scrubber_control_pressed_holo.png │ │ ├── drawable │ │ │ └── seek_arc_control_selector.xml │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── triggertrap │ │ └── seekarc │ │ └── SeekArc.java └── unofficialtileapi │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── google │ │ └── android │ │ ├── aidl │ │ ├── BaseProxy.java │ │ ├── BaseStub.java │ │ └── Codecs.java │ │ └── clockwork │ │ └── tiles │ │ ├── ITileProvider.java │ │ ├── ITilesHost.java │ │ ├── TileData.java │ │ └── TileProviderService.java │ └── res │ └── values │ └── strings.xml ├── materialList ├── .gitignore ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── dexafree │ │ └── materialList │ │ ├── card │ │ ├── Action.java │ │ ├── Card.java │ │ ├── CardLayout.java │ │ ├── CardProvider.java │ │ ├── OnActionClickListener.java │ │ ├── action │ │ │ ├── TextViewAction.java │ │ │ └── WelcomeButtonAction.java │ │ ├── event │ │ │ └── DismissEvent.java │ │ └── provider │ │ │ └── ListCardProvider.java │ │ ├── listeners │ │ ├── OnDismissCallback.java │ │ ├── RecyclerItemClickListener.java │ │ └── SwipeDismissRecyclerViewTouchListener.java │ │ └── view │ │ ├── MaterialListAdapter.java │ │ └── MaterialListView.java │ └── res │ ├── drawable-hdpi │ ├── ic_check.png │ └── sample_android.png │ ├── drawable-mdpi │ ├── ic_check.png │ └── sample_android.png │ ├── drawable-xhdpi │ ├── ic_check.png │ └── sample_android.png │ ├── drawable-xxhdpi │ ├── ic_check.png │ └── sample_android.png │ ├── layout │ ├── divider.xml │ ├── headline_16dp.xml │ ├── headline_24dp.xml │ ├── headline_image.xml │ ├── material_basic_buttons_card.xml │ ├── material_basic_image_buttons_card_layout.xml │ ├── material_big_image_card_layout.xml │ ├── material_image_with_buttons_card.xml │ ├── material_list_card_layout.xml │ ├── material_small_image_card.xml │ ├── material_welcome_card_layout.xml │ ├── rich_media_image.xml │ ├── supporting_text_16dp.xml │ └── supporting_text_24dp.xml │ ├── values-v14 │ └── styles_material.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── styles_material.xml ├── screenshots ├── phone store │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ ├── screenshot4.png │ └── screenshot5.png ├── phone │ ├── Screenshot_2022-07-04-21-21-46-126_nl.hnogames.domoticz.premium.jpg │ ├── Screenshot_2022-07-04-21-22-09-741_nl.hnogames.domoticz.premium.jpg │ ├── Screenshot_2022-07-04-21-22-15-472_nl.hnogames.domoticz.premium.jpg │ ├── Screenshot_2022-07-04-21-22-23-810_nl.hnogames.domoticz.premium.jpg │ ├── Screenshot_2022-07-04-21-22-31-411_nl.hnogames.domoticz.premium.jpg │ ├── Screenshot_2022-07-04-21-22-41-268_nl.hnogames.domoticz.premium.jpg │ ├── Screenshot_2022-07-04-21-22-45-138_nl.hnogames.domoticz.premium.jpg │ └── Screenshot_2022-07-04-21-23-51-285_nl.hnogames.domoticz.premium.jpg ├── tablet store │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ ├── screenshot4.png │ └── screenshot5.png └── tablet │ ├── 1656965415195.jpg │ ├── 1656965415200.jpg │ ├── 1656965415207.jpg │ ├── 1656965415212.jpg │ ├── 1656965415217.jpg │ └── 1656965415223.jpg ├── settings.gradle └── wear ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── nl │ └── hnogames │ └── domoticz │ ├── Adapter │ ├── CustomScrollingLayoutCallback.java │ └── ListAdapter.java │ ├── Domoticz │ └── Domoticz.java │ ├── ErrorActivity.java │ ├── SendActivity.java │ ├── SplashActivity.java │ ├── WearActivity.java │ ├── app │ └── DomoticzActivity.java │ ├── containers │ ├── DevicesInfo.java │ └── ExtendedStatusInfo.java │ └── utils │ └── WearUsefulBits.java └── res ├── drawable-hdpi ├── darkheader.png ├── ic_arrow_down.png ├── ic_arrow_up.png ├── ic_cameras.png ├── ic_dashboard.png ├── ic_launcher.png ├── ic_logs.png ├── ic_minus.png ├── ic_plan.png ├── ic_plus.png ├── ic_scenes.png ├── ic_stop.png ├── ic_switch.png ├── ic_temperature.png ├── ic_utilities.png ├── ic_weather.png └── splash_background.png ├── drawable-ldpi ├── darkheader.png ├── ic_arrow_down.png ├── ic_arrow_up.png ├── ic_cameras.png ├── ic_dashboard.png ├── ic_launcher.png ├── ic_logs.png ├── ic_minus.png ├── ic_plan.png ├── ic_plus.png ├── ic_scenes.png ├── ic_stop.png ├── ic_switch.png ├── ic_temperature.png ├── ic_utilities.png ├── ic_weather.png └── splash_background.png ├── drawable-mdpi ├── ic_arrow_down.png ├── ic_arrow_up.png ├── ic_cameras.png ├── ic_dashboard.png ├── ic_launcher.png ├── ic_logs.png ├── ic_minus.png ├── ic_plan.png ├── ic_plus.png ├── ic_scenes.png ├── ic_stop.png ├── ic_switch.png ├── ic_temperature.png ├── ic_utilities.png ├── ic_weather.png └── splash_background.png ├── drawable-xhdpi ├── ic_arrow_down.png ├── ic_arrow_up.png ├── ic_cameras.png ├── ic_dashboard.png ├── ic_domoticz_logo.png ├── ic_launcher.png ├── ic_logs.png ├── ic_minus.png ├── ic_plan.png ├── ic_plus.png ├── ic_scenes.png ├── ic_stop.png ├── ic_switch.png ├── ic_temperature.png ├── ic_utilities.png └── ic_weather.png ├── drawable-xxhdpi ├── air_conditioning_indoor.png ├── air_conditioning_outdoor.png ├── alarm.png ├── bulb.png ├── christmas.png ├── clock48.png ├── clock_b.png ├── cold.png ├── computer.png ├── darkheader.png ├── defaultimage.png ├── dome_camera.png ├── domoticz_white.png ├── door_handle.png ├── doorbell.png ├── down.png ├── drop.png ├── electric_range.png ├── eye.png ├── flame.png ├── garage.png ├── generic.png ├── google_home.png ├── harddisk.png ├── heater.png ├── houseplant.png ├── ic_arrow_down.png ├── ic_arrow_up.png ├── ic_cameras.png ├── ic_dashboard.png ├── ic_launcher.png ├── ic_logs.png ├── ic_minus.png ├── ic_plan.png ├── ic_plus.png ├── ic_scenes.png ├── ic_stop.png ├── ic_switch.png ├── ic_temperature.png ├── ic_utilities.png ├── ic_weather.png ├── ip_camera.png ├── key.png ├── lock_a.png ├── lock_b.png ├── loudspeakers.png ├── media.png ├── mic.png ├── pet.png ├── placeholder.jpg ├── plug.png ├── pool.png ├── power.png ├── power_button.png ├── printer.png ├── qrcode.png ├── recycling.png ├── remote_control.png ├── router.png ├── smartphone.png ├── smoke.png ├── socket_f.png ├── socket_g.png ├── socket_i.png ├── solar_panel.png ├── sun.png ├── temperature.png ├── thermostat.png ├── tv.png ├── up.png ├── users.png ├── vacuum_robot.png ├── ventilation.png ├── washer.png └── weather.png ├── layout ├── activity_error.xml ├── activity_list.xml ├── activity_list_widget.xml ├── activity_main.xml ├── activity_send.xml ├── list_item.xml ├── tile_main.xml ├── view_main.xml └── widget_item.xml ├── mipmap-hdpi └── ic_launcher.png ├── mipmap-mdpi └── ic_launcher.png ├── mipmap-xhdpi └── ic_launcher.png ├── mipmap-xxhdpi └── ic_launcher.png └── values ├── colors.xml ├── integers.xml ├── strings.xml ├── strings_wear.xml └── styles.xml /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/src/main/rename-translations.txt: -------------------------------------------------------------------------------- 1 | for /d %i in (*) do ren "%~i" "values-%~i" -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appwidget_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/appwidget_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cameras.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_cameras.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_event.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_event.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_logs.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_pause.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_play.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_plus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_plus.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_switch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_switch.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_vars.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_weather.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_wizard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-hdpi/ic_wizard.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/darkheader.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/darkheader.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_cameras.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_cameras.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_logs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_logs.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_pause.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_play.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_switch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_switch.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_vars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_vars.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_weather.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_wizard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-ldpi/ic_wizard.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/appwidget_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/appwidget_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/darkheader.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/darkheader.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cameras.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_cameras.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_event.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_event.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_logs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_logs.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_pause.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_play.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_switch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_switch.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_vars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_vars.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_weather.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_wizard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-mdpi/ic_wizard.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/domoticz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-nodpi/domoticz.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/darkheader.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/darkheader.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cameras.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_cameras.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_dashboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_dashboard.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_event.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_event.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_logs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_logs.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_pause.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_play.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_switch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_switch.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_utilities.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_utilities.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_vars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_vars.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_weather.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_wizard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/ic_wizard.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sad_smiley.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xhdpi/sad_smiley.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/darkheader.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/darkheader.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cameras.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_cameras.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_dashboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_dashboard.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_event.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_event.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_logs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_logs.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_pause.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_play.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_plus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_plus.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_stop.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_switch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_switch.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_utilities.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_utilities.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_vars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_vars.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_weather.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_wizard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/ic_wizard.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/placeholder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/placeholder.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tileset_mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/tileset_mic.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/tileset_nfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxhdpi/tileset_nfc.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxxhdpi/ic_pause.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable-xxxhdpi/ic_play.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/palette.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/palette.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/wheel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/wheel.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/wheel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/wheel_dark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/widgetpreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/widgetpreview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/widgetsmallpreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/widgetsmallpreview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/widgettemppreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/widgettemppreview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/wwpalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/wwpalette.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/wwslider.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/drawable/wwslider.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #0078C1 4 | -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/alarm.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/appwidget_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/appwidget_bg.9.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/christmastree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/christmastree.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/clock48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/clock48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/computer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/cone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/contact.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/cooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/cooling.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/darkheader.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/defaultimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/defaultimage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/demand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/demand.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/dimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/dimmer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/door.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/empty.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/fan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/flame.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/gauge.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/generic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/harddisk.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/heating.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_cameras.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_logs.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_microphone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_pause.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_play.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_sort.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_switch.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_vars.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_weather.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/ic_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/ic_wizard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/leaf.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/lights.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/lock.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/media.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/mic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/motion.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/percentage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/phone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/printer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/program.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/pushoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/pushoff.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/qrcode.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/radiation.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/rain.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/refresh.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/remote.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/rgb.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/scale.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/security.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/siren.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/smoke.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/speaker.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/sub.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/temp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/temp48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/text.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/tv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/uv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/uvdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/uvdark.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/uvsunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/uvsunny.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/video.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/visibility.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/volume.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/wall.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/water.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-hdpi/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-hdpi/wind.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/alarm.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/christmastree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/christmastree.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/clock48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/clock48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/computer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/cone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/contact.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/cooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/cooling.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/darkheader.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/defaultimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/defaultimage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/demand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/demand.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/dimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/dimmer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/door.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/empty.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/fan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/flame.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/gauge.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/generic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/harddisk.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/heating.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_cameras.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_event.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_logs.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_microphone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_pause.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_play.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_sort.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_switch.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_vars.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_weather.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/ic_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/ic_wizard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/leaf.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/lights.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/lock.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/media.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/mic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/motion.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/percentage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/phone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/printer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/program.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/pushoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/pushoff.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/qrcode.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/radiation.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/rain.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/refresh.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/remote.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/rgb.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/scale.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/security.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/siren.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/smoke.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/speaker.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/sub.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/temp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/temp48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/text.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/tv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/uv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/uvdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/uvdark.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/uvsunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/uvsunny.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/video.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/visibility.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/volume.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/wall.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/water.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-ldpi/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-ldpi/wind.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/alarm.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/appwidget_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/appwidget_bg.9.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/christmastree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/christmastree.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/clock48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/clock48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/computer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/cone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/contact.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/cooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/cooling.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/darkheader.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/defaultimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/defaultimage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/demand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/demand.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/dimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/dimmer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/door.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/empty.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/fan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/flame.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/gauge.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/generic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/harddisk.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/heating.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_cameras.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_logs.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_microphone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_pause.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_play.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_sort.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_switch.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_vars.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_weather.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/ic_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/ic_wizard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/leaf.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/lights.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/lock.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/media.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/mic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/motion.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/percentage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/phone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/printer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/program.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/pushoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/pushoff.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/qrcode.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/radiation.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/rain.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/refresh.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/remote.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/rgb.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/scale.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/security.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/siren.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/smoke.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/speaker.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/sub.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/temp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/temp48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/text.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/tv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/uv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/uvdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/uvdark.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/uvsunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/uvsunny.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/video.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/visibility.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/volume.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/wall.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/water.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-mdpi/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-mdpi/wind.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-nodpi/domoticz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-nodpi/domoticz.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/alarm.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/christmastree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/christmastree.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/clock48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/clock48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/computer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/cone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/contact.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/cooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/cooling.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/darkheader.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/defaultimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/defaultimage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/demand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/demand.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/dimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/dimmer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/door.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/empty.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/fan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/flame.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/gauge.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/generic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/harddisk.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/heating.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_cameras.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_logs.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_microphone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_pause.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_play.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_sort.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_switch.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_vars.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_weather.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/ic_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/ic_wizard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/leaf.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/lights.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/lock.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/media.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/mic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/motion.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/percentage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/phone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/printer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/program.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/pushoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/pushoff.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/qrcode.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/radiation.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/rain.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/refresh.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/remote.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/rgb.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/sad_smiley.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/sad_smiley.jpeg -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/scale.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/security.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/siren.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/smoke.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/speaker.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/sub.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/temp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/temp48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/text.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/tv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/uv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/uvdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/uvdark.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/uvsunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/uvsunny.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/video.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/visibility.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/volume.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/wall.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/water.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xhdpi/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xhdpi/wind.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/alarm.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/christmastree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/christmastree.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/clock48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/clock48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/computer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/cone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/contact.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/cooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/cooling.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/darkheader.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/defaultimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/defaultimage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/demand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/demand.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/dimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/dimmer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/door.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/empty.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/fan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/flame.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/gauge.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/generic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/harddisk.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/heating.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_arrow_down.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_cameras.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_logs.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_microphone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_minus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_pause.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_plan.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_play.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_plus.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_scenes.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_sort.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_switch.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_utilities.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_vars.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_weather.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/ic_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/ic_wizard.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/leaf.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/lights.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/lock.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/media.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/motion.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/percentage.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/phone.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/placeholder.jpg -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/printer.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/program.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/pushoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/pushoff.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/qrcode.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/radiation.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/rain.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/refresh.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/remote.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/rgb.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/scale.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/security.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/siren.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/smoke.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/speaker.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/stop.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/sub.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/temp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/temp48.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/temperature.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/text.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/tv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/up.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/users.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/uv.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/uvdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/uvdark.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/uvsunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/uvsunny.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/video.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/visibility.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/volume.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/wall.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/water.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxhdpi/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxhdpi/wind.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxxhdpi/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxxhdpi/ic_pause.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable-xxxhdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable-xxxhdpi/ic_play.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable/palette.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable/wheel.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable/wheel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable/wheel_dark.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable/widgetpreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable/widgetpreview.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable/wwpalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable/wwpalette.png -------------------------------------------------------------------------------- /app/src/oott/res/drawable/wwslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/drawable/wwslider.png -------------------------------------------------------------------------------- /app/src/oott/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/oott/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/oott/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/app/src/oott/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/oott/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /app/version.properties: -------------------------------------------------------------------------------- 1 | #Sat Jul 06 14:41:47 CEST 2024 2 | VERSION_BUILD=9712 3 | VERSION_CODE=695 4 | VERSION_PATCH=378 5 | -------------------------------------------------------------------------------- /domoticzapi/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/empty.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/ic_logs.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/ic_plan.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/ic_play.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/ic_plus.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/ic_sort.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/ic_stop.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-hdpi/ic_vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-hdpi/ic_vars.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-ldpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-ldpi/empty.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-mdpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-mdpi/empty.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-xxhdpi/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-xxhdpi/eye.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-xxhdpi/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-xxhdpi/key.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-xxhdpi/pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-xxhdpi/pet.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-xxhdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-xxhdpi/sun.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-xxhdpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-xxhdpi/tv.png -------------------------------------------------------------------------------- /domoticzapi/src/main/res/drawable-xxhdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/domoticzapi/src/main/res/drawable-xxhdpi/up.png -------------------------------------------------------------------------------- /domoticzapi/version.properties: -------------------------------------------------------------------------------- 1 | #Sat Jul 06 14:41:49 CEST 2024 2 | VERSION_BUILD=3675 3 | VERSION_CODE=254 4 | VERSION_PATCH=254 5 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /libs/MemorizingTrustManager/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':example' -------------------------------------------------------------------------------- /libs/unofficialtileapi/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /libs/unofficialtileapi/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Unofficial Tile API 3 | 4 | -------------------------------------------------------------------------------- /materialList/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /materialList/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_NAME=MaterialList 2 | POM_ARTIFACT_ID=materiallist 3 | POM_PACKAGING=aar -------------------------------------------------------------------------------- /materialList/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MaterialList 3 | 4 | -------------------------------------------------------------------------------- /screenshots/phone store/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/phone store/screenshot1.png -------------------------------------------------------------------------------- /screenshots/phone store/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/phone store/screenshot2.png -------------------------------------------------------------------------------- /screenshots/phone store/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/phone store/screenshot3.png -------------------------------------------------------------------------------- /screenshots/phone store/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/phone store/screenshot4.png -------------------------------------------------------------------------------- /screenshots/phone store/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/phone store/screenshot5.png -------------------------------------------------------------------------------- /screenshots/tablet store/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet store/screenshot1.png -------------------------------------------------------------------------------- /screenshots/tablet store/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet store/screenshot2.png -------------------------------------------------------------------------------- /screenshots/tablet store/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet store/screenshot3.png -------------------------------------------------------------------------------- /screenshots/tablet store/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet store/screenshot4.png -------------------------------------------------------------------------------- /screenshots/tablet store/screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet store/screenshot5.png -------------------------------------------------------------------------------- /screenshots/tablet/1656965415195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet/1656965415195.jpg -------------------------------------------------------------------------------- /screenshots/tablet/1656965415200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet/1656965415200.jpg -------------------------------------------------------------------------------- /screenshots/tablet/1656965415207.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet/1656965415207.jpg -------------------------------------------------------------------------------- /screenshots/tablet/1656965415212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet/1656965415212.jpg -------------------------------------------------------------------------------- /screenshots/tablet/1656965415217.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet/1656965415217.jpg -------------------------------------------------------------------------------- /screenshots/tablet/1656965415223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/screenshots/tablet/1656965415223.jpg -------------------------------------------------------------------------------- /wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/darkheader.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_cameras.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_dashboard.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_logs.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_minus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_plan.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_plus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_scenes.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_stop.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_switch.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_utilities.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-hdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-hdpi/ic_weather.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/darkheader.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_arrow_up.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_cameras.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_dashboard.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_logs.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_minus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_plan.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_plus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_scenes.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_stop.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_switch.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_utilities.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-ldpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-ldpi/ic_weather.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_cameras.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_dashboard.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_logs.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_minus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_plan.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_plus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_scenes.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_stop.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_switch.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_utilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_utilities.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-mdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-mdpi/ic_weather.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_arrow_up.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_cameras.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_logs.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_minus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_plan.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_plus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_scenes.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_stop.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_switch.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xhdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xhdpi/ic_weather.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/alarm.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/bulb.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/christmas.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/clock48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/clock48.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/clock_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/clock_b.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/cold.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/computer.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/darkheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/darkheader.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/doorbell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/doorbell.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/down.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/drop.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/eye.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/flame.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/garage.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/generic.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/harddisk.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/heater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/heater.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/houseplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/houseplant.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_cameras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_cameras.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_logs.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_minus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_plan.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_plus.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_scenes.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_stop.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_switch.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ic_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ic_weather.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/ip_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/ip_camera.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/key.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/lock_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/lock_a.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/lock_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/lock_b.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/media.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/pet.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/plug.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/pool.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/power.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/printer.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/qrcode.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/recycling.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/router.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/smartphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/smartphone.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/smoke.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/socket_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/socket_f.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/socket_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/socket_g.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/socket_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/socket_i.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/sun.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/thermostat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/thermostat.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/tv.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/up.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/users.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/washer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/washer.png -------------------------------------------------------------------------------- /wear/src/main/res/drawable-xxhdpi/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/drawable-xxhdpi/weather.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wear/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domoticz/domoticz-android/fad7a2887bbb75e7ee18942949df3061a6c8531f/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png --------------------------------------------------------------------------------