├── .gitignore ├── .travis.yml ├── LICENSE ├── Readme.md ├── appveyor.yml ├── build ├── icon.icns ├── icon.ico ├── icon.png └── icon.xcf ├── docs ├── hmm1.png ├── hmm2.png └── hmm3.png ├── main.js ├── package-lock.json ├── package.json ├── tools ├── convert_easymodes.js ├── convert_imgpaths.js ├── convert_stringtable.js └── update_images.sh └── www ├── css └── homematic-manager.css ├── easymodes ├── ACTOR_SECURITY │ ├── KEY.json │ ├── RAINDETECTOR.json │ ├── SHUTTER_CONTACT.json │ ├── SWITCH_INTERFACE.json │ ├── VIRTUAL_KEY.json │ └── WEATHER.json ├── ACTOR_WINDOW │ ├── KEY.json │ ├── MOTION_DETECTOR.json │ ├── RAINDETECTOR.json │ ├── SENSOR_FOR_CARBON_DIOXIDE.json │ ├── SHUTTER_CONTACT.json │ ├── SWITCH_INTERFACE.json │ ├── VIRTUAL_KEY.json │ └── WEATHER.json ├── ALARMACTUATOR │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── MOTION_DETECTOR.json │ ├── ROTARY_HANDLE_SENSOR.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SWITCH_INTERFACE.json │ ├── TEMPLATE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ ├── WATERDETECTIONSENSOR.json │ └── WEATHER.json ├── BLIND │ ├── BLIND.json │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── PULSE_SENSOR.json │ ├── RAINDETECTOR.json │ ├── SENSOR_FOR_CARBON_DIOXIDE.json │ ├── SMOKE_DETECTOR_TEAM.json │ ├── SWITCH_INTERFACE.json │ ├── TEMPLATE.json │ ├── VIRTUAL_KEY.json │ └── WEATHER.json ├── CLIMATECONTROL_RECEIVER │ ├── CLIMATECONTROL_REGULATOR.json │ └── THERMALCONTROL_TRANSMIT.json ├── CLIMATECONTROL_RT_RECEIVER │ └── CLIMATECONTROL_RT_TRANSCEIVER.json ├── CLIMATECONTROL_VENT_DRIVE │ └── CLIMATECONTROL_REGULATOR.json ├── DDC │ └── KEY.json ├── DIMMER │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── DIMMER.json │ ├── KEY.json │ ├── MOTION_DETECTOR.json │ ├── PULSE_SENSOR.json │ ├── RAINDETECTOR.json │ ├── ROTARY_HANDLE_SENSOR.json │ ├── SENSOR_FOR_CARBON_DIOXIDE.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SMOKE_DETECTOR_TEAM.json │ ├── SWITCH_INTERFACE.json │ ├── TEMPLATE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ └── WATERDETECTIONSENSOR.json ├── HMW_BLIND │ ├── INPUT_OUTPUT_0.json │ ├── INPUT_OUTPUT_1.json │ ├── KEY_0.json │ ├── KEY_1.json │ ├── TEMPLATE.json │ └── VIRTUAL_KEY_1.json ├── HMW_DIMMER │ ├── INPUT_OUTPUT_0.json │ ├── INPUT_OUTPUT_1.json │ ├── KEY_0.json │ ├── KEY_1.json │ ├── TEMPLATE.json │ └── VIRTUAL_KEY_1.json ├── HMW_INPUT_OUTPUT │ ├── INPUT_OUTPUT_0.json │ ├── INPUT_OUTPUT_1.json │ ├── KEY_0.json │ ├── KEY_1.json │ └── VIRTUAL_KEY_1.json ├── HMW_SWITCH │ ├── INPUT_OUTPUT_0.json │ ├── INPUT_OUTPUT_1.json │ ├── KEY_0.json │ ├── KEY_1.json │ ├── TEMPLATE.json │ └── VIRTUAL_KEY_1.json ├── KEYMATIC │ ├── KEY.json │ ├── SHUTTER_CONTACT.json │ ├── SWITCH_INTERFACE.json │ ├── TEMPLATE.json │ └── VIRTUAL_KEY.json ├── REMOTECONTROL_RECEIVER │ └── KEY.json ├── RGBW_AUTOMATIC │ └── KEY.json ├── RGBW_COLOR │ └── KEY.json ├── SIGNAL_CHIME │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── KEY_PAIR.json │ ├── MOTION_DETECTOR.json │ ├── PULSE_SENSOR.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SMOKE_DETECTOR_TEAM.json │ ├── SWITCH_INTERFACE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ └── WATERDETECTIONSENSOR.json ├── SIGNAL_CHIMEM │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── KEY_PAIR.json │ ├── MOTION_DETECTOR.json │ ├── PULSE_SENSOR.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SMOKE_DETECTOR_TEAM.json │ ├── SMOKE_DETECTOR_TEAM_V2.json │ ├── SWITCH_INTERFACE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ └── WATERDETECTIONSENSOR.json ├── SIGNAL_LED │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── KEY_PAIR.json │ ├── MOTION_DETECTOR.json │ ├── PULSE_SENSOR.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SMOKE_DETECTOR_TEAM.json │ ├── SWITCH_INTERFACE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ └── WATERDETECTIONSENSOR.json ├── SIGNAL_LEDM │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── KEY_PAIR.json │ ├── MOTION_DETECTOR.json │ ├── PULSE_SENSOR.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SMOKE_DETECTOR_TEAM.json │ ├── SMOKE_DETECTOR_TEAM_V2.json │ ├── SWITCH_INTERFACE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ └── WATERDETECTIONSENSOR.json ├── STATUS_INDICATOR │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── MOTION_DETECTOR.json │ ├── PULSE_SENSOR.json │ ├── RAINDETECTOR.json │ ├── ROTARY_HANDLE_SENSOR.json │ ├── SENSOR_FOR_CARBON_DIOXIDE.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SWITCH_INTERFACE.json │ ├── TEMPLATE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ ├── WATERDETECTIONSENSOR.json │ └── WEATHER.json ├── SWITCH │ ├── CAPACITIVE_FILLING_LEVEL_SENSOR.json │ ├── CONDITION_CURRENT.json │ ├── CONDITION_FREQUENCY.json │ ├── CONDITION_POWER.json │ ├── CONDITION_VOLTAGE.json │ ├── KEY.json │ ├── MOTION_DETECTOR.json │ ├── PULSE_SENSOR.json │ ├── RAINDETECTOR.json │ ├── ROTARY_HANDLE_SENSOR.json │ ├── SENSOR_FOR_CARBON_DIOXIDE.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── SWITCH.json │ ├── SWITCH_INTERFACE.json │ ├── TEMPLATE.json │ ├── TILT_SENSOR.json │ ├── VIRTUAL_KEY.json │ ├── WATERDETECTIONSENSOR.json │ └── WEATHER.json ├── SWITCH_VIRTUAL_RECEIVER │ ├── KEY_TRANSCEIVER.json │ └── SHUTTER_CONTACT.json ├── VIRTUAL_DIMMER │ └── VIRTUAL_DIMMER.json ├── WEATHER_RECEIVER │ ├── WEATHER.json │ └── WEATHER_TRANSMIT.json ├── WINDOW_SWITCH_RECEIVER │ ├── KEY.json │ ├── ROTARY_HANDLE_SENSOR.json │ ├── SENSOR_WINDOW.json │ ├── SHUTTER_CONTACT.json │ ├── TEMPLATE.json │ └── TILT_SENSOR.json ├── WS_TH │ └── WEATHER.json └── localization │ ├── de │ ├── ACTOR_SECURITY.json │ ├── ACTOR_WINDOW.json │ ├── ALARMACTUATOR.json │ ├── BLIND.json │ ├── CLIMATECONTROL_RECEIVER.json │ ├── CLIMATECONTROL_RT_RECEIVER.json │ ├── DDC.json │ ├── DIMMER.json │ ├── GENERIC.json │ ├── HMW_BLIND.json │ ├── HMW_DIMMER.json │ ├── HMW_INPUT_OUTPUT.json │ ├── HMW_SWITCH.json │ ├── KEYMATIC.json │ ├── PNAME.json │ ├── REMOTECONTROL_RECEIVER.json │ ├── RGBW_AUTOMATIC.json │ ├── RGBW_COLOR.json │ ├── SIGNAL_CHIME.json │ ├── SIGNAL_CHIMEM.json │ ├── SIGNAL_LED.json │ ├── SIGNAL_LEDM.json │ ├── STATUS_INDICATOR.json │ ├── SWITCH.json │ ├── SWITCH_VIRTUAL_RECEIVER.json │ ├── VIRTUAL_DIMMER.json │ ├── WEATHER_RECEIVER.json │ └── WINDOW_SWITCH_RECEIVER.json │ ├── en │ ├── ACTOR_SECURITY.json │ ├── ACTOR_WINDOW.json │ ├── ALARMACTUATOR.json │ ├── BLIND.json │ ├── CLIMATECONTROL_RECEIVER.json │ ├── CLIMATECONTROL_RT_RECEIVER.json │ ├── DDC.json │ ├── DIMMER.json │ ├── GENERIC.json │ ├── HMW_BLIND.json │ ├── HMW_DIMMER.json │ ├── HMW_INPUT_OUTPUT.json │ ├── HMW_SWITCH.json │ ├── KEYMATIC.json │ ├── PNAME.json │ ├── REMOTECONTROL_RECEIVER.json │ ├── RGBW_AUTOMATIC.json │ ├── RGBW_COLOR.json │ ├── SIGNAL_CHIME.json │ ├── SIGNAL_CHIMEM.json │ ├── SIGNAL_LED.json │ ├── SIGNAL_LEDM.json │ ├── STATUS_INDICATOR.json │ ├── SWITCH.json │ ├── SWITCH_VIRTUAL_RECEIVER.json │ ├── VIRTUAL_DIMMER.json │ ├── WEATHER_RECEIVER.json │ └── WINDOW_SWITCH_RECEIVER.json │ └── tr │ ├── ACTOR_SECURITY.json │ ├── ACTOR_WINDOW.json │ ├── ALARMACTUATOR.json │ ├── BLIND.json │ ├── CLIMATECONTROL_RECEIVER.json │ ├── CLIMATECONTROL_RT_RECEIVER.json │ ├── DDC.json │ ├── DIMMER.json │ ├── GENERIC.json │ ├── HMW_BLIND.json │ ├── HMW_DIMMER.json │ ├── HMW_INPUT_OUTPUT.json │ ├── HMW_SWITCH.json │ ├── KEYMATIC.json │ ├── PNAME.json │ ├── REMOTECONTROL_RECEIVER.json │ ├── RGBW_COLOR.json │ ├── SIGNAL_CHIME.json │ ├── SIGNAL_CHIMEM.json │ ├── SIGNAL_LED.json │ ├── SIGNAL_LEDM.json │ ├── STATUS_INDICATOR.json │ ├── SWITCH.json │ ├── SWITCH_VIRTUAL_RECEIVER.json │ ├── VIRTUAL_DIMMER.json │ ├── WEATHER_RECEIVER.json │ └── WINDOW_SWITCH_RECEIVER.json ├── favicon.ico ├── images ├── ajax-loader.gif ├── devices │ ├── 50 │ │ ├── 100_hm-rc-8_thumb.png │ │ ├── 101_hm-sen-db-pcb_thumb.png │ │ ├── 102_hm-es-tx-wm_thumb.png │ │ ├── 103_hm-sen-mdir-wm55_thumb.png │ │ ├── 104_hm-sec-sd-2_thumb.png │ │ ├── 105_hm-sec-sd-2-team_thumb.png │ │ ├── 107_hm-es-pmsw1-pl-R2_thumb.png │ │ ├── 107_hm-es-pmsw1-pl-R3_thumb.png │ │ ├── 107_hm-es-pmsw1-pl-R4_thumb.png │ │ ├── 107_hm-es-pmsw1-pl-R5_thumb.png │ │ ├── 108_hm-rc-dis-h-x-eu_thump.png │ │ ├── 109_hm-lc-sw1-pl-ct_thump.png │ │ ├── 110_hm-es-pmsw1-dr_thump.png │ │ ├── 111_hm-lc-rgbw-wm_thumb.png │ │ ├── 112_hmip-wrc2_thumb.png │ │ ├── 113_hmip-psm-ch_thumb.png │ │ ├── 113_hmip-psm-it_thumb.png │ │ ├── 113_hmip-psm-pe_thumb.png │ │ ├── 113_hmip-psm-uk_thumb.png │ │ ├── 113_hmip-psm_thumb.png │ │ ├── 114_hm-lc-dim1t-fm-lf_thumb.png │ │ ├── 114_hm-lc-dim1t-fm-lf_thumb_2.png │ │ ├── 114_hm-lc-dim1t-fm-lf_thumb_3.png │ │ ├── 115_hm-es-pmsw1-sm_thumb.png │ │ ├── 117_hm-ou-cfm-tw_thumb.png │ │ ├── 117_hm-sec-sir-wm_thumb.png │ │ ├── 118_hmip-swdo_thumb.png │ │ ├── 119_hmip-rc8_thumb.png │ │ ├── 120_hmip-etrv_thumb.png │ │ ├── 121_hmip-wth_thumb.png │ │ ├── 123_oligo.smart.ip.hm_thumb.png │ │ ├── 124_hm-sec-mdir_thumb.png │ │ ├── 125_hmip-smi_thumb.png │ │ ├── 126_hm-sen-li-o_thumb.png │ │ ├── 127_hm-wds30-ot2-sm-2_thumb.png │ │ ├── 128_hm-dis-ep-wm55_thumb.png │ │ ├── 129_hm-lc-ao-sm_thumb.png │ │ ├── 130_hmip-srh_thumb.png │ │ ├── 131_hmip-wrc6_thumb.png │ │ ├── 132_hmip-smo_thumb.png │ │ ├── 133_hmip-asir_thumb.png │ │ ├── 134_hmip-fdt_thumb.png │ │ ├── 134_hmip-fsm_thumb.png │ │ ├── 135_hmip-fsm16_thumb.png │ │ ├── 136_hmip-miob_thumb.png │ │ ├── 137_hmip-fal-c6_thumb.png │ │ ├── 138_hmip-fal-c10_thumb.png │ │ ├── 139_hm-lc-sw1-pcb_thumb.png │ │ ├── 13_hm-ws550sth-i_thumb.png │ │ ├── 140_alpha-ip-rgb_thumb.png │ │ ├── 141_alpha-ip-rgba_thumb.png │ │ ├── 142_hm-mod-em-8bit_thumb.png │ │ ├── 143_hm-lc-dim1t-dr_thumb.png │ │ ├── 144_hmip-wgc_thumb.png │ │ ├── 145_hmip-froll_hmip-fbl_thumb.png │ │ ├── 146_hmip-sth_thumb.png │ │ ├── 147_hmip-sthd_thumb.png │ │ ├── 148_hmip-stho_thumb.png │ │ ├── 149_hmip-sam_thumb.png │ │ ├── 14_hm-sec-key_thumb.png │ │ ├── 150_hm-lc-dw-wm_thumb.png │ │ ├── 151_hmip-pcbs-bat_thumb.png │ │ ├── 152_hmip-swdo-i_thumb.png │ │ ├── 153_hmip-spi_thumb.png │ │ ├── 154_hmip-spdr_thumb.png │ │ ├── 155_hmip-whs2_thumb.png │ │ ├── 156_hmip-mod-oc8_thumb.png │ │ ├── 157_hmip-broll_hmip-bbl_thumb.png │ │ ├── 158_hmip-etrv-uk_thumb.png │ │ ├── 159_hmip-mod-rc8_thumb.png │ │ ├── 15_hm-sec-win_thumb.png │ │ ├── 160_hmipw-drs4_thumb.png │ │ ├── 161_hmipw-drs8_thumb.png │ │ ├── 162_hmipw-drap_thumb.png │ │ ├── 163_hmipw-drbl4_thumb.png │ │ ├── 164_hmipw-dri16_thumb.png │ │ ├── 165_hmipw-fio6_thumb.png │ │ ├── 166_hmipw-drd3_thumb.png │ │ ├── 167_hmipw-dri32_thumb.png │ │ ├── 168_hmip-smi55_thumb.png │ │ ├── 169_hmip-swo-pr_thumb.png │ │ ├── 16_hm-sec-sc_thumb.png │ │ ├── 170_hmip-swo-pl_thumb.png │ │ ├── 171_hmip-swo-b_thumb.png │ │ ├── 172_hmip-swd_thumb.png │ │ ├── 173_hmip-bsl_thumb.png │ │ ├── 174_hmip-slo_thumb.png │ │ ├── 175_hmip-group-heating_thumb.png │ │ ├── 177_hmip-dbb_thumb.png │ │ ├── 178_hmip-etrv-b1_thumb.png │ │ ├── 179_hmip-swdm-b2_thumb.png │ │ ├── 17_hm-sec-rhs_thumb.png │ │ ├── 180_hmip-etrv-b_thumb.png │ │ ├── 181_hmip-swdm_thumb.png │ │ ├── 182_hmip-fci1_thumb.png │ │ ├── 183_hmip-mod-tm_thumb.png │ │ ├── 184_hmip-pcbs2_thumb.png │ │ ├── 185_hmip-FCI6_thumb.png │ │ ├── 186_hmip-mp3p_thumb.png │ │ ├── 187_hmip-rcb1_thumb.png │ │ ├── 188_hmip-etrv-c_thumb.png │ │ ├── 18_hm-rc-4_thumb.png │ │ ├── 193_hmip-wt_thumb.png │ │ ├── 19_hm-rc-12_thumb.png │ │ ├── 20_hm-rc-19_thumb.png │ │ ├── 21_hm-rc-p1_thumb.png │ │ ├── 22_hm-rc-sec3-b_thumb.png │ │ ├── 23_hm-rc-key3-b_thumb.png │ │ ├── 24_hm-cen-3-1_thumb.png │ │ ├── 25_hm-em-cmm_thumb.png │ │ ├── 26_hmw-lc-sw2-dr_thumb.png │ │ ├── 27_hmw-lc-bl1-dr_thumb.png │ │ ├── 28_hmw-lc-dim1l-dr_thumb.png │ │ ├── 29_hmw-io-4-fm_thumb.png │ │ ├── 2_hm-lc-dim1l-cv_thumb.png │ │ ├── 30_hmw-io-12-sw7-dr_thumb.png │ │ ├── 31_hmw-wse-sm_thumb.png │ │ ├── 32_hmw-wsth-sm_thumb.png │ │ ├── 33_hmw-sec-tr-fm_thumb.png │ │ ├── 34_hmw-sys-tm_thumb.png │ │ ├── 35_hmw-sys-tm-dr_thumb.png │ │ ├── 36_hmw-sys-ps7-dr_thumb.png │ │ ├── 38_hm-pbi-4-fm_thumb.png │ │ ├── 39_hm-swi-3-fm_thumb.png │ │ ├── 3_hm-lc-sw4-sm_thumb.png │ │ ├── 42_hm-cc-tc_thumb.png │ │ ├── 43_hm-cc-vd_thumb.png │ │ ├── 44_hm-em-ccm_thumb.png │ │ ├── 45_hm-lc-dim2l-sm_thumb.png │ │ ├── 46_hm-lc-sw4-pcb_thumb.png │ │ ├── 47_hm-sec-tis_thumb.png │ │ ├── 48_hm-sen-ep_thumb.png │ │ ├── 49_hm-sec-wds_thumb.png │ │ ├── 4_hm-lc-sw1-fm_thumb.png │ │ ├── 50_hm-sec-mdir_thumb.png │ │ ├── 51_hm-sec-sd_thumb.png │ │ ├── 52_hm-sec-sd-team_thumb.png │ │ ├── 53_hm-sen-mdir-sm_thumb.png │ │ ├── 54_hm-lc-ddc1-pcb_thumb.png │ │ ├── 54_lc-ddc1-pcb_thumb.png │ │ ├── 54a_lc-ddc1_thumb.png │ │ ├── 55_hm-sec-sfa-sm_thumb.png │ │ ├── 56_hmw-sen-sc-12-dr_thumb.png │ │ ├── 57_hm-cc-scd_thumb.png │ │ ├── 58_hmw-sen-sc-12-fm_thumb.png │ │ ├── 59_hmw-io-12-fm_thumb.png │ │ ├── 5_hm-lc-sw2-fm_thumb.png │ │ ├── 60_hm-ou-cf-pl_thumb.png │ │ ├── 61_hm-lc-bi1-pb-fm_thumb.png │ │ ├── 61_hm-lc-bl1-pb-fm_thumb.png │ │ ├── 64_hm-lc-dim2T-sm_thumb.png │ │ ├── 65_hm-lc-dim1t-fm_thumb.png │ │ ├── 66_hm-lc-dim1t-cv_thumb.png │ │ ├── 67_hm-sci-3-fm_thumb.png │ │ ├── 68_hm-lc-sw4-dr_thumb.png │ │ ├── 69_hm-lc-sw2-dr_thumb.png │ │ ├── 6_hm-lc-bl1-sm_thumb.png │ │ ├── 70_hm-pb-4dis-wm_thumb.png │ │ ├── 71_hmw-io-12-sw14-dr_thumb.png │ │ ├── 72_hm-rc-brc-h_thumb.png │ │ ├── 73_hm-atent_thumb.png │ │ ├── 75_hm-pb-2-wm55_thumb.png │ │ ├── 76_hm-lc-sw4-wm_thumb.png │ │ ├── 77_hm-lc-sw1-ba-pcb_thumb.png │ │ ├── 78_hm-ou-led16_thumb.png │ │ ├── 7_hm-lc-bl1-fm_thumb.png │ │ ├── 80_hm-sen-mdir-o_thumb.png │ │ ├── 81_hm-dis-td-t_thumb.png │ │ ├── 82_hm-sen-wa-od_thumb.png │ │ ├── 83_hm-cc-rt-dn_thumb.png │ │ ├── 84_hm-rc-4-2_thumb.png │ │ ├── 84_hm-rc-4-x_thumb.png │ │ ├── 85_hm-rc-key4-2_thumb.png │ │ ├── 86_hm-pb-6-wm55_thumb.png │ │ ├── 86_hm-rc-sec4-2_thumb.png │ │ ├── 87_hm-sen-rd-o_thumb.png │ │ ├── 88_hm-lc-sw4-ba-pcb_thumb.png │ │ ├── 8_hm-lc-sw1-sm_thumb.png │ │ ├── 92_hm-ou-cm-pcb_thumb.png │ │ ├── 93_hm-es-pmsw1-pl_thumb.png │ │ ├── 94_hm-mod-re-8_thumb.png │ │ ├── 95_group_hm-cc-vg-1_thumb.png │ │ ├── 96_hm-tc-it-wm-w-eu_thumb.png │ │ ├── 97_hm-dis-wm55_thumb.png │ │ ├── 98_hm-sec-sco_thumb.png │ │ ├── 99_hm-mod-em-8_thumb.png │ │ ├── 9_hm-ws550-us_thumb.png │ │ ├── CCU2_thumb.png │ │ ├── CCU3_thumb.png │ │ ├── IP65_G201_thumb.png │ │ ├── OM55_DimmerSwitch_thumb.png │ │ ├── PushButton-2ch-wm_thumb.png │ │ ├── PushButton-4ch-wm_thumb.png │ │ ├── TH_CS_thumb.png │ │ ├── WeatherCombiSensor_thumb.png │ │ ├── coupling │ │ │ ├── _hm-coupling-onoff.png │ │ │ ├── hm-coupling-dim.png │ │ │ ├── hm-coupling-group.png │ │ │ ├── hm-coupling-onoff.png │ │ │ ├── hm-coupling-rgb-dim.png │ │ │ ├── hm-coupling-rgb.png │ │ │ ├── hm-coupling-rgbw-dim.png │ │ │ ├── hm-coupling-rgbw.png │ │ │ ├── hm-coupling-white-dim.png │ │ │ ├── hm-coupling-white.png │ │ │ ├── hm-hue_gateway.png │ │ │ └── hm-lightify_gateway.png │ │ ├── group_hm-cc-vg-1.png │ │ ├── hm_resc-win-pcb-sc_thumb.png │ │ ├── osram-lightify │ │ │ ├── _hm-lightify-onoff.png │ │ │ ├── hm-lightify-dim.png │ │ │ ├── hm-lightify-group.png │ │ │ ├── hm-lightify-onoff.png │ │ │ ├── hm-lightify-rgb-dim.png │ │ │ ├── hm-lightify-rgb.png │ │ │ ├── hm-lightify-rgbw-dim.png │ │ │ ├── hm-lightify-rgbw.png │ │ │ ├── hm-lightify-white-dim.png │ │ │ ├── hm-lightify-white.png │ │ │ └── hm-lightify_gateway.png │ │ └── unknown_device_thumb.png │ └── 250 │ │ ├── 100_hm-rc-8.png │ │ ├── 101_hm-sen-db-pcb.png │ │ ├── 102_hm-es-tx-wm.png │ │ ├── 103_hm-sen-mdir-wm55.png │ │ ├── 104_hm-sec-sd-2.png │ │ ├── 105_hm-sec-sd-2-team.png │ │ ├── 106_hm-lc-sw1-dr.png │ │ ├── 107_hm-es-pmsw1-pl-R2.png │ │ ├── 107_hm-es-pmsw1-pl-R3.png │ │ ├── 107_hm-es-pmsw1-pl-R4.png │ │ ├── 107_hm-es-pmsw1-pl-R5.png │ │ ├── 108_hm-rc-dis-h-x-eu.png │ │ ├── 109_hm-lc-sw1-pl-ct.png │ │ ├── 110_hm-es-pmsw1-dr.png │ │ ├── 111_hm-lc-rgbw-wm.png │ │ ├── 112_hmip-wrc2.png │ │ ├── 113_hmip-psm-ch.png │ │ ├── 113_hmip-psm-it.png │ │ ├── 113_hmip-psm-pe.png │ │ ├── 113_hmip-psm-uk.png │ │ ├── 113_hmip-psm.png │ │ ├── 114_hm-lc-dim1t-fm-lf.png │ │ ├── 114_hm-lc-dim1t-fm-lf_2.png │ │ ├── 114_hm-lc-dim1t-fm-lf_3.png │ │ ├── 115_hm-es-pmsw1-sm.png │ │ ├── 116_hm-rc-4-3_brc-h3.png │ │ ├── 117_hm-ou-cfm-tw.png │ │ ├── 117_hm-sec-sir-wm.png │ │ ├── 118_hmip-swdo.png │ │ ├── 119_hmip-rc8.png │ │ ├── 120_hmip-etrv.png │ │ ├── 121_hmip-wth.png │ │ ├── 123_oligo.smart.ip.hm.png │ │ ├── 124_hm-sec-mdir.png │ │ ├── 125_hmip-smi.png │ │ ├── 126_hm-sen-li-o.png │ │ ├── 127_hm-wds30-ot2-sm-2.png │ │ ├── 128_hm-dis-ep-wm55.png │ │ ├── 129_hm-lc-ao-sm.png │ │ ├── 130_hmip-srh.png │ │ ├── 131_hmip-wrc6.png │ │ ├── 132_hmip-smo.png │ │ ├── 133_hmip-asir.png │ │ ├── 134_hmip-fdt.png │ │ ├── 134_hmip-fsm.png │ │ ├── 135_hmip-fsm16.png │ │ ├── 136_hmip-miob.png │ │ ├── 137_hmip-fal-c6.png │ │ ├── 138_hmip-fal-c10.png │ │ ├── 139_hm-lc-sw1-pcb.png │ │ ├── 13_hm-ws550sth-i.png │ │ ├── 140_alpha-ip-rgb.png │ │ ├── 141_alpha-ip-rgba.png │ │ ├── 142_hm-mod-em-8bit.png │ │ ├── 143_hm-lc-dim1t-dr.png │ │ ├── 144_hmip-wgc.png │ │ ├── 145_hmip-froll_hmip-fbl.png │ │ ├── 146_hmip-sth.png │ │ ├── 147_hmip-sthd.png │ │ ├── 148_hmip-stho.png │ │ ├── 149_hmip-sam.png │ │ ├── 14_hm-sec-key.png │ │ ├── 150_hm-lc-dw-wm.png │ │ ├── 151_hmip-pcbs-bat.png │ │ ├── 152_hmip-swdo-i.png │ │ ├── 153_hmip-spi.png │ │ ├── 154_hmip-spdr.png │ │ ├── 155_hmip-whs2.png │ │ ├── 156_hmip-mod-oc8.png │ │ ├── 157_hmip-broll_hmip-bbl.png │ │ ├── 158_hmip-etrv-uk.png │ │ ├── 159_hmip-mod-rc8.png │ │ ├── 15_hm-sec-win.png │ │ ├── 160_hmipw-drs4.png │ │ ├── 161_hmipw-drs8.png │ │ ├── 162_hmipw-drap.png │ │ ├── 163_hmipw-drbl4.png │ │ ├── 164_hmipw-dri16.png │ │ ├── 165_hmipw-fio6.png │ │ ├── 166_hmipw-drd3.png │ │ ├── 167_hmipw-dri32.png │ │ ├── 168_hmip-smi55.png │ │ ├── 169_hmip-swo-pr.png │ │ ├── 16_hm-sec-sc.png │ │ ├── 170_hmip-swo-pl.png │ │ ├── 171_hmip-swo-b.png │ │ ├── 172_hmip-swd.png │ │ ├── 173_hmip-bsl.png │ │ ├── 174_hmip-slo.png │ │ ├── 175_hmip-group-heating.png │ │ ├── 177_hmip-dbb.png │ │ ├── 178_hmip-etrv-b1.png │ │ ├── 179_hmip-swdm-b2.png │ │ ├── 17_hm-sec-rhs.png │ │ ├── 180_hmip-etrv-b.png │ │ ├── 181_hmip-swdm.png │ │ ├── 182_hmip-fci1.png │ │ ├── 183_hmip-mod-tm.png │ │ ├── 184_hmip-pcbs2.png │ │ ├── 185_hmip-FCI6.png │ │ ├── 186_hmip-mp3p.png │ │ ├── 187_hmip-rcb1.png │ │ ├── 188_hmip-etrv-c.png │ │ ├── 18_hm-rc-4.png │ │ ├── 193_hmip-wt.png │ │ ├── 19_hm-rc-12.png │ │ ├── 20_hm-rc-19.png │ │ ├── 21_hm-rc-p1.png │ │ ├── 22_hm-rc-sec3-b.png │ │ ├── 23_hm-rc-key3-b.png │ │ ├── 24_hm-cen-3-1.png │ │ ├── 25_hm-em-cmm.png │ │ ├── 26_hmw-lc-sw2-dr.png │ │ ├── 27_hmw-lc-bl1-dr.png │ │ ├── 28_hmw-lc-dim1l-dr.png │ │ ├── 29_hmw-io-4-fm.png │ │ ├── 2_hm-lc-dim1l-cv.png │ │ ├── 30_hmw-io-12-sw7-dr.png │ │ ├── 31_hmw-wse-sm.png │ │ ├── 32_hmw-wsth-sm.png │ │ ├── 33_hmw-sec-tr-fm.png │ │ ├── 34_hmw-sys-tm.png │ │ ├── 35_hmw-sys-tm-dr.png │ │ ├── 36_hmw-sys-ps7-dr.png │ │ ├── 38_hm-pbi-4-fm.png │ │ ├── 39_hm-swi-3-fm.png │ │ ├── 3_hm-lc-sw4-sm.png │ │ ├── 42_hm-cc-tc.png │ │ ├── 43_hm-cc-vd.png │ │ ├── 44_hm-em-ccm.png │ │ ├── 45_hm-lc-dim2l-sm.png │ │ ├── 46_hm-lc-sw4-pcb.png │ │ ├── 47_hm-sec-tis.png │ │ ├── 48_hm-sen-ep.png │ │ ├── 49_hm-sec-wds.png │ │ ├── 4_hm-lc-sw1-fm.png │ │ ├── 50_hm-sec-mdir.png │ │ ├── 51_hm-sec-sd.png │ │ ├── 52_hm-sec-sd-team.png │ │ ├── 53_hm-sen-mdir-sm.png │ │ ├── 54_hm-lc-ddc1-pcb.png │ │ ├── 54_lc-ddc1-pcb.png │ │ ├── 54a_lc-ddc1-pcb.png │ │ ├── 55_hm-sec-sfa-sm.png │ │ ├── 56_hmw-sen-sc-12-dr.png │ │ ├── 57_hm-cc-scd.png │ │ ├── 58_hmw-sen-sc-12-fm.png │ │ ├── 59_hmw-io-12-fm.png │ │ ├── 5_hm-lc-sw2-fm.png │ │ ├── 60_hm-ou-cf-pl.png │ │ ├── 61_hm-lc-bl1-pb-fm.png │ │ ├── 64_hm-lc-dim2T-sm.png │ │ ├── 65_hm-lc-dim1t-fm.png │ │ ├── 66_hm-lc-dim1t-cv.png │ │ ├── 67_hm-sci-3-fm.png │ │ ├── 68_hm-lc-sw4-dr.png │ │ ├── 69_hm-lc-sw2-dr.png │ │ ├── 6_hm-lc-bl1-sm.png │ │ ├── 70_hm-pb-4dis-wm.png │ │ ├── 71_hmw-io-12-sw14-dr.png │ │ ├── 72_hm-rc-brc-h.png │ │ ├── 73_hm-atent.png │ │ ├── 75_hm-pb-2-wm55.png │ │ ├── 76_hm-lc-sw4-wm.png │ │ ├── 77_hm-lc-sw1-ba-pcb.png │ │ ├── 78_hm-ou-led16.png │ │ ├── 79_hm-lc-dim1pwm-cv.png │ │ ├── 7_hm-lc-bl1-fm.png │ │ ├── 80_hm-sen-mdir-o.png │ │ ├── 81_hm-dis-td-t.png │ │ ├── 82_hm-sen-wa-od.png │ │ ├── 83_hm-cc-rt-dn.png │ │ ├── 84_hm-rc-4-2.png │ │ ├── 84_hm-rc-4-3.png │ │ ├── 85_hm-rc-key4-2.png │ │ ├── 85_hm-rc-sec4-3.png │ │ ├── 86_hm-pb-6-wm55.png │ │ ├── 86_hm-rc-key4-3.png │ │ ├── 86_hm-rc-sec4-2.png │ │ ├── 87_hm-sen-rd-o.png │ │ ├── 88_hm-lc-sw4-ba-pcb.png │ │ ├── 8_hm-lc-sw1-sm.png │ │ ├── 92_hm-ou-cm-pcb.png │ │ ├── 93_hm-es-pmsw1-pl.png │ │ ├── 94_hm-mod-re-8.png │ │ ├── 95_group_hm-cc-vg-1.png │ │ ├── 96_hm-tc-it-wm-w-eu.png │ │ ├── 97_hm-dis-wm55.png │ │ ├── 98_hm-sec-sco.png │ │ ├── 99_hm-mod-em-8.png │ │ ├── 9_hm-ws550-us.png │ │ ├── CCU2.png │ │ ├── CCU3.png │ │ ├── IP65_G201.png │ │ ├── OM55_DimmerSwitch.png │ │ ├── PushButton-2ch-wm.png │ │ ├── PushButton-4ch-wm.png │ │ ├── TH_CS.png │ │ ├── WeatherCombiSensor.png │ │ ├── coupling │ │ ├── _hm-coupling-onoff.png │ │ ├── hm-coupling-dim.png │ │ ├── hm-coupling-group.png │ │ ├── hm-coupling-onoff.png │ │ ├── hm-coupling-rgb-dim.png │ │ ├── hm-coupling-rgb.png │ │ ├── hm-coupling-rgbw-dim.png │ │ ├── hm-coupling-rgbw.png │ │ ├── hm-coupling-white-dim.png │ │ ├── hm-coupling-white.png │ │ ├── hm-hue_gateway.png │ │ └── hm-lightify_gateway.png │ │ ├── group_hm-cc-vg-1.png │ │ ├── hm-rc-sec4-3.png │ │ ├── hm_resc-win-pcb-sc.png │ │ ├── osram-lightify │ │ ├── _hm-lightify-onoff.png │ │ ├── hm-lightify-dim.png │ │ ├── hm-lightify-group.png │ │ ├── hm-lightify-onoff.png │ │ ├── hm-lightify-rgb-dim.png │ │ ├── hm-lightify-rgb.png │ │ ├── hm-lightify-rgbw-dim.png │ │ ├── hm-lightify-rgbw.png │ │ ├── hm-lightify-white-dim.png │ │ ├── hm-lightify-white.png │ │ └── hm-lightify_gateway.png │ │ └── unknown_device.png ├── help.png ├── icon.png ├── servicemsgs │ ├── config_pending.png │ ├── error.png │ ├── lowbat.png │ └── unreach.png └── uiTabsArrow.png ├── index.html └── js ├── deviceImages.json ├── helpLinkParamset.json ├── helpMasterParamset.json ├── homematic-manager.js ├── language.json ├── rpcMethods.json └── stringtable.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.pid 2 | node_modules/ 3 | .idea 4 | .DS_Store 5 | dist 6 | occu 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | osx_image: xcode11 2 | sudo: required 3 | dist: xenial 4 | language: c 5 | matrix: 6 | include: 7 | - os: osx 8 | - os: linux 9 | env: CC=clang CXX=clang++ npm_config_clang=1 10 | compiler: clang 11 | cache: 12 | directories: 13 | - node_modules 14 | - app/node_modules 15 | - "$HOME/.electron" 16 | - "$HOME/.cache" 17 | addons: 18 | apt: 19 | packages: 20 | - libgnome-keyring-dev 21 | - icnsutils 22 | before_install: 23 | - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install git-lfs; fi 24 | - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils bsdtar ruby-dev build-essential; sudo gem install fpm; fi 25 | before_script: 26 | - git-lfs pull 27 | install: 28 | - nvm install 12 29 | - npm install 30 | - npm prune 31 | script: 32 | - npm run dist 33 | branches: 34 | except: 35 | - "/^v\\d+\\.\\d+\\.\\d+$/" 36 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Homematic Manager 4 | 5 | [![Current Release](https://img.shields.io/github/release/hobbyquaker/homematic-manager.svg?colorB=4cc61e)](https://github.com/hobbyquaker/homematic-manager/releases/latest) 6 | [![Dependency Status](https://david-dm.org/hobbyquaker/homematic-manager/status.svg)](https://david-dm.org/hobbyquaker/homematic-manager) 7 | [![macOS and Linux Build Status](https://travis-ci.org/hobbyquaker/homematic-manager.svg?branch=master)](https://travis-ci.org/hobbyquaker/homematic-manager) 8 | [![Windows Build Status](https://ci.appveyor.com/api/projects/status/github/hobbyquaker/homematic-manager?branch=master&svg=true)](https://ci.appveyor.com/project/hobbyquaker/homematic-manager) 9 | [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo) 10 | [![License: GPLv3](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.html) 11 | 12 | Konfiguration und Administration von [HomeMatic](http://www.homematic.com) und HomematicIP Geräten. 13 | 14 | > Mit dem Homematic Manager ist es möglich Geräte an- und abzulernen, Geräte-Konfigurationen und Direktverknüpfungen zu 15 | verwalten und vieles mehr. Eine Ausführlichere Beschreibung ist im [Homematic Forum](https://homematic-forum.de/forum/viewtopic.php?f=18&t=45134) zu finden. 16 | 17 | Unter [latest releases](https://github.com/hobbyquaker/homematic-manager/releases/latest) sind Downloads für macOS, 18 | Linux und Windows zu finden. 19 | 20 | ![](docs/hmm1.png) 21 | ![](docs/hmm2.png) 22 | ![](docs/hmm3.png) 23 | 24 | ## Lizenz 25 | 26 | Copyright (c) 2014-2019 Sebastian "Hobbyquaker" Raff, André "Anli" Litfin 27 | 28 | [GPLv3](https://www.gnu.org/licenses/gpl-3.0.html) 29 | 30 | 31 | Der obige Urheberrechtsvermerk ist in allen Kopien oder Teilkopien der Software beizulegen. 32 | 33 | DIE SOFTWARE WIRD OHNE JEDE AUSDRÜCKLICHE ODER IMPLIZIERTE GARANTIE BEREITGESTELLT, EINSCHLIESSLICH DER GARANTIE ZUR BENUTZUNG FÜR DEN VORGESEHENEN ODER EINEM BESTIMMTEN ZWECK SOWIE JEGLICHER RECHTSVERLETZUNG, JEDOCH NICHT DARAUF BESCHRÄNKT. IN KEINEM FALL SIND DIE AUTOREN ODER COPYRIGHTINHABER FÜR JEGLICHEN SCHADEN ODER SONSTIGE ANSPRÜCHE HAFTBAR ZU MACHEN, OB INFOLGE DER ERFÜLLUNG EINES VERTRAGES, EINES DELIKTES ODER ANDERS IM ZUSAMMENHANG MIT DER SOFTWARE ODER SONSTIGER VERWENDUNG DER SOFTWARE ENTSTANDEN. 34 | 35 | HomeMatic und BidCoS sind eingetragene Warenzeichen der [eQ-3 AG](http://eq-3.de) 36 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | platform: 2 | - x64 3 | 4 | cache: 5 | - node_modules 6 | - '%APPDATA%\npm-cache' 7 | - '%USERPROFILE%\.electron' 8 | 9 | install: 10 | - ps: Install-Product node 8 x64 11 | - npm install 12 | 13 | build_script: 14 | - npm run dist 15 | 16 | test: off -------------------------------------------------------------------------------- /build/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/build/icon.icns -------------------------------------------------------------------------------- /build/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/build/icon.ico -------------------------------------------------------------------------------- /build/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/build/icon.png -------------------------------------------------------------------------------- /build/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/build/icon.xcf -------------------------------------------------------------------------------- /docs/hmm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/docs/hmm1.png -------------------------------------------------------------------------------- /docs/hmm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/docs/hmm2.png -------------------------------------------------------------------------------- /docs/hmm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/docs/hmm3.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "homematic-manager", 3 | "version": "2.7.1", 4 | "private": true, 5 | "dependencies": { 6 | "async": "2.6.2", 7 | "binrpc": "3.3.1", 8 | "electron-ipc-rpc": "1.1.1", 9 | "electron-is-dev": "1.0.1", 10 | "electron-unhandled": "2.1.0", 11 | "electron-window-state": "5.0.3", 12 | "free-jqgrid": "4.15.5", 13 | "hm-discover": "1.1.0", 14 | "homematic-rega": "^1.4.0", 15 | "homematic-xmlrpc": "1.0.2", 16 | "instascan": "1.0.0", 17 | "jquery": "3.3.1", 18 | "jquery-ui-dist": "1.12.1", 19 | "jquery-ui-multiselect-widget": "2.0.2", 20 | "nextport": "1.0.0", 21 | "persist-json": "1.2.0", 22 | "ui-contextmenu": "1.18.1", 23 | "yalm": "4.1.0" 24 | }, 25 | "devDependencies": { 26 | "electron": "4.0.5", 27 | "electron-builder": "^20.40.2", 28 | "html-entities": "^1.2.1", 29 | "xo": "0.24.0" 30 | }, 31 | "description": "Homematic Device Configuration and Administration", 32 | "main": "main.js", 33 | "scripts": { 34 | "test": "echo \"Error: no test specified\" && exit 1", 35 | "start": "electron .", 36 | "dist": "electron-builder", 37 | "lint": "xo", 38 | "lintfix": "xo --fix" 39 | }, 40 | "repository": { 41 | "type": "git", 42 | "url": "https://github.com/hobbyquaker/homematic-manager" 43 | }, 44 | "keywords": [ 45 | "HomeMatic", 46 | "BidCoS", 47 | "eQ-3", 48 | "rfd", 49 | "hs485d", 50 | "Homegear", 51 | "XML-RPC", 52 | "Smarthome", 53 | "Internet of Things", 54 | "IoT" 55 | ], 56 | "author": "Sebastian 'hobbyquaker' Raff ", 57 | "contributors": [ 58 | "André 'Anli' Litfin" 59 | ], 60 | "license": "GPLv3", 61 | "bugs": { 62 | "url": "https://github.com/hobbyquaker/homematic-manager/issues" 63 | }, 64 | "homepage": "https://github.com/hobbyquaker/homematic-manager", 65 | "build": { 66 | "productName": "Homematic Manager", 67 | "mac": { 68 | "category": "public.app-category.utilities", 69 | "target": [ 70 | "dmg" 71 | ] 72 | }, 73 | "linux": { 74 | "target": [ 75 | "deb", 76 | "tar.gz" 77 | ] 78 | }, 79 | "win": { 80 | "target": [ 81 | "nsis", 82 | "portable" 83 | ] 84 | } 85 | }, 86 | "xo": { 87 | "space": 4, 88 | "ignore": [ 89 | "tools/convert_easymodes.js", 90 | "tools/convert_imgpaths.js" 91 | ] 92 | } 93 | } 94 | -------------------------------------------------------------------------------- /tools/convert_imgpaths.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | const tcl = fs.readFileSync(path.join(__dirname, '../../occu/WebUI/www/config/devdescr/DEVDB.tcl')).toString(); 5 | 6 | const tclArr = tcl.match(/array set DEV_PATHS\s([^\n]+)/)[1].trim(); 7 | 8 | const arr = tclArr.match(/[\s{][^\s]+ \{\{50 [^\s^}]+/g); 9 | 10 | const res = {}; 11 | 12 | arr.forEach(str => { 13 | str = str.trim(); 14 | // Console.log(str); 15 | const tmp = str.match(/^\{?([^\s]+) \{\{50 (.*)$/); 16 | if (tmp && !tmp[1].match(/\}$/)) { 17 | res[tmp[1]] = tmp[2].replace(/\/config\/img/, 'images'); 18 | } 19 | }); 20 | 21 | fs.writeFileSync(path.join(__dirname, '../www/js/deviceImages.json'), JSON.stringify(res, null, ' ')); 22 | 23 | -------------------------------------------------------------------------------- /tools/update_images.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | scp root@homematic-raspi:/www/config/devdescr/DEVDB.tcl /Users/basti/WebstormProjects/occu/WebUI/www/config/devdescr/ 4 | scp -r root@homematic-raspi:/www/config/img/* /Users/basti/WebstormProjects/occu/WebUI/www/config/img/ 5 | 6 | node $PWD/tools/convert_imgpaths.js 7 | 8 | cp -Rv $PWD/../occu/WebUI/www/config/img/devices $PWD/www/images/ 9 | 10 | git add $PWD/www/images/* -------------------------------------------------------------------------------- /www/easymodes/ACTOR_SECURITY/WEATHER.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "SHORT_CT_OFF": { 10 | "readonly": true, 11 | "val": "0" 12 | }, 13 | "SHORT_CT_ON": { 14 | "readonly": true, 15 | "val": "0" 16 | }, 17 | "SHORT_JT_OFF": { 18 | "readonly": true, 19 | "val": "1" 20 | }, 21 | "SHORT_JT_ON": { 22 | "readonly": true, 23 | "val": "1" 24 | }, 25 | "UI_TEMPLATE": { 26 | "readonly": true, 27 | "val": "$PROFILE_1(UI_DESCRIPTION)" 28 | }, 29 | "UI_HINT": { 30 | "readonly": true, 31 | "val": "1" 32 | } 33 | }, 34 | "options": {}, 35 | "name": "security_on" 36 | }, 37 | "2": { 38 | "params": { 39 | "SHORT_CT_OFF": { 40 | "readonly": true, 41 | "val": "0" 42 | }, 43 | "SHORT_CT_ON": { 44 | "readonly": true, 45 | "val": "0" 46 | }, 47 | "SHORT_JT_OFF": { 48 | "readonly": true, 49 | "val": "2" 50 | }, 51 | "SHORT_JT_ON": { 52 | "readonly": true, 53 | "val": "2" 54 | }, 55 | "UI_TEMPLATE": { 56 | "readonly": true, 57 | "val": "$PROFILE_2(UI_DESCRIPTION)" 58 | }, 59 | "UI_HINT": { 60 | "readonly": true, 61 | "val": "2" 62 | } 63 | }, 64 | "options": {}, 65 | "name": "security_off" 66 | }, 67 | "3": { 68 | "params": { 69 | "SHORT_CT_OFF": { 70 | "readonly": true, 71 | "val": "0" 72 | }, 73 | "SHORT_CT_ON": { 74 | "readonly": true, 75 | "val": "0" 76 | }, 77 | "SHORT_JT_OFF": { 78 | "readonly": true, 79 | "val": "1" 80 | }, 81 | "SHORT_JT_ON": { 82 | "readonly": true, 83 | "val": "2" 84 | }, 85 | "UI_TEMPLATE": { 86 | "readonly": true, 87 | "val": "$PROFILE_3(UI_DESCRIPTION)" 88 | }, 89 | "UI_HINT": { 90 | "readonly": true, 91 | "val": "3" 92 | } 93 | }, 94 | "options": {}, 95 | "name": "security_toggle" 96 | }, 97 | "4": { 98 | "params": {}, 99 | "options": {}, 100 | "name": "no_action" 101 | } 102 | } -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "SHORT_CT_OFFDELAY": { 10 | "readonly": true, 11 | "val": "2" 12 | }, 13 | "SHORT_CT_ONDELAY": { 14 | "readonly": true, 15 | "val": "2" 16 | }, 17 | "SHORT_CT_OFF": { 18 | "readonly": true, 19 | "val": "2" 20 | }, 21 | "SHORT_CT_ON": { 22 | "readonly": true, 23 | "val": "2" 24 | }, 25 | "SHORT_COND_VALUE_LO": { 26 | "val": "255" 27 | }, 28 | "SHORT_COND_VALUE_HI": { 29 | "val": "100" 30 | }, 31 | "SHORT_ONDELAY_TIME": { 32 | "readonly": true, 33 | "val": "0" 34 | }, 35 | "SHORT_ON_TIME": { 36 | "val": "120" 37 | }, 38 | "SHORT_OFFDELAY_TIME": { 39 | "val": "0" 40 | }, 41 | "SHORT_OFF_TIME": { 42 | "readonly": true, 43 | "val": "111600" 44 | }, 45 | "SHORT_ON_TIME_MODE": { 46 | "val": "1" 47 | }, 48 | "SHORT_OFF_TIME_MODE": { 49 | "readonly": true, 50 | "val": "0" 51 | }, 52 | "SHORT_ACTION_TYPE": { 53 | "readonly": true, 54 | "val": "1" 55 | }, 56 | "SHORT_JT_OFF": { 57 | "readonly": true, 58 | "val": "1" 59 | }, 60 | "SHORT_JT_ON": { 61 | "readonly": true, 62 | "val": "2" 63 | }, 64 | "SHORT_JT_OFFDELAY": { 65 | "readonly": true, 66 | "val": "2" 67 | }, 68 | "SHORT_JT_ONDELAY": { 69 | "readonly": true, 70 | "val": "2 " 71 | }, 72 | "LONG_ACTION_TYPE": { 73 | "val": "0" 74 | }, 75 | "UI_DESCRIPTION": { 76 | "readonly": true, 77 | "val": "Beim Auslösen des Sensors wird der Alarm mindestens für die eingestellte Zeit eingeschaltet. Ist eine Einschaltverzögerungszeit eingestellt, so wird der Alarm erst nach Ablauf dieser Zeit eingeschaltet.
" 78 | }, 79 | "UI_TEMPLATE": { 80 | "readonly": true, 81 | "val": "$PROFILE_1(UI_DESCRIPTION)" 82 | }, 83 | "UI_HINT": { 84 | "readonly": true, 85 | "val": "1" 86 | } 87 | }, 88 | "options": { 89 | "1": { 90 | "desc": "ON_TIME_MODE", 91 | "combo": [ 92 | "SHORT_ON_TIME", 93 | "LONG_ON_TIME" 94 | ], 95 | "input": "EnterBrightness", 96 | "param": "SHORT_COND_VALUE_LO" 97 | } 98 | }, 99 | "name": "alarm_on" 100 | } 101 | } -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/WEATHER.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "SHORT_CT_OFFDELAY": { 10 | "readonly": true, 11 | "val": "0" 12 | }, 13 | "SHORT_CT_ONDELAY": { 14 | "readonly": true, 15 | "val": "0 " 16 | }, 17 | "SHORT_CT_OFF": { 18 | "readonly": true, 19 | "val": "0" 20 | }, 21 | "SHORT_CT_ON": { 22 | "readonly": true, 23 | "val": "0" 24 | }, 25 | "SHORT_COND_VALUE_LO": { 26 | "val": "50" 27 | }, 28 | "SHORT_COND_VALUE_HI": { 29 | "val": "0" 30 | }, 31 | "SHORT_ONDELAY_TIME": { 32 | "readonly": true, 33 | "val": "0" 34 | }, 35 | "SHORT_ON_TIME": { 36 | "val": "120" 37 | }, 38 | "SHORT_OFFDELAY_TIME": { 39 | "readonly": true, 40 | "val": "0" 41 | }, 42 | "SHORT_OFF_TIME": { 43 | "readonly": true, 44 | "val": "111600" 45 | }, 46 | "SHORT_ON_TIME_MODE": { 47 | "readonly": true, 48 | "val": "0" 49 | }, 50 | "SHORT_OFF_TIME_MODE": { 51 | "readonly": true, 52 | "val": "0" 53 | }, 54 | "SHORT_ACTION_TYPE": { 55 | "readonly": true, 56 | "val": "1" 57 | }, 58 | "SHORT_JT_OFF": { 59 | "readonly": true, 60 | "val": "1" 61 | }, 62 | "SHORT_JT_ON": { 63 | "readonly": true, 64 | "val": "0" 65 | }, 66 | "SHORT_JT_OFFDELAY": { 67 | "readonly": true, 68 | "val": "0 " 69 | }, 70 | "SHORT_JT_ONDELAY": { 71 | "readonly": true, 72 | "val": "0 " 73 | }, 74 | "UI_DESCRIPTION": { 75 | "readonly": true, 76 | "val": "Wenn die eingestellte Windgeschwindigkeit erreicht wird, schaltet der Alarm für die eingestellte Zeit ein." 77 | }, 78 | "UI_TEMPLATE": { 79 | "readonly": true, 80 | "val": "$PROFILE_1(UI_DESCRIPTION)\t" 81 | }, 82 | "UI_HINT": { 83 | "readonly": true, 84 | "val": "1" 85 | } 86 | }, 87 | "options": { 88 | "1": { 89 | "desc": "ON_TIME", 90 | "combo": [ 91 | "SHORT_ON_TIME", 92 | "LONG_ON_TIME" 93 | ] 94 | } 95 | }, 96 | "name": "alarm_on" 97 | } 98 | } -------------------------------------------------------------------------------- /www/easymodes/BLIND/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/CLIMATECONTROL_RECEIVER/CLIMATECONTROL_REGULATOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "no_profile" 6 | } 7 | } -------------------------------------------------------------------------------- /www/easymodes/CLIMATECONTROL_RECEIVER/THERMALCONTROL_TRANSMIT.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "no_profile" 6 | } 7 | } -------------------------------------------------------------------------------- /www/easymodes/CLIMATECONTROL_RT_RECEIVER/CLIMATECONTROL_RT_TRANSCEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "no_profile" 6 | } 7 | } -------------------------------------------------------------------------------- /www/easymodes/CLIMATECONTROL_VENT_DRIVE/CLIMATECONTROL_REGULATOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "UI_HINT": { 10 | "readonly": true, 11 | "val": "0" 12 | }, 13 | "UI_DESCRIPTION": { 14 | "readonly": true, 15 | "val": "no" 16 | }, 17 | "UI_TEMPLATE": { 18 | "readonly": true, 19 | "val": "no" 20 | } 21 | }, 22 | "options": {}, 23 | "name": "no_profile" 24 | } 25 | } -------------------------------------------------------------------------------- /www/easymodes/DIMMER/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/HMW_BLIND/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/HMW_DIMMER/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/HMW_SWITCH/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/KEYMATIC/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/REMOTECONTROL_RECEIVER/KEY.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "SHORT_CONTROL_RC": { 10 | "val": "1" 11 | }, 12 | "SHORT_TEMPERATUR_RC": { 13 | "val": "17.00" 14 | }, 15 | "LONG_CONTROL_RC": { 16 | "val": "0" 17 | }, 18 | "LONG_TEMPERATUR_RC": { 19 | "val": "17.00" 20 | }, 21 | "UI_DESCRIPTION": { 22 | "readonly": true, 23 | "val": "Expertenprofil" 24 | }, 25 | "UI_TEMPLATE": { 26 | "readonly": true, 27 | "val": "Expertenprofil" 28 | }, 29 | "UI_HINT": { 30 | "readonly": true, 31 | "val": "1" 32 | } 33 | }, 34 | "options": { 35 | "1": { 36 | "combo": [ 37 | "SHORT_CONTROL_RC", 38 | "LONG_CONTROL_RC" 39 | ] 40 | }, 41 | "2": { 42 | "combo": [ 43 | "SHORT_TEMPERATUR_RC", 44 | "LONG_TEMPERATUR_RC" 45 | ], 46 | "input": "EnterTemp", 47 | "param": "SHORT_TEMPERATUR_RC" 48 | } 49 | }, 50 | "name": "mode" 51 | } 52 | } -------------------------------------------------------------------------------- /www/easymodes/RGBW_COLOR/KEY.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "SHORT_ACT_HSV_COLOR_VALUE": { 10 | "val": "253" 11 | }, 12 | "LONG_ACT_HSV_COLOR_VALUE": { 13 | "val": "253" 14 | }, 15 | "UI_DESCRIPTION": { 16 | "readonly": true, 17 | "val": "Mit einem kurzen oder langen Tastendruck wird ....." 18 | }, 19 | "UI_TEMPLATE": { 20 | "readonly": true, 21 | "val": "$PROFILE_1(UI_DESCRIPTION)\t" 22 | }, 23 | "UI_HINT": { 24 | "readonly": true, 25 | "val": "1" 26 | } 27 | }, 28 | "options": { 29 | "1": { 30 | "combo": [ 31 | "SHORT_ACT_HSV_COLOR_VALUE", 32 | "LONG_ACT_HSV_COLOR_VALUE" 33 | ] 34 | } 35 | }, 36 | "name": "choose_Mode" 37 | }, 38 | "2": { 39 | "params": { 40 | "SHORT_ACT_HSV_COLOR_VALUE": { 41 | "val": "0" 42 | }, 43 | "LONG_ACT_HSV_COLOR_VALUE": { 44 | "val": "0" 45 | }, 46 | "UI_DESCRIPTION": { 47 | "readonly": true, 48 | "val": "Mit einem kurzen oder langen Tastendruck wird ....." 49 | }, 50 | "UI_TEMPLATE": { 51 | "readonly": true, 52 | "val": "$PROFILE_2(UI_DESCRIPTION)" 53 | }, 54 | "UI_HINT": { 55 | "readonly": true, 56 | "val": "2" 57 | } 58 | }, 59 | "options": {}, 60 | "name": "jumpToColor" 61 | } 62 | } -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/SWITCH/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/WEATHER_RECEIVER/WEATHER.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "no_profile" 6 | } 7 | } -------------------------------------------------------------------------------- /www/easymodes/WEATHER_RECEIVER/WEATHER_TRANSMIT.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "no_profile" 6 | } 7 | } -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/KEY.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "no_profile" 6 | } 7 | } -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/ROTARY_HANDLE_SENSOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "TEMPERATUR_WINDOW_OPEN_VALUE": { 10 | "val": "12" 11 | }, 12 | "UI_DESCRIPTION": { 13 | "readonly": true, 14 | "val": "Beim Öffnen des Fensters wird die Temperatur auf die Absenktemperatur eingestellt." 15 | }, 16 | "UI_TEMPLATE": { 17 | "val": "TEMPERATUR_WINDOW_OPEN_VALUE" 18 | }, 19 | "UI_HINT": { 20 | "readonly": true, 21 | "val": "1" 22 | } 23 | }, 24 | "options": { 25 | "1": { 26 | "desc": "TEMPERATURE_LOWERING_VALUE", 27 | "combo": [ 28 | "TEMPERATUR_WINDOW_OPEN_VALUE" 29 | ], 30 | "input": "EnterTemp", 31 | "param": "TEMPERATUR_WINDOW_OPEN_VALUE" 32 | } 33 | }, 34 | "name": "temperature_lowering_value" 35 | } 36 | } -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "TEMPERATUR_WINDOW_OPEN_VALUE": { 10 | "val": "12" 11 | }, 12 | "UI_DESCRIPTION": { 13 | "readonly": true, 14 | "val": "Beim Öffnen des Kontaktes wird die Temperatur auf die Absenktemperatur eingestellt." 15 | }, 16 | "UI_TEMPLATE": { 17 | "val": "TEMPERATUR_WINDOW_OPEN_VALUE" 18 | }, 19 | "UI_HINT": { 20 | "readonly": true, 21 | "val": "1" 22 | } 23 | }, 24 | "options": { 25 | "1": { 26 | "desc": "TEMPERATURE_LOWERING_VALUE", 27 | "combo": [ 28 | "TEMPERATUR_WINDOW_OPEN_VALUE" 29 | ], 30 | "input": "EnterTemp", 31 | "param": "TEMPERATUR_WINDOW_OPEN_VALUE" 32 | } 33 | }, 34 | "name": "temperature_lowering_value" 35 | } 36 | } -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "TEMPERATUR_WINDOW_OPEN_VALUE": { 10 | "val": "12" 11 | }, 12 | "UI_DESCRIPTION": { 13 | "readonly": true, 14 | "val": "Beim Öffnen des Kontaktes wird die Temperatur auf die Absenktemperatur eingestellt." 15 | }, 16 | "UI_TEMPLATE": { 17 | "val": "TEMPERATUR_WINDOW_OPEN_VALUE" 18 | }, 19 | "UI_HINT": { 20 | "readonly": true, 21 | "val": "1" 22 | } 23 | }, 24 | "options": { 25 | "1": { 26 | "desc": "TEMPERATURE_LOWERING_VALUE", 27 | "combo": [ 28 | "TEMPERATUR_WINDOW_OPEN_VALUE" 29 | ], 30 | "input": "EnterTemp", 31 | "param": "TEMPERATUR_WINDOW_OPEN_VALUE" 32 | } 33 | }, 34 | "name": "temperature_lowering_value" 35 | } 36 | } -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/TEMPLATE.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": {}, 9 | "options": {}, 10 | "name": "xxxx" 11 | }, 12 | "2": { 13 | "params": {}, 14 | "options": {}, 15 | "name": "yyyy" 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/TILT_SENSOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "TEMPERATUR_WINDOW_OPEN_VALUE": { 10 | "val": "12" 11 | }, 12 | "UI_DESCRIPTION": { 13 | "readonly": true, 14 | "val": "Beim Öffnen des Kontaktes wird die Temperatur auf die Absenktemperatur eingestellt." 15 | }, 16 | "UI_TEMPLATE": { 17 | "val": "TEMPERATUR_WINDOW_OPEN_VALUE" 18 | }, 19 | "UI_HINT": { 20 | "readonly": true, 21 | "val": "1" 22 | } 23 | }, 24 | "options": { 25 | "1": { 26 | "desc": "TEMPERATURE_LOWERING_VALUE", 27 | "combo": [ 28 | "TEMPERATUR_WINDOW_OPEN_VALUE" 29 | ], 30 | "input": "EnterTemp", 31 | "param": "TEMPERATUR_WINDOW_OPEN_VALUE" 32 | } 33 | }, 34 | "name": "temperature_lowering_value" 35 | } 36 | } -------------------------------------------------------------------------------- /www/easymodes/WS_TH/WEATHER.json: -------------------------------------------------------------------------------- 1 | { 2 | "0": { 3 | "params": {}, 4 | "options": {}, 5 | "name": "expert" 6 | }, 7 | "1": { 8 | "params": { 9 | "UI_HINT": { 10 | "readonly": true, 11 | "val": "0" 12 | }, 13 | "UI_DESCRIPTION": { 14 | "readonly": true, 15 | "val": "no" 16 | }, 17 | "UI_TEMPLATE": { 18 | "readonly": true, 19 | "val": "no" 20 | } 21 | }, 22 | "options": {}, 23 | "name": "no_profile" 24 | } 25 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/CLIMATECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "CLIMATECONTROL_REGULATOR": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "dummy": "dummy" 7 | }, 8 | "THERMALCONTROL_TRANSMIT": { 9 | "dummy": "dummy" 10 | } 11 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/CLIMATECONTROL_RT_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "CLIMATECONTROL_RT_TRANSCEIVER": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "dummy": "dummy" 7 | } 8 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/DDC.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "switch_off": "Tür zu", 4 | "switch_on": "Tür auf", 5 | "switch_on_off": "Tür auf / AUTO zu", 6 | "switch_on_off_toggle": "" 7 | }, 8 | "KEY": { 9 | "description_1": "Mit einem kurzen Tastendruck wird die Tür geöffnet. Ein langer Tastendruck führt die Funktion Tür Auf / AUTO zu aus.", 10 | "description_2": "Mit einem kurzen Tastendruck wird die Tür geschlossen. Ein langer Tastendruck führt die Funktion Tür Auf / AUTO zu aus.", 11 | "description_3": "Mit einem kurzen oder langen Tastendruck wird die Tür geöffnet. Nach einer am Türantrieb einstellbaren Zeit, schießt die Tür selbständig.", 12 | "description_4": "" 13 | } 14 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/GENERIC.json: -------------------------------------------------------------------------------- 1 | { 2 | "absolute": "absolut", 3 | "active_0": "inaktiv", 4 | "active_1": "aktiv", 5 | "after": "nach", 6 | "sensor_nonactive": "Der Sendekanal ist zur Zeit nicht aktiv!
Konfigurieren Sie den Kanalparameter von", 7 | "actor_nonactive": "Der Aktorkanal ist zur Zeit nicht aktiv!
Konfigurieren Sie den Kanalparameter von", 8 | "enterValue": "Wert eingeben", 9 | "help": "Hilfe", 10 | "hint": "Hinweis", 11 | "hour": "Stunden", 12 | "inactive": "inaktiv", 13 | "lastValue": "Letzter Wert", 14 | "long": "lang", 15 | "minimal": "minimal", 16 | "minutes": "Minuten", 17 | "none": "keine", 18 | "no_userProfile": "Die Funktion wird von diesem Profil zur Zeit nicht unterst%FCtzt", 19 | "ok": "OK", 20 | "seconds": "Sekunden", 21 | "short": "kurz", 22 | "unlimited": "unendlich", 23 | "alert": "Alarmierung", 24 | "blink": "Blinklicht", 25 | "change_signal": "Änderungssignal", 26 | "expert": "Experte", 27 | "light_garage": "Garagenlicht", 28 | "light_stairway": "Treppenhauslicht", 29 | "no_action": "keine Aktion", 30 | "off": "aus", 31 | "Off": "aus", 32 | "on": "ein", 33 | "On": "ein", 34 | "xxxx": "xxxx", 35 | "yyyy": "yyyy", 36 | "description_longkey": "Zusätzliche Einstellung für den langen Tastendruck.", 37 | "channel_nonactive": "", 38 | "not_active": "nicht aktiv", 39 | "unknownProfile": "Unbekanntes Profil", 40 | "useExpertMode": "Verwenden Sie hier den Expertenmodus." 41 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/PNAME.json: -------------------------------------------------------------------------------- 1 | { 2 | "at": "beim", 3 | "ACTION": "Aktion", 4 | "ACT_NUM": "Anzahl der Signale", 5 | "ACT_TYPE": "Signalart", 6 | "AUTO_LOCK_TIME": "Automatisch wieder verriegeln", 7 | "AUTO_UNLOCK_TIME": "Automatisch wieder entriegeln", 8 | "BRIGHTNESS_CONTROL": "Helligkeitsschwelle", 9 | "CHANGE_SIGNAL": "Änderungssignal", 10 | "DEF_ACK_ALARM": "Bestätigung des Alarms:", 11 | "DEF_ALARM_DURATION": "Alarmdauer", 12 | "DEF_HUMIDITY": "Definition Feuchtigkeit", 13 | "DEF_OPEN": "Definition offen", 14 | "DIM_MAX_LEVEL": "Pegelbegrenzung beim Hochdimmen", 15 | "DIM_MIN_LEVEL": "Pegelbegrenzung beim herunterdimmen", 16 | "DOWN_DELAY_TIME": "Herunterfahrverzögerungszeit", 17 | "DOWN_LEVEL": "Heruntergefahren-Position", 18 | "DOWN_TIME": "Verweildauer im Zustand \"Unten\"", 19 | "DRIVING_MODE": "Referenzfahrtvariante", 20 | "GET_CURRENT_BRIGHTNESS": "Aktuelle Helligkeit übernehmen", 21 | "JUMPTARGET": "Zielposition", 22 | "MAXIMAL_FILLLEVEL": "Maximaler Füllstand", 23 | "MINIMAL_FILLLEVEL": "Minimaler Füllstand", 24 | "OFFDELAY_BLINK": "Blinken in der Ausschaltverzögerung", 25 | "OFFDELAY_TIME": "Ausschaltverzögerung", 26 | "OFF_LEVEL": "Pegel im Zustand \"aus\"", 27 | "OFF_TIME": "Verweildauer im Zustand \"aus\"", 28 | "ONDELAY_TIME": "Einschaltverzögerung", 29 | "ON_AIRING": "Lüften bei", 30 | "ON_LEVEL": "Pegel im Zustand \"ein\"", 31 | "ON_THRESHOLD": "Einschalten bei", 32 | "ON_TIME": "Einschaltdauer (Verweildauer im Zustand \"ein\")", 33 | "ON_TIME_MODE": "Art der Verweildauer", 34 | "OPEN_WHEN": "Öffnen bei ", 35 | "RAMPOFF_TIME": "Rampenzeit beim Ausschalten", 36 | "RAMPON_TIME": "Rampenzeit beim Einschalten", 37 | "SWITCH_DIR": "Richtung", 38 | "SWITCH_MODE": "Schaltmodus", 39 | "TEMPERATURE_LOWERING_VALUE": "Absenktemperatur", 40 | "UP_DELAY_TIME": "Hochfahrverzögerungszeit", 41 | "UP_LEVEL": "Hochgefahren-Position", 42 | "UP_TIME": "Verweildauer im Zustand \"Oben\"", 43 | "WINDOW_OPEN_LEVEL": "Kippen auf Kippweite", 44 | "WINDOW_OPEN_TIME": "Verweildauer im Zustand \"Gekippt\"", 45 | "WINDOW_RUNNING_SPEED": "Fahrgeschwindigkeit", 46 | "ONDELAY_TIME_BASE": "Einheit Einschaltverzögerung", 47 | "ONDELAY_TIME_FACTOR": "Wert Einschaltverzögerung", 48 | "ONDELAY_TIME_FACTOR_DESCR": "Einschaltverzögerung", 49 | "ON_TIME_BASE": "Einheit Einschaltdauer", 50 | "ON_TIME_FACTOR_DESCR": "Einschaltdauer (Verweildauer im Zustand \"ein\")", 51 | "ON_TIME_FACTOR": "Wert Einschaltdauer", 52 | "OFFDELAY_TIME_BASE": "Einheit Ausschaltverzögerung", 53 | "OFFDELAY_TIME_FACTOR": "Wert Ausschaltverzögerung", 54 | "OFFDELAY_TIME_FACTOR_DESCR": "Ausschaltverzögerung", 55 | "OFF_TIME_BASE": "Einheit Ausschaltdauer", 56 | "OFF_TIME_FACTOR_DESCR": "Ausschaltdauer (Verweildauer im Zustand \"aus\")", 57 | "OFF_TIME_FACTOR": "Wert Ausschaltdauer", 58 | "TEMPERATURE_RC": "Temperatur" 59 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/REMOTECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "mode": "Betriebsart", 4 | "option0": "Keine Aktion", 5 | "option1": "Raumtemperatur", 6 | "option2": "Automodus", 7 | "option3": "Automodus + Temperatur", 8 | "option4": "Manuell", 9 | "option5": "Boost", 10 | "option6": "Toggle", 11 | "SetPointTemperature": "Temperatur", 12 | "hintKeyPressIgnored": "Der Heizungssteller ist so konfiguriert, dass er nicht auf Tastendrücke reagiert!

Siehe Konfig-Parameter Manu-/Party-Modus Priorisierung" 13 | }, 14 | "KEY": { 15 | "description_1": "Mit einem kurzen oder langen Tastendruck wird der Heizungsregler in die gewählte Betriebsart geschaltet." 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/RGBW_AUTOMATIC.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "inc_Program": "Erhöhe Programmnummer", 4 | "dec_Program": "Verringere Programmnummer", 5 | "set_Program": "Setze Programmnummer", 6 | "lblColorValueMin": "Farbwert Start", 7 | "lblColorValueMax": "Farbwert Ende", 8 | "lblShortKeyPress": "Kurzer Tastendruck", 9 | "lblLongKeyPress": "Langer Tastendruck", 10 | "optionPrg0": "Aus", 11 | "optionPrg1": "Langsamer Durchlauf", 12 | "optionPrg2": "Normaler Durchlauf", 13 | "optionPrg3": "Schneller Durchlauf", 14 | "optionPrg4": "Lagerfeuer", 15 | "optionPrg5": "Wasserfall", 16 | "optionPrg6": "TV-Simulation" 17 | }, 18 | "KEY": { 19 | "description_1": "Mit einem langen Tastendruck können Sie die Nummer des Farbwechselprogramms verringern. Ein kurzer Tastendruck schaltet die Programmfunktion aus.", 20 | "description_2": "Mit einem langen Tastendruck können Sie die Nummer des Farbwechselprogramms erhöhen. Ein kurzer Tastendruck wählt das Program 'Normaler Durchlauf'", 21 | "description_3": "Hier können Sie ein Programm festlegen, welches bei kurzen und langem Tastendruck aktiviert wird." 22 | } 23 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/RGBW_COLOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "choose_Mode": "Wähle Modus", 4 | "jumpToColor": "Setze Farbe", 5 | "lblShortKeyPress": "Kurzer Tastendruck", 6 | "lblLongKeyPress": "Langer Tastendruck", 7 | "lblMode": "Modus", 8 | "optionIncColor": "Erhöhe Farbwert", 9 | "optionDecColor": "Verringere Farbwert", 10 | "optionToggleColor": "Erhöhe / verringere Farbwert" 11 | }, 12 | "KEY": { 13 | "description_1": "Hier können Sie den Modus der Taste einstellen. Es gibt folgende Möglichkeiten: Farbwert erhöhen, Farbwert verringern und Farbwert abwechselnd erhöhen oder verringern, abhängig vom Tastendruckzähler.", 14 | "description_2": "Hier können Sie eine Taste mit einer Farbe für den kurzen und langen Tastendruck belegen" 15 | } 16 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/SWITCH_VIRTUAL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "switch_off": "Schalter aus", 4 | "switch_on": "Schalter ein", 5 | "switch_on_off": "Schalter ein / aus", 6 | "switch_toggle": "Schalter toggle" 7 | }, 8 | "KEY_TRANSCEIVER": { 9 | "description_1": "Mit einem kurzen oder langen Tastendruck wird der Schalter für die festgelegte Zeit eingeschaltet. Ist eine Verzögerungszeit eingestellt, erfolgt eine Schaltung erst nach Ablauf dieser Zeit .", 10 | "description_2": "Mit einem kurzen oder langen Tastendruck wird der Schalter für die festgelegte Zeit ausgeschaltet. Ist eine Verzögerungszeit eingestellt, erfolgt eine Schaltung erst nach Ablauf dieser Zeit .", 11 | "description_3": "Mit einem kurzen oder langen Tastendruck wird der Schalter für die festgelegte Zeit ein- oder ausgeschaltet (Toggle-Funktion). Ist eine Verzögerungszeit eingestellt, erfolgt eine Schaltung erst nach Ablauf dieser Zeit .", 12 | "description_4": "Mit einem kurzen oder langen Tastendruck wird der Schalter für die festgelegte Zeit ein- bzw. ausgeschaltet.", 13 | "description_5": "Mit einem kurzen oder langen Tastendruck wird der Schalter für die festgelegte Zeit aus- bzw. eingeschaltet." 14 | }, 15 | "SHUTTER_CONTACT": { 16 | "description_1": "Beim Öffnen des Kontakts wird der Schalter in den entgegengesetzten Zustand geschaltet. Diese Funktion lässt sich auch umkehren.", 17 | "description_2": "Beim Öffnen des Kontakts wird der Schalter ein- und beim Schließen ausgeschaltet. Diese Funktion lässt sich auch umkehren.", 18 | "description_3": "Beim Erkennen des Änderungssignals wird der Schalter für eine festgelegte Zeit eingeschaltet.", 19 | "subset_1": "Offen - ein / Zu - aus", 20 | "subset_2": "Offen - aus / Zu - ein", 21 | "subset_3": "Öffnen", 22 | "subset_4": "Schließen", 23 | "subset_5": "Ändern", 24 | "at": "beim" 25 | } 26 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/VIRTUAL_DIMMER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "dim_down": "Dimmer - dunkler", 4 | "dim_up": "Dimmer - heller", 5 | "dimmer_off": "Dimmer - aus", 6 | "dimmer_off_darker": "Dimmer - aus / dunkler", 7 | "dimmer_on": "Dimmer - ein", 8 | "dimmer_on_brighter": "Dimmer - ein / heller", 9 | "dimmer_on_off": "Dimmer - ein / aus", 10 | "dimmer_on_off_b_d": "Dimmer - ein / aus & heller / dunkler", 11 | "not_active": "nicht aktiv", 12 | "sleep_well": "Einschlaflicht", 13 | "wake_up_light": "Aufwachlicht" 14 | }, 15 | "VIRTUAL_DIMMER": { 16 | "description_1": "Mit einem kurzen Tastendruck wird das Licht auf den festgelegten Helligkeitswert eingeschaltet. Ein langer Tastendruck dimmt das Licht hoch.", 17 | "description_2": "Mit einem kurzen Tastendruck wird das Licht ausgeschaltet. Ein langer Tastendruck dimmt das Licht herunter.", 18 | "description_3": "Mit einem kurzen Tastendruck wechselt das Licht zwischen dem festgelegten Helligkeitswert und \"aus\". Ein langer Tastendruck dimmt das Licht abwechselnd hoch- und herunter.", 19 | "description_4": "Das Licht wird durch kurzen oder langen Tastendruck für die festgelegte Zeit eingeschaltet. In der Verzögerung wird der Pegel zur Vorwarnung leicht abgesenkt, um anschließend langsam bis auf \"aus\" herunter zu dimmen.", 20 | "description_5": "Mit einem kurzen Tastendruck wird das Licht auf den festgelegten Helligkeitswert eingeschaltet und nach der festgelegten Zeit langsam auf \"aus\" heruntergedimmt. Ein langer Tastendruck dimmt das Licht abwechselnd hoch- und herunter.", 21 | "description_6": "Das Licht wechselt im festgelegten Takt endlos zwischen den beiden Helligkeitswerten.", 22 | "description_7": "Mit einem kurzen Tastendruck wird das Licht langsam auf den festgelegten Helligkeitswert hochgedimmt. Ein langer Tastendruck dimmt das Licht abwechselnd hoch- und herunter.", 23 | "description_8": "Das Licht wird durch kurzen oder langen Tastendruck auf den festgelegten Helligkeitswert eingeschaltet.", 24 | "description_9": "Das Licht wird durch kurzen oder langen Tastendruck ausgeschaltet.", 25 | "description_10": "Das Licht wird durch kurzen oder langen Tastendruck hochgedimmt.", 26 | "description_11": "Das Licht wird durch kurzen oder langen Tastendruck heruntergedimmt.", 27 | "description_12": "Die Taste ist nicht aktiv." 28 | } 29 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/WEATHER_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "dummy": "dummy" 4 | }, 5 | "WEATHER": { 6 | "dummy": "dummy" 7 | }, 8 | "WEATHER_TRANSMIT": { 9 | "dummy": "dummy" 10 | } 11 | } -------------------------------------------------------------------------------- /www/easymodes/localization/de/WINDOW_SWITCH_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "EXPERT": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "temperature_lowering_value": "Absenktemperatur" 7 | }, 8 | "KEY": { 9 | "description_1": "NIL" 10 | }, 11 | "ROTARY_HANDLE_SENSOR": { 12 | "description_1": "Beim Öffnen des Fensters wird die Absenktemperatur aktiviert." 13 | }, 14 | "SENSOR_WINDOW": { 15 | "description_1": "Beim Öffnen des Fensters wird die Absenktemperatur aktiviert." 16 | }, 17 | "SHUTTER_CONTACT": { 18 | "description_1": "Beim Öffnen des Kontakts wird die Absenktemperatur aktiviert." 19 | }, 20 | "TILT_SENSOR": { 21 | "description_1": "Beim Öffnen des Kontakts wird die Absenktemperatur aktiviert." 22 | } 23 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/CLIMATECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "CLIMATECONTROL_REGULATOR": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "dummy": "dummy" 7 | }, 8 | "THERMALCONTROL_TRANSMIT": { 9 | "dummy": "dummy" 10 | } 11 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/CLIMATECONTROL_RT_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "CLIMATECONTROL_RT_TRANSCEIVER": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "dummy": "dummy" 7 | } 8 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/DDC.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "switch_off": "Door open", 4 | "switch_on": "Door closed", 5 | "switch_on_off": "Door open / AUTO closed", 6 | "switch_on_off_toggle": "" 7 | }, 8 | "KEY": { 9 | "description_1": "With a short button press the door will be opened. A long button press will activate the function Door open / AUTO closed.", 10 | "description_2": "With a short button press the door will be closed. A long button press will activate the function Door open / AUTO closed.", 11 | "description_3": "With a short or long button press the door will be opened. The door will be closed automatically according to a defined time that can be adjusted via the door lock drive.", 12 | "description_4": "" 13 | } 14 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/GENERIC.json: -------------------------------------------------------------------------------- 1 | { 2 | "absolute": "absolute", 3 | "active_0": "inactive", 4 | "active_1": "active", 5 | "after": "after", 6 | "sensor_nonactive": "The sensor channel is currently not active!
Please configure the channel parameter of", 7 | "actor_nonactive": "The actuator channel is currently not active!
Please configure the channel parameter of", 8 | "enterValue": "Enter value", 9 | "help": "Help", 10 | "hint": "Please note", 11 | "hour": "Hours", 12 | "inactive": "inactive", 13 | "lastValue": "Last value", 14 | "long": "long", 15 | "minimal": "minimal", 16 | "minutes": "Minutes", 17 | "none": "none", 18 | "no_userProfile": "The function is currently not supported by this profile.", 19 | "ok": "OK", 20 | "seconds": "Seconds", 21 | "short": "Short", 22 | "unlimited": "continuously", 23 | "alert": "Alert", 24 | "blink": "Flash light", 25 | "change_signal": "Change signal", 26 | "expert": "Expert", 27 | "light_garage": "Garage light", 28 | "light_stairway": "Staircase light", 29 | "no_action": "no action", 30 | "off": "off", 31 | "Off": "off", 32 | "on": "on", 33 | "On": "on", 34 | "xxxx": "xxxx", 35 | "yyyy": "yyyy", 36 | "description_longkey": "Additional settings for the long button press.", 37 | "channel_nonactive": "", 38 | "not_active": "inactive", 39 | "unknownProfile": "Unknown profile", 40 | "useExpertMode": "Please try again in expert mode." 41 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/PNAME.json: -------------------------------------------------------------------------------- 1 | { 2 | "at": "on", 3 | "ACTION": "Activity", 4 | "ACT_NUM": "Number of signals", 5 | "ACT_TYPE": "Signal type", 6 | "AUTO_LOCK_TIME": "Lock automatically", 7 | "AUTO_UNLOCK_TIME": "Unlock automatically", 8 | "BRIGHTNESS_CONTROL": "Brightness threshold", 9 | "CHANGE_SIGNAL": "Change signal", 10 | "DEF_ACK_ALARM": "Confirmation of alarm:", 11 | "DEF_ALARM_DURATION": "Alarm duration", 12 | "DEF_HUMIDITY": "Definition humidity", 13 | "DEF_OPEN": "Definition open", 14 | "DIM_MAX_LEVEL": "Maximum dim level", 15 | "DIM_MIN_LEVEL": "Minimum dim level", 16 | "DOWN_DELAY_TIME": "Down-delay time", 17 | "DOWN_LEVEL": "Down position", 18 | "DOWN_TIME": "Duration for status \"down\"", 19 | "DRIVING_MODE": "Type of reference movement", 20 | "GET_CURRENT_BRIGHTNESS": "Apply current brightness", 21 | "JUMPTARGET": "Target position", 22 | "MAXIMAL_FILLLEVEL": "Maximum fill level", 23 | "MINIMAL_FILLLEVEL": "Minimum fill level", 24 | "OFFDELAY_BLINK": "Flashing during off-delay", 25 | "OFFDELAY_TIME": "Off delay time", 26 | "OFF_LEVEL": "Level in status \"off\"", 27 | "OFF_TIME": "Duration for status \"off\"", 28 | "ONDELAY_TIME": "On delay time", 29 | "ON_AIRING": "Ventilation if", 30 | "ON_LEVEL": "Level in status \"on\"", 31 | "ON_THRESHOLD": "Switch on if", 32 | "ON_TIME": "Switch-on time (duration in status \"on\")", 33 | "ON_TIME_MODE": "Type of duration", 34 | "OPEN_WHEN": "Open if", 35 | "RAMPOFF_TIME": "Switch-off ramp time", 36 | "RAMPON_TIME": "Switch-on ramp time", 37 | "SWITCH_DIR": "Direction", 38 | "SWITCH_MODE": "Switch mode", 39 | "TEMPERATURE_LOWERING_VALUE": "Reduction temperature", 40 | "UP_DELAY_TIME": "Up-delay time", 41 | "UP_LEVEL": "Up position", 42 | "UP_TIME": "Duration for status \"Up\"", 43 | "WINDOW_OPEN_LEVEL": "Tilt to tilt level", 44 | "WINDOW_OPEN_TIME": "Duration for status \"Tilt\"", 45 | "WINDOW_RUNNING_SPEED": "Speed", 46 | "ONDELAY_TIME_BASE": "Unit switch on delay", 47 | "ONDELAY_TIME_FACTOR": "Value switch on delay", 48 | "ONDELAY_TIME_FACTOR_DESCR": "Switch on delay", 49 | "ON_TIME_BASE": "Unit switch-on time", 50 | "ON_TIME_FACTOR_DESCR": "Switch-on time (duration in status \"on\")", 51 | "ON_TIME_FACTOR": "Value switch-on time", 52 | "OFFDELAY_TIME_BASE": "Unit switch off delay", 53 | "OFFDELAY_TIME_FACTOR": "Value switch off delay", 54 | "OFFDELAY_TIME_FACTOR_DESCR": "Switch off delay", 55 | "OFF_TIME_BASE": "Unit switch-off time", 56 | "OFF_TIME_FACTOR_DESCR": "Switch-off time (duration in status \"off\")", 57 | "OFF_TIME_FACTOR": "Value switch-off time", 58 | "TEMPERATURE_RC": "Temperature" 59 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/REMOTECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "mode": "Operation mode", 4 | "option0": "No action", 5 | "option1": "Room temperature", 6 | "option2": "Auto mode", 7 | "option3": "Auto mode + temperature", 8 | "option4": "Manuel", 9 | "option5": "Boost", 10 | "option6": "Toggle", 11 | "SetPointTemperature": "Temperature", 12 | "hintKeyPressIgnored": "The heating device has been configured that it will not react to a remote control!

See config parameter Manu-/Party mode prioritization" 13 | }, 14 | "KEY": { 15 | "description_1": "With a short or long button press the heating thermostat will be switched to the selected operation mode " 16 | } 17 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/RGBW_AUTOMATIC.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "inc_Program": "Increase program number", 4 | "dec_Program": "Decrease program number", 5 | "set_Program": "Set program", 6 | "lblColorValueMin": "Color value start", 7 | "lblColorValueMax": "Color value end", 8 | "lblShortKeyPress": "Short keypress", 9 | "lblLongKeyPress": "Long keypress", 10 | "optionPrg0": "Off", 11 | "optionPrg1": "Slow cycle", 12 | "optionPrg2": "Normal cycle", 13 | "optionPrg3": "Fast cycle", 14 | "optionPrg4": "Bonfire", 15 | "optionPrg5": "Waterfall", 16 | "optionPrg6": "TV-Simulation" 17 | }, 18 | "KEY": { 19 | "description_1": "A long button press will decrease the number of the colour program. A brief button press will stop the program.", 20 | "description_2": "A long button press will increase the number of the colour program. A brief button press will select the program 'Normal cycle'", 21 | "description_3": "You can set the program for the brief and long button press here." 22 | } 23 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/RGBW_COLOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "choose_Mode": "Select mode", 4 | "jumpToColor": "Set color", 5 | "lblShortKeyPress": "Short key press", 6 | "lblLongKeyPress": "Long key press", 7 | "lblMode": "Mode", 8 | "optionIncColor": "Increase color value", 9 | "optionDecColor": "Decrease color value", 10 | "optionToggleColor": "Increase / decrease color value" 11 | }, 12 | "KEY": { 13 | "description_1": "You can define the mode of the button here. There are the following options: increase the color value, decrease the color value and - depending on the button press counter - alternate between increasing and decreasing of the color value.", 14 | "description_2": "You can set the button for activating a particular color value here. You can set a color value for the short and for the long button press separately. " 15 | } 16 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/SWITCH_VIRTUAL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "switch_off": "Switch - off", 4 | "switch_on": "Switch - on", 5 | "switch_on_off": "Switch - on / off", 6 | "switch_toggle": "Switch toggle" 7 | }, 8 | "KEY_TRANSCEIVER": { 9 | "description_1": "With a short or long button press the switch will be switched on for the set time.", 10 | "description_2": "With a short or long button press the switch will be switched off for the set time.", 11 | "description_3": "With a short or long button press the switch will be switched on or off for the set time (toggle function).", 12 | "description_4": "With a short or long button press the switch will be switched on or off for the set time.", 13 | "description_5": "With a short or long button press the switch will be switched on or off for the set time." 14 | }, 15 | "SHUTTER_CONTACT": { 16 | "description_1": "en Beim Öffnen des Kontakts wird der Schalter in den entgegengesetzten Zustand geschaltet.", 17 | "description_2": "en Beim Öffnen des Kontakts wird der Schalter ein- und beim Schließen ausgeschaltet. Diese Funktion lässt sich auch umkehren.", 18 | "description_3": "en Beim Erkennen des Änderungssignals wird der Schalter für eine festgelegte Zeit eingeschaltet.", 19 | "subset_1": "Offen - ein / Zu - aus", 20 | "subset_2": "Offen - aus / Zu - ein", 21 | "subset_3": "Öffnen", 22 | "subset_4": "Schließen", 23 | "subset_5": "Ändern", 24 | "at": "beim" 25 | } 26 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/VIRTUAL_DIMMER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "dim_down": "Dimmer - darker", 4 | "dim_up": "Dimmer - brighter", 5 | "dimmer_off": "Dimmer - off", 6 | "dimmer_off_darker": "Dimmer - off / darker", 7 | "dimmer_on": "Dimmer - on", 8 | "dimmer_on_brighter": "Dimmer - on / brighter", 9 | "dimmer_on_off": "Dimmer - on / off", 10 | "dimmer_on_off_b_d": "Dimmer - on/off & brighter/darker", 11 | "not_active": "inactive", 12 | "sleep_well": "Sleep light", 13 | "wake_up_light": "Wake up light" 14 | }, 15 | "VIRTUAL_DIMMER": { 16 | "description_1": "With a short button press the light will be switched on to the set brightness value. With a long button press the dimmed light will get brighter.", 17 | "description_2": "With a short button press the light will be switched off. With a long button press the light will be dimmed darker.", 18 | "description_3": "With a short button press the light changes between the set brightness value and \"off\". With a long button press the light will be dimmed brighter and darker alternately.", 19 | "description_4": "With a short or long button press the light will be switched on for the set time. During the delay the warning level will be slightly lowered to dim slowly to the status \"off\" afterwards.", 20 | "description_5": "With a short button press the light will be switched on to the defined brightness value and afterwards dimmed to \"off\". With a long button press the light will be dimmed brighter and darker alternately.", 21 | "description_6": "The light continuously changes in a defined interval between the two brightness values./span>

", 22 | "description_7": "With a short button press the light will be switched on to the set brightness value. With a long button press the light will be dimmed brighter and darker alternately.", 23 | "description_8": "With a short or long button press the light will be switched on to the defined brightness value.", 24 | "description_9": "The light will be switched off by a short or long button press.", 25 | "description_10": "The light will be dimmed brighter by a short or long button press.", 26 | "description_11": "The light will be dimmed darker by a short or long button press.", 27 | "description_12": "The button is not active." 28 | } 29 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/WEATHER_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "dummy": "dummy" 4 | }, 5 | "WEATHER": { 6 | "dummy": "dummy" 7 | }, 8 | "WEATHER_TRANSMIT": { 9 | "dummy": "dummy" 10 | } 11 | } -------------------------------------------------------------------------------- /www/easymodes/localization/en/WINDOW_SWITCH_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "EXPERT": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "temperature_lowering_value": "Reduction temperature:" 7 | }, 8 | "KEY": { 9 | "description_1": "NIL" 10 | }, 11 | "ROTARY_HANDLE_SENSOR": { 12 | "description_1": "When the window is opened the reduction temperature will be activated." 13 | }, 14 | "SENSOR_WINDOW": { 15 | "description_1": "When the window is opened the reduction temperature will be activated." 16 | }, 17 | "SHUTTER_CONTACT": { 18 | "description_1": "When the contact is opened the reduction temperature will be activated." 19 | }, 20 | "TILT_SENSOR": { 21 | "description_1": "When the contact is opened the reduction temperature will be activated." 22 | } 23 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/CLIMATECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "CLIMATECONTROL_REGULATOR": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "dummy": "dummy" 7 | }, 8 | "THERMALCONTROL_TRANSMIT": { 9 | "dummy": "dummy" 10 | } 11 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/CLIMATECONTROL_RT_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "CLIMATECONTROL_RT_TRANSCEIVER": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "dummy": "dummy" 7 | } 8 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/DDC.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "switch_off": "Kapiyi kapat", 4 | "switch_on": "Kapiyi ac", 5 | "switch_on_off": "Kapiyi ac / OTOMATIK kapat", 6 | "switch_on_off_toggle": "" 7 | }, 8 | "KEY": { 9 | "description_1": "Tusa kisa süre basildiginda kapi acilir. Tusa uzun süre basildiginda Kapiyi ac / OTOMATIK kapat fonksiyonunu uygular.", 10 | "description_2": "Tusa kisa süre basildiginda kapi kapanir. Tusa uzun süre basildiginda Kapiyi ac / OTOMATIK kapat fonksiyonunu uygular.", 11 | "description_3": "Tusa kisa veya uzun süre basildiginda kapi acilir. Kapi tahrikinden ayarlanabilen bir süre dolduktan sonra kapi kendiliginden kapanir.", 12 | "description_4": "" 13 | } 14 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/GENERIC.json: -------------------------------------------------------------------------------- 1 | { 2 | "absolute": "mutlak", 3 | "active_0": "devre disi", 4 | "active_1": "etkin", 5 | "after": "sonra", 6 | "sensor_nonactive": "Iletim kanali suanda etkin degil!
Kanal parametresini konfigüre edin", 7 | "actor_nonactive": "Aktüatör kanali suanda etkin degil!
Kanal parametresini konfigüre edin", 8 | "enterValue": "Deger gir", 9 | "help": "Yardim", 10 | "hint": "Bilgi", 11 | "hour": "Saat", 12 | "inactive": "devre disi", 13 | "lastValue": "Son deger", 14 | "long": "uzun", 15 | "minimal": "minimum", 16 | "minutes": "Dakikalar", 17 | "none": "yok", 18 | "no_userProfile": "Bu fonksiyon suanda bu profil tarafindan desteklenmiyor", 19 | "ok": "OK", 20 | "seconds": "Saniyeler", 21 | "short": "kisa", 22 | "unlimited": "sonsuz", 23 | "alert": "Alarm", 24 | "blink": "Yanip sönen isik", 25 | "change_signal": "Degistirme sinyali", 26 | "expert": "Uzmanlar", 27 | "light_garage": "Garaj isigi", 28 | "light_stairway": "Merdiven boslugu isigi", 29 | "no_action": "eylem yok", 30 | "off": "kapali", 31 | "Off": "kapali", 32 | "on": "ac", 33 | "On": "ac", 34 | "xxxx": "xxxx", 35 | "yyyy": "yyyy", 36 | "description_longkey": "Tusa uzun süre basmak icin ek ayarlar.", 37 | "channel_nonactive": "", 38 | "not_active": "etkin degil", 39 | "unknownProfile": "Bilinmeyen profil", 40 | "useExpertMode": "Burada uzman modu kullanin." 41 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/PNAME.json: -------------------------------------------------------------------------------- 1 | { 2 | "at": "'da", 3 | "ACTION": "eylem", 4 | "ACT_NUM": "Sinyal sayisi", 5 | "ACT_TYPE": "Sinyal türü", 6 | "AUTO_LOCK_TIME": "Otomatik olarak tekrar kilitle", 7 | "AUTO_UNLOCK_TIME": "Otomatik olarak tekrar kilidi ac", 8 | "BRIGHTNESS_CONTROL": "Aydinlik esigi", 9 | "CHANGE_SIGNAL": "Degistirme sinyali", 10 | "DEF_ACK_ALARM": "Alarm onayi:", 11 | "DEF_ALARM_DURATION": "Alarm süresi", 12 | "DEF_HUMIDITY": "Nem tanimi", 13 | "DEF_OPEN": "Acik tanimi", 14 | "DIM_MAX_LEVEL": "Isik aydinlatildiginda seviye siniri", 15 | "DIM_MIN_LEVEL": "Isik kisildiginda seviye siniri", 16 | "DOWN_DELAY_TIME": "Asagi inme gecikme süresi", 17 | "DOWN_LEVEL": "Asagi inme pozisyonu", 18 | "DOWN_TIME": "\"Asagi\" durumunda bekleme süresi", 19 | "DRIVING_MODE": "Referans sürüs varyasyonu", 20 | "GET_CURRENT_BRIGHTNESS": "Güncel aydinlik derecesini al", 21 | "JUMPTARGET": "Hedef pozisyon", 22 | "MAXIMAL_FILLLEVEL": "Maksimum dolum seviyesi", 23 | "MINIMAL_FILLLEVEL": "Minimum dolum seviyesi", 24 | "OFFDELAY_BLINK": "Kapatma gecikmesinde yanip söner", 25 | "OFFDELAY_TIME": "Kapatma gecikmesi", 26 | "OFF_LEVEL": "\"kapat\" durumundaki seviye", 27 | "OFF_TIME": "\"acik\" durumundaki bekleme süresi", 28 | "ONDELAY_TIME": "Acma gecikmesi", 29 | "ON_AIRING": "'da havalandirma", 30 | "ON_LEVEL": "\"acik\" durumundaki seviye", 31 | "ON_THRESHOLD": "'da acma", 32 | "ON_TIME": "(\"acik\" durumundaki bekleme süresi) acik kalma süresi", 33 | "ON_TIME_MODE": "Bekleme süresi türü", 34 | "OPEN_WHEN": "'de ac", 35 | "RAMPOFF_TIME": "Kapatildiginda rampa süresi", 36 | "RAMPON_TIME": "Acildiginda rampa süresi", 37 | "SWITCH_DIR": "Yön", 38 | "SWITCH_MODE": "Salter modu", 39 | "TEMPERATURE_LOWERING_VALUE": "Düsürme sicakligi", 40 | "UP_DELAY_TIME": "Yukari kaldirma gecikme zamani", 41 | "UP_LEVEL": "Yukari hareket pozisyonu", 42 | "UP_TIME": "\"Üst\" durumunda bekleme süresi", 43 | "WINDOW_OPEN_LEVEL": "Devirme mesafesine devir", 44 | "WINDOW_OPEN_TIME": "\"Devrilmis\" durumunda bekleme süresi", 45 | "WINDOW_RUNNING_SPEED": "Hareket hizi", 46 | "comment": "From here the keys are only available in the english version.", 47 | "ONDELAY_TIME_BASE": "Unit switch on delay", 48 | "ONDELAY_TIME_FACTOR": "Value switch on delay", 49 | "ONDELAY_TIME_FACTOR_DESCR": "Switch on delay", 50 | "ON_TIME_BASE": "Unit switch-on time", 51 | "ON_TIME_FACTOR_DESCR": "Switch-on time (duration in status \"on\")", 52 | "ON_TIME_FACTOR": "Value switch-on time", 53 | "OFFDELAY_TIME_BASE": "Unit switch off delay", 54 | "OFFDELAY_TIME_FACTOR": "Value switch off delay", 55 | "OFFDELAY_TIME_FACTOR_DESCR": "Switch off delay", 56 | "OFF_TIME_BASE": "Unit switch-off time", 57 | "OFF_TIME_FACTOR_DESCR": "Switch-off time (duration in status \"off\")", 58 | "OFF_TIME_FACTOR": "Value switch-off time", 59 | "TEMPERATURE_RC": "Temperature" 60 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/REMOTECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "mode": "Isletim modu", 4 | "option0": "Eylem yok", 5 | "option1": "Oda sicakligi", 6 | "option2": "Otomatik mod", 7 | "option3": "Otomatik mod + sicaklik", 8 | "option4": "Manüel", 9 | "option5": "Boost", 10 | "option6": "Toggle" 11 | }, 12 | "KEY": { 13 | "description_1": "Tusa kisa veya uzun süre basildiginda kalorifer regülatörü istenen isletim moduna alinir." 14 | } 15 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/RGBW_COLOR.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "choose_Mode": "Mod sec", 4 | "jumpToColor": "Renk ata", 5 | "lblShortKeyPress": "Kisa tus basimi", 6 | "lblLongKeyPress": "Uzun tus basimi", 7 | "lblMode": "Mod", 8 | "optionIncColor": "Renk numarasini y%FCkselt", 9 | "optionDecColor": "Renk numarasini azalt", 10 | "optionToggleColor": "Renk numarasini y%FCkselt / azalt" 11 | }, 12 | "KEY": { 13 | "description_1": "Burada tusun modunu ayarlayabilirsiniz. Asagidaki secenekler mevcut: Renk degerini y%FCkselt, renk degerini azalt ve renk degerini degisimli olarak y%FCkselt veya azalt, tus basimi sayacina bagli.", 14 | "description_2": "Burada kisa ve uzun tus basimi icin bir tusu bir renkle atayabilirsiniz." 15 | } 16 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/SWITCH_VIRTUAL_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "switch_off": "Switch - off", 4 | "switch_on": "Switch - on", 5 | "switch_on_off": "Switch - on / off", 6 | "switch_toggle": "Switch toggle" 7 | }, 8 | "KEY_TRANSCEIVER": { 9 | "description_1": "With a short or long button press the switch will be switched on for the set time.", 10 | "description_2": "With a short or long button press the switch will be switched off for the set time.", 11 | "description_3": "With a short or long button press the switch will be switched on or off for the set time (toggle function).", 12 | "description_4": "With a short or long button press the switch will be switched on or off for the set time.", 13 | "description_5": "With a short or long button press the switch will be switched on or off for the set time." 14 | }, 15 | "SHUTTER_CONTACT": { 16 | "description_1": "tr Beim Öffnen des Kontakts wird der Schalter in den entgegengesetzten Zustand geschaltet.", 17 | "description_2": "tr Beim Öffnen des Kontakts wird der Schalter ein- und beim Schließen ausgeschaltet. Diese Funktion lässt sich auch umkehren.", 18 | "description_3": "tr Beim Erkennen des Änderungssignals wird der Schalter für eine festgelegte Zeit eingeschaltet.", 19 | "subset_1": "Offen - ein / Zu - aus", 20 | "subset_2": "Offen - aus / Zu - ein", 21 | "subset_3": "Öffnen", 22 | "subset_4": "Schließen", 23 | "subset_5": "Ändern", 24 | "at": "beim" 25 | } 26 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/VIRTUAL_DIMMER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "dim_down": "Isik ayar salteri - karart", 4 | "dim_up": "Isik ayar salteri - aydinlat", 5 | "dimmer_off": "Isik ayar salteri - kapat", 6 | "dimmer_off_darker": "Isik ayar salteri - kapat/karart", 7 | "dimmer_on": "Isik ayar salteri - ac", 8 | "dimmer_on_brighter": "Isik ayar salteri - ac/aydinlat", 9 | "dimmer_on_off": "Isik ayar salteri - ac/kapat", 10 | "dimmer_on_off_b_d": "Isik ayar salteri - ac/kapat & aydinlat/karart", 11 | "not_active": "etkin degil", 12 | "sleep_well": "Uyku isigi", 13 | "wake_up_light": "Uyanma isigi" 14 | }, 15 | "VIRTUAL_DIMMER": { 16 | "description_1": "Tusa kisa bir süre basildiginda isik belirlenen aydinlik derecesine getirilir. Tusa uzun süre basildiginda ise isik daha da aydinlatilir.", 17 | "description_2": "Tusa kisa bir süre basildiginda isik kapatilir. Tusa uzun süre basildiginda ise isik kisilir.", 18 | "description_3": "Tusa kisa bir süre basildiginda isik belirlenen aydinlik derecesi ile kapali konum arasinda degisir. Tusa uzun süre basildiginda ise isik bir kisilir bir aydinlanir.", 19 | "description_4": "Tusa kisa veya uzun süre basildiginda isik belirlenen süre boyunca acilir. Isigi yavasca kapanana kadar kismak icin ön uyari seviyesi gecikmede hafifce düsürülür.", 20 | "description_5": "Tusa kisa bir süre basildiginda isik belirlenen aydinlik derecesinde acilir ve belirlenen süre sonunda da yavasca kapanana kadar kisilir. Tusa uzun süre basildiginda ise isik bir kisilir bir aydinlanir.", 21 | "description_6": "Isik belirlenen döngüde iki aydinlik derecesi arasinda sürekli degisir.", 22 | "description_7": "Tusa kisa bir süre basildiginda isik belirlenen aydinlik derecesine yavasca acilir. Tusa uzun süre basildiginda ise isik bir kisilir bir aydinlanir.", 23 | "description_8": "Tusa kisa veya uzun süre basildiginda isik belirlenen aydinlik derecesinde acilir.", 24 | "description_9": "Tusa kisa veya uzun süre basildiginda isik kapanir.", 25 | "description_10": "Tusa kisa veya uzun süre basildiginda isik aydinlatilir.", 26 | "description_11": "Tusa kisa veya uzun süre basildiginda isik kisilir.", 27 | "description_12": "Tus etkin degil." 28 | } 29 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/WEATHER_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "GENERIC": { 3 | "dummy": "dummy" 4 | }, 5 | "WEATHER": { 6 | "dummy": "dummy" 7 | }, 8 | "WEATHER_TRANSMIT": { 9 | "dummy": "dummy" 10 | } 11 | } -------------------------------------------------------------------------------- /www/easymodes/localization/tr/WINDOW_SWITCH_RECEIVER.json: -------------------------------------------------------------------------------- 1 | { 2 | "EXPERT": { 3 | "dummy": "dummy" 4 | }, 5 | "GENERIC": { 6 | "temperature_lowering_value": "Düsürme sicakligi" 7 | }, 8 | "KEY": { 9 | "description_1": "NIL" 10 | }, 11 | "ROTARY_HANDLE_SENSOR": { 12 | "description_1": "Pencere acildiginda düsürme sicakligi etkinlesir." 13 | }, 14 | "SENSOR_WINDOW": { 15 | "description_1": "Pencere acildiginda düsürme sicakligi etkinlesir." 16 | }, 17 | "SHUTTER_CONTACT": { 18 | "description_1": "Kontak acildiginda düsürme sicakligi etkinlesir." 19 | }, 20 | "TILT_SENSOR": { 21 | "description_1": "Kontak acildiginda düsürme sicakligi etkinlesir." 22 | } 23 | } -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/favicon.ico -------------------------------------------------------------------------------- /www/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/ajax-loader.gif -------------------------------------------------------------------------------- /www/images/devices/250/100_hm-rc-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/100_hm-rc-8.png -------------------------------------------------------------------------------- /www/images/devices/250/101_hm-sen-db-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/101_hm-sen-db-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/102_hm-es-tx-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/102_hm-es-tx-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/103_hm-sen-mdir-wm55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/103_hm-sen-mdir-wm55.png -------------------------------------------------------------------------------- /www/images/devices/250/104_hm-sec-sd-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/104_hm-sec-sd-2.png -------------------------------------------------------------------------------- /www/images/devices/250/105_hm-sec-sd-2-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/105_hm-sec-sd-2-team.png -------------------------------------------------------------------------------- /www/images/devices/250/106_hm-lc-sw1-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/106_hm-lc-sw1-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/107_hm-es-pmsw1-pl-R2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/107_hm-es-pmsw1-pl-R2.png -------------------------------------------------------------------------------- /www/images/devices/250/107_hm-es-pmsw1-pl-R3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/107_hm-es-pmsw1-pl-R3.png -------------------------------------------------------------------------------- /www/images/devices/250/107_hm-es-pmsw1-pl-R4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/107_hm-es-pmsw1-pl-R4.png -------------------------------------------------------------------------------- /www/images/devices/250/107_hm-es-pmsw1-pl-R5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/107_hm-es-pmsw1-pl-R5.png -------------------------------------------------------------------------------- /www/images/devices/250/108_hm-rc-dis-h-x-eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/108_hm-rc-dis-h-x-eu.png -------------------------------------------------------------------------------- /www/images/devices/250/109_hm-lc-sw1-pl-ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/109_hm-lc-sw1-pl-ct.png -------------------------------------------------------------------------------- /www/images/devices/250/110_hm-es-pmsw1-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/110_hm-es-pmsw1-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/111_hm-lc-rgbw-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/111_hm-lc-rgbw-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/112_hmip-wrc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/112_hmip-wrc2.png -------------------------------------------------------------------------------- /www/images/devices/250/113_hmip-psm-ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/113_hmip-psm-ch.png -------------------------------------------------------------------------------- /www/images/devices/250/113_hmip-psm-it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/113_hmip-psm-it.png -------------------------------------------------------------------------------- /www/images/devices/250/113_hmip-psm-pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/113_hmip-psm-pe.png -------------------------------------------------------------------------------- /www/images/devices/250/113_hmip-psm-uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/113_hmip-psm-uk.png -------------------------------------------------------------------------------- /www/images/devices/250/113_hmip-psm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/113_hmip-psm.png -------------------------------------------------------------------------------- /www/images/devices/250/114_hm-lc-dim1t-fm-lf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/114_hm-lc-dim1t-fm-lf.png -------------------------------------------------------------------------------- /www/images/devices/250/114_hm-lc-dim1t-fm-lf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/114_hm-lc-dim1t-fm-lf_2.png -------------------------------------------------------------------------------- /www/images/devices/250/114_hm-lc-dim1t-fm-lf_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/114_hm-lc-dim1t-fm-lf_3.png -------------------------------------------------------------------------------- /www/images/devices/250/115_hm-es-pmsw1-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/115_hm-es-pmsw1-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/116_hm-rc-4-3_brc-h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/116_hm-rc-4-3_brc-h3.png -------------------------------------------------------------------------------- /www/images/devices/250/117_hm-ou-cfm-tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/117_hm-ou-cfm-tw.png -------------------------------------------------------------------------------- /www/images/devices/250/117_hm-sec-sir-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/117_hm-sec-sir-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/118_hmip-swdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/118_hmip-swdo.png -------------------------------------------------------------------------------- /www/images/devices/250/119_hmip-rc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/119_hmip-rc8.png -------------------------------------------------------------------------------- /www/images/devices/250/120_hmip-etrv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/120_hmip-etrv.png -------------------------------------------------------------------------------- /www/images/devices/250/121_hmip-wth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/121_hmip-wth.png -------------------------------------------------------------------------------- /www/images/devices/250/123_oligo.smart.ip.hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/123_oligo.smart.ip.hm.png -------------------------------------------------------------------------------- /www/images/devices/250/124_hm-sec-mdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/124_hm-sec-mdir.png -------------------------------------------------------------------------------- /www/images/devices/250/125_hmip-smi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/125_hmip-smi.png -------------------------------------------------------------------------------- /www/images/devices/250/126_hm-sen-li-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/126_hm-sen-li-o.png -------------------------------------------------------------------------------- /www/images/devices/250/127_hm-wds30-ot2-sm-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/127_hm-wds30-ot2-sm-2.png -------------------------------------------------------------------------------- /www/images/devices/250/128_hm-dis-ep-wm55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/128_hm-dis-ep-wm55.png -------------------------------------------------------------------------------- /www/images/devices/250/129_hm-lc-ao-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/129_hm-lc-ao-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/130_hmip-srh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/130_hmip-srh.png -------------------------------------------------------------------------------- /www/images/devices/250/131_hmip-wrc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/131_hmip-wrc6.png -------------------------------------------------------------------------------- /www/images/devices/250/132_hmip-smo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/132_hmip-smo.png -------------------------------------------------------------------------------- /www/images/devices/250/133_hmip-asir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/133_hmip-asir.png -------------------------------------------------------------------------------- /www/images/devices/250/134_hmip-fdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/134_hmip-fdt.png -------------------------------------------------------------------------------- /www/images/devices/250/134_hmip-fsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/134_hmip-fsm.png -------------------------------------------------------------------------------- /www/images/devices/250/135_hmip-fsm16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/135_hmip-fsm16.png -------------------------------------------------------------------------------- /www/images/devices/250/136_hmip-miob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/136_hmip-miob.png -------------------------------------------------------------------------------- /www/images/devices/250/137_hmip-fal-c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/137_hmip-fal-c6.png -------------------------------------------------------------------------------- /www/images/devices/250/138_hmip-fal-c10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/138_hmip-fal-c10.png -------------------------------------------------------------------------------- /www/images/devices/250/139_hm-lc-sw1-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/139_hm-lc-sw1-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/13_hm-ws550sth-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/13_hm-ws550sth-i.png -------------------------------------------------------------------------------- /www/images/devices/250/140_alpha-ip-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/140_alpha-ip-rgb.png -------------------------------------------------------------------------------- /www/images/devices/250/141_alpha-ip-rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/141_alpha-ip-rgba.png -------------------------------------------------------------------------------- /www/images/devices/250/142_hm-mod-em-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/142_hm-mod-em-8bit.png -------------------------------------------------------------------------------- /www/images/devices/250/143_hm-lc-dim1t-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/143_hm-lc-dim1t-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/144_hmip-wgc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/144_hmip-wgc.png -------------------------------------------------------------------------------- /www/images/devices/250/145_hmip-froll_hmip-fbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/145_hmip-froll_hmip-fbl.png -------------------------------------------------------------------------------- /www/images/devices/250/146_hmip-sth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/146_hmip-sth.png -------------------------------------------------------------------------------- /www/images/devices/250/147_hmip-sthd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/147_hmip-sthd.png -------------------------------------------------------------------------------- /www/images/devices/250/148_hmip-stho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/148_hmip-stho.png -------------------------------------------------------------------------------- /www/images/devices/250/149_hmip-sam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/149_hmip-sam.png -------------------------------------------------------------------------------- /www/images/devices/250/14_hm-sec-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/14_hm-sec-key.png -------------------------------------------------------------------------------- /www/images/devices/250/150_hm-lc-dw-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/150_hm-lc-dw-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/151_hmip-pcbs-bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/151_hmip-pcbs-bat.png -------------------------------------------------------------------------------- /www/images/devices/250/152_hmip-swdo-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/152_hmip-swdo-i.png -------------------------------------------------------------------------------- /www/images/devices/250/153_hmip-spi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/153_hmip-spi.png -------------------------------------------------------------------------------- /www/images/devices/250/154_hmip-spdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/154_hmip-spdr.png -------------------------------------------------------------------------------- /www/images/devices/250/155_hmip-whs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/155_hmip-whs2.png -------------------------------------------------------------------------------- /www/images/devices/250/156_hmip-mod-oc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/156_hmip-mod-oc8.png -------------------------------------------------------------------------------- /www/images/devices/250/157_hmip-broll_hmip-bbl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/157_hmip-broll_hmip-bbl.png -------------------------------------------------------------------------------- /www/images/devices/250/158_hmip-etrv-uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/158_hmip-etrv-uk.png -------------------------------------------------------------------------------- /www/images/devices/250/159_hmip-mod-rc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/159_hmip-mod-rc8.png -------------------------------------------------------------------------------- /www/images/devices/250/15_hm-sec-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/15_hm-sec-win.png -------------------------------------------------------------------------------- /www/images/devices/250/160_hmipw-drs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/160_hmipw-drs4.png -------------------------------------------------------------------------------- /www/images/devices/250/161_hmipw-drs8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/161_hmipw-drs8.png -------------------------------------------------------------------------------- /www/images/devices/250/162_hmipw-drap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/162_hmipw-drap.png -------------------------------------------------------------------------------- /www/images/devices/250/163_hmipw-drbl4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/163_hmipw-drbl4.png -------------------------------------------------------------------------------- /www/images/devices/250/164_hmipw-dri16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/164_hmipw-dri16.png -------------------------------------------------------------------------------- /www/images/devices/250/165_hmipw-fio6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/165_hmipw-fio6.png -------------------------------------------------------------------------------- /www/images/devices/250/166_hmipw-drd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/166_hmipw-drd3.png -------------------------------------------------------------------------------- /www/images/devices/250/167_hmipw-dri32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/167_hmipw-dri32.png -------------------------------------------------------------------------------- /www/images/devices/250/168_hmip-smi55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/168_hmip-smi55.png -------------------------------------------------------------------------------- /www/images/devices/250/169_hmip-swo-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/169_hmip-swo-pr.png -------------------------------------------------------------------------------- /www/images/devices/250/16_hm-sec-sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/16_hm-sec-sc.png -------------------------------------------------------------------------------- /www/images/devices/250/170_hmip-swo-pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/170_hmip-swo-pl.png -------------------------------------------------------------------------------- /www/images/devices/250/171_hmip-swo-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/171_hmip-swo-b.png -------------------------------------------------------------------------------- /www/images/devices/250/172_hmip-swd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/172_hmip-swd.png -------------------------------------------------------------------------------- /www/images/devices/250/173_hmip-bsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/173_hmip-bsl.png -------------------------------------------------------------------------------- /www/images/devices/250/174_hmip-slo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/174_hmip-slo.png -------------------------------------------------------------------------------- /www/images/devices/250/175_hmip-group-heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/175_hmip-group-heating.png -------------------------------------------------------------------------------- /www/images/devices/250/177_hmip-dbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/177_hmip-dbb.png -------------------------------------------------------------------------------- /www/images/devices/250/178_hmip-etrv-b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/178_hmip-etrv-b1.png -------------------------------------------------------------------------------- /www/images/devices/250/179_hmip-swdm-b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/179_hmip-swdm-b2.png -------------------------------------------------------------------------------- /www/images/devices/250/17_hm-sec-rhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/17_hm-sec-rhs.png -------------------------------------------------------------------------------- /www/images/devices/250/180_hmip-etrv-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/180_hmip-etrv-b.png -------------------------------------------------------------------------------- /www/images/devices/250/181_hmip-swdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/181_hmip-swdm.png -------------------------------------------------------------------------------- /www/images/devices/250/182_hmip-fci1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/182_hmip-fci1.png -------------------------------------------------------------------------------- /www/images/devices/250/183_hmip-mod-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/183_hmip-mod-tm.png -------------------------------------------------------------------------------- /www/images/devices/250/184_hmip-pcbs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/184_hmip-pcbs2.png -------------------------------------------------------------------------------- /www/images/devices/250/185_hmip-FCI6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/185_hmip-FCI6.png -------------------------------------------------------------------------------- /www/images/devices/250/186_hmip-mp3p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/186_hmip-mp3p.png -------------------------------------------------------------------------------- /www/images/devices/250/187_hmip-rcb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/187_hmip-rcb1.png -------------------------------------------------------------------------------- /www/images/devices/250/188_hmip-etrv-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/188_hmip-etrv-c.png -------------------------------------------------------------------------------- /www/images/devices/250/18_hm-rc-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/18_hm-rc-4.png -------------------------------------------------------------------------------- /www/images/devices/250/193_hmip-wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/193_hmip-wt.png -------------------------------------------------------------------------------- /www/images/devices/250/19_hm-rc-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/19_hm-rc-12.png -------------------------------------------------------------------------------- /www/images/devices/250/20_hm-rc-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/20_hm-rc-19.png -------------------------------------------------------------------------------- /www/images/devices/250/21_hm-rc-p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/21_hm-rc-p1.png -------------------------------------------------------------------------------- /www/images/devices/250/22_hm-rc-sec3-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/22_hm-rc-sec3-b.png -------------------------------------------------------------------------------- /www/images/devices/250/23_hm-rc-key3-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/23_hm-rc-key3-b.png -------------------------------------------------------------------------------- /www/images/devices/250/24_hm-cen-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/24_hm-cen-3-1.png -------------------------------------------------------------------------------- /www/images/devices/250/25_hm-em-cmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/25_hm-em-cmm.png -------------------------------------------------------------------------------- /www/images/devices/250/26_hmw-lc-sw2-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/26_hmw-lc-sw2-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/27_hmw-lc-bl1-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/27_hmw-lc-bl1-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/28_hmw-lc-dim1l-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/28_hmw-lc-dim1l-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/29_hmw-io-4-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/29_hmw-io-4-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/2_hm-lc-dim1l-cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/2_hm-lc-dim1l-cv.png -------------------------------------------------------------------------------- /www/images/devices/250/30_hmw-io-12-sw7-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/30_hmw-io-12-sw7-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/31_hmw-wse-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/31_hmw-wse-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/32_hmw-wsth-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/32_hmw-wsth-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/33_hmw-sec-tr-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/33_hmw-sec-tr-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/34_hmw-sys-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/34_hmw-sys-tm.png -------------------------------------------------------------------------------- /www/images/devices/250/35_hmw-sys-tm-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/35_hmw-sys-tm-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/36_hmw-sys-ps7-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/36_hmw-sys-ps7-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/38_hm-pbi-4-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/38_hm-pbi-4-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/39_hm-swi-3-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/39_hm-swi-3-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/3_hm-lc-sw4-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/3_hm-lc-sw4-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/42_hm-cc-tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/42_hm-cc-tc.png -------------------------------------------------------------------------------- /www/images/devices/250/43_hm-cc-vd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/43_hm-cc-vd.png -------------------------------------------------------------------------------- /www/images/devices/250/44_hm-em-ccm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/44_hm-em-ccm.png -------------------------------------------------------------------------------- /www/images/devices/250/45_hm-lc-dim2l-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/45_hm-lc-dim2l-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/46_hm-lc-sw4-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/46_hm-lc-sw4-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/47_hm-sec-tis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/47_hm-sec-tis.png -------------------------------------------------------------------------------- /www/images/devices/250/48_hm-sen-ep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/48_hm-sen-ep.png -------------------------------------------------------------------------------- /www/images/devices/250/49_hm-sec-wds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/49_hm-sec-wds.png -------------------------------------------------------------------------------- /www/images/devices/250/4_hm-lc-sw1-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/4_hm-lc-sw1-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/50_hm-sec-mdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/50_hm-sec-mdir.png -------------------------------------------------------------------------------- /www/images/devices/250/51_hm-sec-sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/51_hm-sec-sd.png -------------------------------------------------------------------------------- /www/images/devices/250/52_hm-sec-sd-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/52_hm-sec-sd-team.png -------------------------------------------------------------------------------- /www/images/devices/250/53_hm-sen-mdir-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/53_hm-sen-mdir-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/54_hm-lc-ddc1-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/54_hm-lc-ddc1-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/54_lc-ddc1-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/54_lc-ddc1-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/54a_lc-ddc1-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/54a_lc-ddc1-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/55_hm-sec-sfa-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/55_hm-sec-sfa-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/56_hmw-sen-sc-12-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/56_hmw-sen-sc-12-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/57_hm-cc-scd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/57_hm-cc-scd.png -------------------------------------------------------------------------------- /www/images/devices/250/58_hmw-sen-sc-12-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/58_hmw-sen-sc-12-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/59_hmw-io-12-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/59_hmw-io-12-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/5_hm-lc-sw2-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/5_hm-lc-sw2-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/60_hm-ou-cf-pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/60_hm-ou-cf-pl.png -------------------------------------------------------------------------------- /www/images/devices/250/61_hm-lc-bl1-pb-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/61_hm-lc-bl1-pb-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/64_hm-lc-dim2T-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/64_hm-lc-dim2T-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/65_hm-lc-dim1t-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/65_hm-lc-dim1t-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/66_hm-lc-dim1t-cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/66_hm-lc-dim1t-cv.png -------------------------------------------------------------------------------- /www/images/devices/250/67_hm-sci-3-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/67_hm-sci-3-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/68_hm-lc-sw4-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/68_hm-lc-sw4-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/69_hm-lc-sw2-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/69_hm-lc-sw2-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/6_hm-lc-bl1-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/6_hm-lc-bl1-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/70_hm-pb-4dis-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/70_hm-pb-4dis-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/71_hmw-io-12-sw14-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/71_hmw-io-12-sw14-dr.png -------------------------------------------------------------------------------- /www/images/devices/250/72_hm-rc-brc-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/72_hm-rc-brc-h.png -------------------------------------------------------------------------------- /www/images/devices/250/73_hm-atent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/73_hm-atent.png -------------------------------------------------------------------------------- /www/images/devices/250/75_hm-pb-2-wm55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/75_hm-pb-2-wm55.png -------------------------------------------------------------------------------- /www/images/devices/250/76_hm-lc-sw4-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/76_hm-lc-sw4-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/77_hm-lc-sw1-ba-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/77_hm-lc-sw1-ba-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/78_hm-ou-led16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/78_hm-ou-led16.png -------------------------------------------------------------------------------- /www/images/devices/250/79_hm-lc-dim1pwm-cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/79_hm-lc-dim1pwm-cv.png -------------------------------------------------------------------------------- /www/images/devices/250/7_hm-lc-bl1-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/7_hm-lc-bl1-fm.png -------------------------------------------------------------------------------- /www/images/devices/250/80_hm-sen-mdir-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/80_hm-sen-mdir-o.png -------------------------------------------------------------------------------- /www/images/devices/250/81_hm-dis-td-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/81_hm-dis-td-t.png -------------------------------------------------------------------------------- /www/images/devices/250/82_hm-sen-wa-od.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/82_hm-sen-wa-od.png -------------------------------------------------------------------------------- /www/images/devices/250/83_hm-cc-rt-dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/83_hm-cc-rt-dn.png -------------------------------------------------------------------------------- /www/images/devices/250/84_hm-rc-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/84_hm-rc-4-2.png -------------------------------------------------------------------------------- /www/images/devices/250/84_hm-rc-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/84_hm-rc-4-3.png -------------------------------------------------------------------------------- /www/images/devices/250/85_hm-rc-key4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/85_hm-rc-key4-2.png -------------------------------------------------------------------------------- /www/images/devices/250/85_hm-rc-sec4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/85_hm-rc-sec4-3.png -------------------------------------------------------------------------------- /www/images/devices/250/86_hm-pb-6-wm55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/86_hm-pb-6-wm55.png -------------------------------------------------------------------------------- /www/images/devices/250/86_hm-rc-key4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/86_hm-rc-key4-3.png -------------------------------------------------------------------------------- /www/images/devices/250/86_hm-rc-sec4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/86_hm-rc-sec4-2.png -------------------------------------------------------------------------------- /www/images/devices/250/87_hm-sen-rd-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/87_hm-sen-rd-o.png -------------------------------------------------------------------------------- /www/images/devices/250/88_hm-lc-sw4-ba-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/88_hm-lc-sw4-ba-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/8_hm-lc-sw1-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/8_hm-lc-sw1-sm.png -------------------------------------------------------------------------------- /www/images/devices/250/92_hm-ou-cm-pcb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/92_hm-ou-cm-pcb.png -------------------------------------------------------------------------------- /www/images/devices/250/93_hm-es-pmsw1-pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/93_hm-es-pmsw1-pl.png -------------------------------------------------------------------------------- /www/images/devices/250/94_hm-mod-re-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/94_hm-mod-re-8.png -------------------------------------------------------------------------------- /www/images/devices/250/95_group_hm-cc-vg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/95_group_hm-cc-vg-1.png -------------------------------------------------------------------------------- /www/images/devices/250/96_hm-tc-it-wm-w-eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/96_hm-tc-it-wm-w-eu.png -------------------------------------------------------------------------------- /www/images/devices/250/97_hm-dis-wm55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/97_hm-dis-wm55.png -------------------------------------------------------------------------------- /www/images/devices/250/98_hm-sec-sco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/98_hm-sec-sco.png -------------------------------------------------------------------------------- /www/images/devices/250/99_hm-mod-em-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/99_hm-mod-em-8.png -------------------------------------------------------------------------------- /www/images/devices/250/9_hm-ws550-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/9_hm-ws550-us.png -------------------------------------------------------------------------------- /www/images/devices/250/CCU2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/CCU2.png -------------------------------------------------------------------------------- /www/images/devices/250/CCU3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/CCU3.png -------------------------------------------------------------------------------- /www/images/devices/250/IP65_G201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/IP65_G201.png -------------------------------------------------------------------------------- /www/images/devices/250/OM55_DimmerSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/OM55_DimmerSwitch.png -------------------------------------------------------------------------------- /www/images/devices/250/PushButton-2ch-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/PushButton-2ch-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/PushButton-4ch-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/PushButton-4ch-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/TH_CS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/TH_CS.png -------------------------------------------------------------------------------- /www/images/devices/250/WeatherCombiSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/WeatherCombiSensor.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/_hm-coupling-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/_hm-coupling-onoff.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-group.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-onoff.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-rgb-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-rgb-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-rgb.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-rgbw-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-rgbw-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-rgbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-rgbw.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-white-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-white-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-coupling-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-coupling-white.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-hue_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-hue_gateway.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/hm-lightify_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/coupling/hm-lightify_gateway.png -------------------------------------------------------------------------------- /www/images/devices/250/group_hm-cc-vg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/group_hm-cc-vg-1.png -------------------------------------------------------------------------------- /www/images/devices/250/hm-rc-sec4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/hm-rc-sec4-3.png -------------------------------------------------------------------------------- /www/images/devices/250/hm_resc-win-pcb-sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/hm_resc-win-pcb-sc.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/_hm-lightify-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/_hm-lightify-onoff.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-group.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-onoff.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-rgb-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-rgb-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-rgb.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-rgbw-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-rgbw-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-rgbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-rgbw.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-white-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-white-dim.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify-white.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/osram-lightify/hm-lightify_gateway.png -------------------------------------------------------------------------------- /www/images/devices/250/unknown_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/250/unknown_device.png -------------------------------------------------------------------------------- /www/images/devices/50/100_hm-rc-8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/100_hm-rc-8_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/101_hm-sen-db-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/101_hm-sen-db-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/102_hm-es-tx-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/102_hm-es-tx-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/103_hm-sen-mdir-wm55_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/103_hm-sen-mdir-wm55_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/104_hm-sec-sd-2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/104_hm-sec-sd-2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/105_hm-sec-sd-2-team_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/105_hm-sec-sd-2-team_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/107_hm-es-pmsw1-pl-R2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/107_hm-es-pmsw1-pl-R2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/107_hm-es-pmsw1-pl-R3_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/107_hm-es-pmsw1-pl-R3_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/107_hm-es-pmsw1-pl-R4_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/107_hm-es-pmsw1-pl-R4_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/107_hm-es-pmsw1-pl-R5_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/107_hm-es-pmsw1-pl-R5_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/108_hm-rc-dis-h-x-eu_thump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/108_hm-rc-dis-h-x-eu_thump.png -------------------------------------------------------------------------------- /www/images/devices/50/109_hm-lc-sw1-pl-ct_thump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/109_hm-lc-sw1-pl-ct_thump.png -------------------------------------------------------------------------------- /www/images/devices/50/110_hm-es-pmsw1-dr_thump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/110_hm-es-pmsw1-dr_thump.png -------------------------------------------------------------------------------- /www/images/devices/50/111_hm-lc-rgbw-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/111_hm-lc-rgbw-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/112_hmip-wrc2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/112_hmip-wrc2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/113_hmip-psm-ch_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/113_hmip-psm-ch_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/113_hmip-psm-it_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/113_hmip-psm-it_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/113_hmip-psm-pe_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/113_hmip-psm-pe_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/113_hmip-psm-uk_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/113_hmip-psm-uk_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/113_hmip-psm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/113_hmip-psm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/114_hm-lc-dim1t-fm-lf_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/114_hm-lc-dim1t-fm-lf_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/114_hm-lc-dim1t-fm-lf_thumb_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/114_hm-lc-dim1t-fm-lf_thumb_2.png -------------------------------------------------------------------------------- /www/images/devices/50/114_hm-lc-dim1t-fm-lf_thumb_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/114_hm-lc-dim1t-fm-lf_thumb_3.png -------------------------------------------------------------------------------- /www/images/devices/50/115_hm-es-pmsw1-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/115_hm-es-pmsw1-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/117_hm-ou-cfm-tw_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/117_hm-ou-cfm-tw_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/117_hm-sec-sir-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/117_hm-sec-sir-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/118_hmip-swdo_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/118_hmip-swdo_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/119_hmip-rc8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/119_hmip-rc8_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/120_hmip-etrv_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/120_hmip-etrv_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/121_hmip-wth_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/121_hmip-wth_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/123_oligo.smart.ip.hm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/123_oligo.smart.ip.hm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/124_hm-sec-mdir_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/124_hm-sec-mdir_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/125_hmip-smi_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/125_hmip-smi_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/126_hm-sen-li-o_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/126_hm-sen-li-o_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/127_hm-wds30-ot2-sm-2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/127_hm-wds30-ot2-sm-2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/128_hm-dis-ep-wm55_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/128_hm-dis-ep-wm55_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/129_hm-lc-ao-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/129_hm-lc-ao-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/130_hmip-srh_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/130_hmip-srh_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/131_hmip-wrc6_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/131_hmip-wrc6_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/132_hmip-smo_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/132_hmip-smo_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/133_hmip-asir_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/133_hmip-asir_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/134_hmip-fdt_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/134_hmip-fdt_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/134_hmip-fsm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/134_hmip-fsm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/135_hmip-fsm16_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/135_hmip-fsm16_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/136_hmip-miob_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/136_hmip-miob_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/137_hmip-fal-c6_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/137_hmip-fal-c6_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/138_hmip-fal-c10_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/138_hmip-fal-c10_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/139_hm-lc-sw1-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/139_hm-lc-sw1-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/13_hm-ws550sth-i_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/13_hm-ws550sth-i_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/140_alpha-ip-rgb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/140_alpha-ip-rgb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/141_alpha-ip-rgba_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/141_alpha-ip-rgba_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/142_hm-mod-em-8bit_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/142_hm-mod-em-8bit_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/143_hm-lc-dim1t-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/143_hm-lc-dim1t-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/144_hmip-wgc_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/144_hmip-wgc_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/145_hmip-froll_hmip-fbl_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/145_hmip-froll_hmip-fbl_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/146_hmip-sth_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/146_hmip-sth_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/147_hmip-sthd_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/147_hmip-sthd_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/148_hmip-stho_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/148_hmip-stho_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/149_hmip-sam_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/149_hmip-sam_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/14_hm-sec-key_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/14_hm-sec-key_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/150_hm-lc-dw-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/150_hm-lc-dw-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/151_hmip-pcbs-bat_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/151_hmip-pcbs-bat_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/152_hmip-swdo-i_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/152_hmip-swdo-i_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/153_hmip-spi_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/153_hmip-spi_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/154_hmip-spdr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/154_hmip-spdr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/155_hmip-whs2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/155_hmip-whs2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/156_hmip-mod-oc8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/156_hmip-mod-oc8_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/157_hmip-broll_hmip-bbl_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/157_hmip-broll_hmip-bbl_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/158_hmip-etrv-uk_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/158_hmip-etrv-uk_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/159_hmip-mod-rc8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/159_hmip-mod-rc8_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/15_hm-sec-win_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/15_hm-sec-win_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/160_hmipw-drs4_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/160_hmipw-drs4_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/161_hmipw-drs8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/161_hmipw-drs8_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/162_hmipw-drap_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/162_hmipw-drap_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/163_hmipw-drbl4_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/163_hmipw-drbl4_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/164_hmipw-dri16_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/164_hmipw-dri16_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/165_hmipw-fio6_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/165_hmipw-fio6_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/166_hmipw-drd3_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/166_hmipw-drd3_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/167_hmipw-dri32_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/167_hmipw-dri32_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/168_hmip-smi55_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/168_hmip-smi55_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/169_hmip-swo-pr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/169_hmip-swo-pr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/16_hm-sec-sc_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/16_hm-sec-sc_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/170_hmip-swo-pl_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/170_hmip-swo-pl_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/171_hmip-swo-b_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/171_hmip-swo-b_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/172_hmip-swd_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/172_hmip-swd_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/173_hmip-bsl_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/173_hmip-bsl_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/174_hmip-slo_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/174_hmip-slo_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/175_hmip-group-heating_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/175_hmip-group-heating_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/177_hmip-dbb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/177_hmip-dbb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/178_hmip-etrv-b1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/178_hmip-etrv-b1_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/179_hmip-swdm-b2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/179_hmip-swdm-b2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/17_hm-sec-rhs_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/17_hm-sec-rhs_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/180_hmip-etrv-b_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/180_hmip-etrv-b_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/181_hmip-swdm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/181_hmip-swdm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/182_hmip-fci1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/182_hmip-fci1_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/183_hmip-mod-tm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/183_hmip-mod-tm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/184_hmip-pcbs2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/184_hmip-pcbs2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/185_hmip-FCI6_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/185_hmip-FCI6_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/186_hmip-mp3p_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/186_hmip-mp3p_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/187_hmip-rcb1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/187_hmip-rcb1_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/188_hmip-etrv-c_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/188_hmip-etrv-c_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/18_hm-rc-4_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/18_hm-rc-4_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/193_hmip-wt_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/193_hmip-wt_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/19_hm-rc-12_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/19_hm-rc-12_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/20_hm-rc-19_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/20_hm-rc-19_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/21_hm-rc-p1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/21_hm-rc-p1_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/22_hm-rc-sec3-b_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/22_hm-rc-sec3-b_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/23_hm-rc-key3-b_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/23_hm-rc-key3-b_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/24_hm-cen-3-1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/24_hm-cen-3-1_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/25_hm-em-cmm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/25_hm-em-cmm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/26_hmw-lc-sw2-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/26_hmw-lc-sw2-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/27_hmw-lc-bl1-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/27_hmw-lc-bl1-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/28_hmw-lc-dim1l-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/28_hmw-lc-dim1l-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/29_hmw-io-4-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/29_hmw-io-4-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/2_hm-lc-dim1l-cv_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/2_hm-lc-dim1l-cv_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/30_hmw-io-12-sw7-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/30_hmw-io-12-sw7-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/31_hmw-wse-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/31_hmw-wse-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/32_hmw-wsth-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/32_hmw-wsth-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/33_hmw-sec-tr-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/33_hmw-sec-tr-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/34_hmw-sys-tm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/34_hmw-sys-tm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/35_hmw-sys-tm-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/35_hmw-sys-tm-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/36_hmw-sys-ps7-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/36_hmw-sys-ps7-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/38_hm-pbi-4-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/38_hm-pbi-4-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/39_hm-swi-3-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/39_hm-swi-3-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/3_hm-lc-sw4-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/3_hm-lc-sw4-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/42_hm-cc-tc_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/42_hm-cc-tc_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/43_hm-cc-vd_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/43_hm-cc-vd_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/44_hm-em-ccm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/44_hm-em-ccm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/45_hm-lc-dim2l-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/45_hm-lc-dim2l-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/46_hm-lc-sw4-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/46_hm-lc-sw4-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/47_hm-sec-tis_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/47_hm-sec-tis_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/48_hm-sen-ep_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/48_hm-sen-ep_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/49_hm-sec-wds_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/49_hm-sec-wds_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/4_hm-lc-sw1-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/4_hm-lc-sw1-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/50_hm-sec-mdir_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/50_hm-sec-mdir_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/51_hm-sec-sd_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/51_hm-sec-sd_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/52_hm-sec-sd-team_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/52_hm-sec-sd-team_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/53_hm-sen-mdir-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/53_hm-sen-mdir-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/54_hm-lc-ddc1-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/54_hm-lc-ddc1-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/54_lc-ddc1-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/54_lc-ddc1-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/54a_lc-ddc1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/54a_lc-ddc1_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/55_hm-sec-sfa-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/55_hm-sec-sfa-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/56_hmw-sen-sc-12-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/56_hmw-sen-sc-12-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/57_hm-cc-scd_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/57_hm-cc-scd_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/58_hmw-sen-sc-12-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/58_hmw-sen-sc-12-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/59_hmw-io-12-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/59_hmw-io-12-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/5_hm-lc-sw2-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/5_hm-lc-sw2-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/60_hm-ou-cf-pl_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/60_hm-ou-cf-pl_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/61_hm-lc-bi1-pb-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/61_hm-lc-bi1-pb-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/61_hm-lc-bl1-pb-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/61_hm-lc-bl1-pb-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/64_hm-lc-dim2T-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/64_hm-lc-dim2T-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/65_hm-lc-dim1t-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/65_hm-lc-dim1t-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/66_hm-lc-dim1t-cv_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/66_hm-lc-dim1t-cv_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/67_hm-sci-3-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/67_hm-sci-3-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/68_hm-lc-sw4-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/68_hm-lc-sw4-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/69_hm-lc-sw2-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/69_hm-lc-sw2-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/6_hm-lc-bl1-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/6_hm-lc-bl1-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/70_hm-pb-4dis-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/70_hm-pb-4dis-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/71_hmw-io-12-sw14-dr_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/71_hmw-io-12-sw14-dr_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/72_hm-rc-brc-h_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/72_hm-rc-brc-h_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/73_hm-atent_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/73_hm-atent_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/75_hm-pb-2-wm55_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/75_hm-pb-2-wm55_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/76_hm-lc-sw4-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/76_hm-lc-sw4-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/77_hm-lc-sw1-ba-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/77_hm-lc-sw1-ba-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/78_hm-ou-led16_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/78_hm-ou-led16_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/7_hm-lc-bl1-fm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/7_hm-lc-bl1-fm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/80_hm-sen-mdir-o_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/80_hm-sen-mdir-o_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/81_hm-dis-td-t_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/81_hm-dis-td-t_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/82_hm-sen-wa-od_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/82_hm-sen-wa-od_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/83_hm-cc-rt-dn_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/83_hm-cc-rt-dn_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/84_hm-rc-4-2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/84_hm-rc-4-2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/84_hm-rc-4-x_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/84_hm-rc-4-x_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/85_hm-rc-key4-2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/85_hm-rc-key4-2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/86_hm-pb-6-wm55_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/86_hm-pb-6-wm55_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/86_hm-rc-sec4-2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/86_hm-rc-sec4-2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/87_hm-sen-rd-o_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/87_hm-sen-rd-o_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/88_hm-lc-sw4-ba-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/88_hm-lc-sw4-ba-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/8_hm-lc-sw1-sm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/8_hm-lc-sw1-sm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/92_hm-ou-cm-pcb_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/92_hm-ou-cm-pcb_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/93_hm-es-pmsw1-pl_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/93_hm-es-pmsw1-pl_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/94_hm-mod-re-8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/94_hm-mod-re-8_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/95_group_hm-cc-vg-1_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/95_group_hm-cc-vg-1_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/96_hm-tc-it-wm-w-eu_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/96_hm-tc-it-wm-w-eu_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/97_hm-dis-wm55_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/97_hm-dis-wm55_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/98_hm-sec-sco_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/98_hm-sec-sco_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/99_hm-mod-em-8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/99_hm-mod-em-8_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/9_hm-ws550-us_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/9_hm-ws550-us_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/CCU2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/CCU2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/CCU3_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/CCU3_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/IP65_G201_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/IP65_G201_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/OM55_DimmerSwitch_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/OM55_DimmerSwitch_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/PushButton-2ch-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/PushButton-2ch-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/PushButton-4ch-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/PushButton-4ch-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/TH_CS_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/TH_CS_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/WeatherCombiSensor_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/WeatherCombiSensor_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/_hm-coupling-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/_hm-coupling-onoff.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-group.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-onoff.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-rgb-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-rgb-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-rgb.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-rgbw-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-rgbw-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-rgbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-rgbw.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-white-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-white-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-coupling-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-coupling-white.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-hue_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-hue_gateway.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/hm-lightify_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/coupling/hm-lightify_gateway.png -------------------------------------------------------------------------------- /www/images/devices/50/group_hm-cc-vg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/group_hm-cc-vg-1.png -------------------------------------------------------------------------------- /www/images/devices/50/hm_resc-win-pcb-sc_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/hm_resc-win-pcb-sc_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/_hm-lightify-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/_hm-lightify-onoff.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-group.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-onoff.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-rgb-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-rgb-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-rgb.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-rgbw-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-rgbw-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-rgbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-rgbw.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-white-dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-white-dim.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify-white.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify_gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/osram-lightify/hm-lightify_gateway.png -------------------------------------------------------------------------------- /www/images/devices/50/unknown_device_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/devices/50/unknown_device_thumb.png -------------------------------------------------------------------------------- /www/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/help.png -------------------------------------------------------------------------------- /www/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/icon.png -------------------------------------------------------------------------------- /www/images/servicemsgs/config_pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/servicemsgs/config_pending.png -------------------------------------------------------------------------------- /www/images/servicemsgs/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/servicemsgs/error.png -------------------------------------------------------------------------------- /www/images/servicemsgs/lowbat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/servicemsgs/lowbat.png -------------------------------------------------------------------------------- /www/images/servicemsgs/unreach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/servicemsgs/unreach.png -------------------------------------------------------------------------------- /www/images/uiTabsArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/b804126a9dbb923ac4a02ac4efb6a6f34d9484d0/www/images/uiTabsArrow.png -------------------------------------------------------------------------------- /www/js/helpMasterParamset.json: -------------------------------------------------------------------------------- 1 | { 2 | "de": { 3 | "MOTION_DETECTOR": { 4 | "EVENT_FILTER_PERIOD": "Empfindlichkeit, Auslösen bei EVENT_FILTER_NUMBER Sensor-Impulsen innerhalb x Sekunden" 5 | } 6 | } 7 | } --------------------------------------------------------------------------------