├── .gitignore ├── .travis.yml ├── LICENSE ├── Readme.md ├── appveyor.yml ├── docs ├── hmm1.png ├── hmm2.png └── hmm3.png ├── main.js ├── 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/Readme.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/hmm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/docs/hmm1.png -------------------------------------------------------------------------------- /docs/hmm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/docs/hmm2.png -------------------------------------------------------------------------------- /docs/hmm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/docs/hmm3.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/package.json -------------------------------------------------------------------------------- /tools/convert_easymodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/tools/convert_easymodes.js -------------------------------------------------------------------------------- /tools/convert_imgpaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/tools/convert_imgpaths.js -------------------------------------------------------------------------------- /tools/convert_stringtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/tools/convert_stringtable.js -------------------------------------------------------------------------------- /tools/update_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/tools/update_images.sh -------------------------------------------------------------------------------- /www/css/homematic-manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/css/homematic-manager.css -------------------------------------------------------------------------------- /www/easymodes/ACTOR_SECURITY/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_SECURITY/KEY.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_SECURITY/RAINDETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_SECURITY/RAINDETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_SECURITY/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_SECURITY/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_SECURITY/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_SECURITY/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_SECURITY/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_SECURITY/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_SECURITY/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_SECURITY/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/KEY.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/RAINDETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/RAINDETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/SENSOR_FOR_CARBON_DIOXIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/SENSOR_FOR_CARBON_DIOXIDE.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/ACTOR_WINDOW/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ACTOR_WINDOW/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/KEY.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/ROTARY_HANDLE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/ROTARY_HANDLE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/ALARMACTUATOR/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/ALARMACTUATOR/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/BLIND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/BLIND.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/KEY.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/RAINDETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/RAINDETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/SENSOR_FOR_CARBON_DIOXIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/SENSOR_FOR_CARBON_DIOXIDE.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/SMOKE_DETECTOR_TEAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/SMOKE_DETECTOR_TEAM.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/BLIND/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/BLIND/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/DDC/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DDC/KEY.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/KEY.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/RAINDETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/RAINDETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/ROTARY_HANDLE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/ROTARY_HANDLE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/SENSOR_FOR_CARBON_DIOXIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/SENSOR_FOR_CARBON_DIOXIDE.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/SMOKE_DETECTOR_TEAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/SMOKE_DETECTOR_TEAM.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/DIMMER/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/DIMMER/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/HMW_BLIND/INPUT_OUTPUT_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_BLIND/INPUT_OUTPUT_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_BLIND/INPUT_OUTPUT_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_BLIND/INPUT_OUTPUT_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_BLIND/KEY_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_BLIND/KEY_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_BLIND/KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_BLIND/KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_BLIND/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_BLIND/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/HMW_BLIND/VIRTUAL_KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_BLIND/VIRTUAL_KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_DIMMER/INPUT_OUTPUT_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_DIMMER/INPUT_OUTPUT_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_DIMMER/INPUT_OUTPUT_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_DIMMER/INPUT_OUTPUT_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_DIMMER/KEY_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_DIMMER/KEY_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_DIMMER/KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_DIMMER/KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_DIMMER/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_DIMMER/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/HMW_DIMMER/VIRTUAL_KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_DIMMER/VIRTUAL_KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_INPUT_OUTPUT/INPUT_OUTPUT_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_INPUT_OUTPUT/INPUT_OUTPUT_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_INPUT_OUTPUT/INPUT_OUTPUT_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_INPUT_OUTPUT/INPUT_OUTPUT_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_INPUT_OUTPUT/KEY_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_INPUT_OUTPUT/KEY_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_INPUT_OUTPUT/KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_INPUT_OUTPUT/KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_INPUT_OUTPUT/VIRTUAL_KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_INPUT_OUTPUT/VIRTUAL_KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_SWITCH/INPUT_OUTPUT_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_SWITCH/INPUT_OUTPUT_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_SWITCH/INPUT_OUTPUT_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_SWITCH/INPUT_OUTPUT_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_SWITCH/KEY_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_SWITCH/KEY_0.json -------------------------------------------------------------------------------- /www/easymodes/HMW_SWITCH/KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_SWITCH/KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/HMW_SWITCH/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_SWITCH/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/HMW_SWITCH/VIRTUAL_KEY_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/HMW_SWITCH/VIRTUAL_KEY_1.json -------------------------------------------------------------------------------- /www/easymodes/KEYMATIC/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/KEYMATIC/KEY.json -------------------------------------------------------------------------------- /www/easymodes/KEYMATIC/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/KEYMATIC/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/KEYMATIC/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/KEYMATIC/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/KEYMATIC/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/KEYMATIC/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/KEYMATIC/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/KEYMATIC/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/REMOTECONTROL_RECEIVER/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/REMOTECONTROL_RECEIVER/KEY.json -------------------------------------------------------------------------------- /www/easymodes/RGBW_AUTOMATIC/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/RGBW_AUTOMATIC/KEY.json -------------------------------------------------------------------------------- /www/easymodes/RGBW_COLOR/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/RGBW_COLOR/KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/KEY_PAIR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/KEY_PAIR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/SMOKE_DETECTOR_TEAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/SMOKE_DETECTOR_TEAM.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIME/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIME/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/KEY_PAIR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/KEY_PAIR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/SMOKE_DETECTOR_TEAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/SMOKE_DETECTOR_TEAM.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/SMOKE_DETECTOR_TEAM_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/SMOKE_DETECTOR_TEAM_V2.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_CHIMEM/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_CHIMEM/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/KEY_PAIR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/KEY_PAIR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/SMOKE_DETECTOR_TEAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/SMOKE_DETECTOR_TEAM.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LED/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LED/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/KEY_PAIR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/KEY_PAIR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/SMOKE_DETECTOR_TEAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/SMOKE_DETECTOR_TEAM.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/SMOKE_DETECTOR_TEAM_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/SMOKE_DETECTOR_TEAM_V2.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/SIGNAL_LEDM/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SIGNAL_LEDM/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/KEY.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/RAINDETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/RAINDETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/ROTARY_HANDLE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/ROTARY_HANDLE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/SENSOR_FOR_CARBON_DIOXIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/SENSOR_FOR_CARBON_DIOXIDE.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/STATUS_INDICATOR/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/STATUS_INDICATOR/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/CAPACITIVE_FILLING_LEVEL_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/CAPACITIVE_FILLING_LEVEL_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/CONDITION_CURRENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/CONDITION_CURRENT.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/CONDITION_FREQUENCY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/CONDITION_FREQUENCY.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/CONDITION_POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/CONDITION_POWER.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/CONDITION_VOLTAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/CONDITION_VOLTAGE.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/KEY.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/MOTION_DETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/MOTION_DETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/PULSE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/PULSE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/RAINDETECTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/RAINDETECTOR.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/ROTARY_HANDLE_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/ROTARY_HANDLE_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/SENSOR_FOR_CARBON_DIOXIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/SENSOR_FOR_CARBON_DIOXIDE.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/SWITCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/SWITCH.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/SWITCH_INTERFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/SWITCH_INTERFACE.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/VIRTUAL_KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/VIRTUAL_KEY.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/WATERDETECTIONSENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/WATERDETECTIONSENSOR.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH_VIRTUAL_RECEIVER/KEY_TRANSCEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH_VIRTUAL_RECEIVER/KEY_TRANSCEIVER.json -------------------------------------------------------------------------------- /www/easymodes/SWITCH_VIRTUAL_RECEIVER/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/SWITCH_VIRTUAL_RECEIVER/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/VIRTUAL_DIMMER/VIRTUAL_DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/VIRTUAL_DIMMER/VIRTUAL_DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/WEATHER_RECEIVER/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WEATHER_RECEIVER/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/WEATHER_RECEIVER/WEATHER_TRANSMIT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WEATHER_RECEIVER/WEATHER_TRANSMIT.json -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/KEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WINDOW_SWITCH_RECEIVER/KEY.json -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/SENSOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WINDOW_SWITCH_RECEIVER/SENSOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/SHUTTER_CONTACT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WINDOW_SWITCH_RECEIVER/SHUTTER_CONTACT.json -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WINDOW_SWITCH_RECEIVER/TEMPLATE.json -------------------------------------------------------------------------------- /www/easymodes/WINDOW_SWITCH_RECEIVER/TILT_SENSOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WINDOW_SWITCH_RECEIVER/TILT_SENSOR.json -------------------------------------------------------------------------------- /www/easymodes/WS_TH/WEATHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/WS_TH/WEATHER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/ACTOR_SECURITY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/ACTOR_SECURITY.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/ACTOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/ACTOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/ALARMACTUATOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/ALARMACTUATOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/BLIND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/BLIND.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/CLIMATECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/CLIMATECONTROL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/CLIMATECONTROL_RT_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/CLIMATECONTROL_RT_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/DDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/DDC.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/GENERIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/GENERIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/HMW_BLIND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/HMW_BLIND.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/HMW_DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/HMW_DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/HMW_INPUT_OUTPUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/HMW_INPUT_OUTPUT.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/HMW_SWITCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/HMW_SWITCH.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/KEYMATIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/KEYMATIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/PNAME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/PNAME.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/REMOTECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/REMOTECONTROL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/RGBW_AUTOMATIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/RGBW_AUTOMATIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/RGBW_COLOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/RGBW_COLOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/SIGNAL_CHIME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/SIGNAL_CHIME.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/SIGNAL_CHIMEM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/SIGNAL_CHIMEM.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/SIGNAL_LED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/SIGNAL_LED.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/SIGNAL_LEDM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/SIGNAL_LEDM.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/STATUS_INDICATOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/STATUS_INDICATOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/SWITCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/SWITCH.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/SWITCH_VIRTUAL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/SWITCH_VIRTUAL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/VIRTUAL_DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/VIRTUAL_DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/WEATHER_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/WEATHER_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/de/WINDOW_SWITCH_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/de/WINDOW_SWITCH_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/ACTOR_SECURITY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/ACTOR_SECURITY.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/ACTOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/ACTOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/ALARMACTUATOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/ALARMACTUATOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/BLIND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/BLIND.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/CLIMATECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/CLIMATECONTROL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/CLIMATECONTROL_RT_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/CLIMATECONTROL_RT_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/DDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/DDC.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/GENERIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/GENERIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/HMW_BLIND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/HMW_BLIND.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/HMW_DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/HMW_DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/HMW_INPUT_OUTPUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/HMW_INPUT_OUTPUT.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/HMW_SWITCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/HMW_SWITCH.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/KEYMATIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/KEYMATIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/PNAME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/PNAME.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/REMOTECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/REMOTECONTROL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/RGBW_AUTOMATIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/RGBW_AUTOMATIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/RGBW_COLOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/RGBW_COLOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/SIGNAL_CHIME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/SIGNAL_CHIME.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/SIGNAL_CHIMEM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/SIGNAL_CHIMEM.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/SIGNAL_LED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/SIGNAL_LED.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/SIGNAL_LEDM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/SIGNAL_LEDM.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/STATUS_INDICATOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/STATUS_INDICATOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/SWITCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/SWITCH.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/SWITCH_VIRTUAL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/SWITCH_VIRTUAL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/VIRTUAL_DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/VIRTUAL_DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/WEATHER_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/WEATHER_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/en/WINDOW_SWITCH_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/en/WINDOW_SWITCH_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/ACTOR_SECURITY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/ACTOR_SECURITY.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/ACTOR_WINDOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/ACTOR_WINDOW.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/ALARMACTUATOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/ALARMACTUATOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/BLIND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/BLIND.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/CLIMATECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/CLIMATECONTROL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/CLIMATECONTROL_RT_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/CLIMATECONTROL_RT_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/DDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/DDC.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/GENERIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/GENERIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/HMW_BLIND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/HMW_BLIND.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/HMW_DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/HMW_DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/HMW_INPUT_OUTPUT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/HMW_INPUT_OUTPUT.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/HMW_SWITCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/HMW_SWITCH.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/KEYMATIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/KEYMATIC.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/PNAME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/PNAME.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/REMOTECONTROL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/REMOTECONTROL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/RGBW_COLOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/RGBW_COLOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/SIGNAL_CHIME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/SIGNAL_CHIME.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/SIGNAL_CHIMEM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/SIGNAL_CHIMEM.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/SIGNAL_LED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/SIGNAL_LED.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/SIGNAL_LEDM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/SIGNAL_LEDM.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/STATUS_INDICATOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/STATUS_INDICATOR.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/SWITCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/SWITCH.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/SWITCH_VIRTUAL_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/SWITCH_VIRTUAL_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/VIRTUAL_DIMMER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/VIRTUAL_DIMMER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/WEATHER_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/WEATHER_RECEIVER.json -------------------------------------------------------------------------------- /www/easymodes/localization/tr/WINDOW_SWITCH_RECEIVER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/easymodes/localization/tr/WINDOW_SWITCH_RECEIVER.json -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/ajax-loader.gif -------------------------------------------------------------------------------- /www/images/devices/250/100_hm-rc-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/112_hmip-wrc2.png -------------------------------------------------------------------------------- /www/images/devices/250/113_hmip-psm-ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/113_hmip-psm-uk.png -------------------------------------------------------------------------------- /www/images/devices/250/113_hmip-psm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/118_hmip-swdo.png -------------------------------------------------------------------------------- /www/images/devices/250/119_hmip-rc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/119_hmip-rc8.png -------------------------------------------------------------------------------- /www/images/devices/250/120_hmip-etrv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/120_hmip-etrv.png -------------------------------------------------------------------------------- /www/images/devices/250/121_hmip-wth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/www/images/devices/250/124_hm-sec-mdir.png -------------------------------------------------------------------------------- /www/images/devices/250/125_hmip-smi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/130_hmip-srh.png -------------------------------------------------------------------------------- /www/images/devices/250/131_hmip-wrc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/131_hmip-wrc6.png -------------------------------------------------------------------------------- /www/images/devices/250/132_hmip-smo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/132_hmip-smo.png -------------------------------------------------------------------------------- /www/images/devices/250/133_hmip-asir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/133_hmip-asir.png -------------------------------------------------------------------------------- /www/images/devices/250/134_hmip-fdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/134_hmip-fdt.png -------------------------------------------------------------------------------- /www/images/devices/250/134_hmip-fsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/134_hmip-fsm.png -------------------------------------------------------------------------------- /www/images/devices/250/135_hmip-fsm16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/135_hmip-fsm16.png -------------------------------------------------------------------------------- /www/images/devices/250/136_hmip-miob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/136_hmip-miob.png -------------------------------------------------------------------------------- /www/images/devices/250/137_hmip-fal-c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/146_hmip-sth.png -------------------------------------------------------------------------------- /www/images/devices/250/147_hmip-sthd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/147_hmip-sthd.png -------------------------------------------------------------------------------- /www/images/devices/250/148_hmip-stho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/148_hmip-stho.png -------------------------------------------------------------------------------- /www/images/devices/250/149_hmip-sam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/149_hmip-sam.png -------------------------------------------------------------------------------- /www/images/devices/250/14_hm-sec-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/152_hmip-swdo-i.png -------------------------------------------------------------------------------- /www/images/devices/250/153_hmip-spi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/153_hmip-spi.png -------------------------------------------------------------------------------- /www/images/devices/250/154_hmip-spdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/154_hmip-spdr.png -------------------------------------------------------------------------------- /www/images/devices/250/155_hmip-whs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/155_hmip-whs2.png -------------------------------------------------------------------------------- /www/images/devices/250/156_hmip-mod-oc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/15_hm-sec-win.png -------------------------------------------------------------------------------- /www/images/devices/250/160_hmipw-drs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/160_hmipw-drs4.png -------------------------------------------------------------------------------- /www/images/devices/250/161_hmipw-drs8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/161_hmipw-drs8.png -------------------------------------------------------------------------------- /www/images/devices/250/162_hmipw-drap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/162_hmipw-drap.png -------------------------------------------------------------------------------- /www/images/devices/250/163_hmipw-drbl4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/163_hmipw-drbl4.png -------------------------------------------------------------------------------- /www/images/devices/250/164_hmipw-dri16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/164_hmipw-dri16.png -------------------------------------------------------------------------------- /www/images/devices/250/165_hmipw-fio6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/165_hmipw-fio6.png -------------------------------------------------------------------------------- /www/images/devices/250/166_hmipw-drd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/166_hmipw-drd3.png -------------------------------------------------------------------------------- /www/images/devices/250/167_hmipw-dri32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/167_hmipw-dri32.png -------------------------------------------------------------------------------- /www/images/devices/250/168_hmip-smi55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/168_hmip-smi55.png -------------------------------------------------------------------------------- /www/images/devices/250/169_hmip-swo-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/171_hmip-swo-b.png -------------------------------------------------------------------------------- /www/images/devices/250/172_hmip-swd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/172_hmip-swd.png -------------------------------------------------------------------------------- /www/images/devices/250/173_hmip-bsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/173_hmip-bsl.png -------------------------------------------------------------------------------- /www/images/devices/250/174_hmip-slo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/174_hmip-slo.png -------------------------------------------------------------------------------- /www/images/devices/250/175_hmip-group-heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/175_hmip-group-heating.png -------------------------------------------------------------------------------- /www/images/devices/250/177_hmip-dbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/177_hmip-dbb.png -------------------------------------------------------------------------------- /www/images/devices/250/178_hmip-etrv-b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/180_hmip-etrv-b.png -------------------------------------------------------------------------------- /www/images/devices/250/181_hmip-swdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/181_hmip-swdm.png -------------------------------------------------------------------------------- /www/images/devices/250/182_hmip-fci1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/182_hmip-fci1.png -------------------------------------------------------------------------------- /www/images/devices/250/183_hmip-mod-tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/183_hmip-mod-tm.png -------------------------------------------------------------------------------- /www/images/devices/250/184_hmip-pcbs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/184_hmip-pcbs2.png -------------------------------------------------------------------------------- /www/images/devices/250/185_hmip-FCI6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/185_hmip-FCI6.png -------------------------------------------------------------------------------- /www/images/devices/250/186_hmip-mp3p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/186_hmip-mp3p.png -------------------------------------------------------------------------------- /www/images/devices/250/187_hmip-rcb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/187_hmip-rcb1.png -------------------------------------------------------------------------------- /www/images/devices/250/188_hmip-etrv-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/www/images/devices/250/18_hm-rc-4.png -------------------------------------------------------------------------------- /www/images/devices/250/193_hmip-wt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/193_hmip-wt.png -------------------------------------------------------------------------------- /www/images/devices/250/19_hm-rc-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/9_hm-ws550-us.png -------------------------------------------------------------------------------- /www/images/devices/250/CCU2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/CCU2.png -------------------------------------------------------------------------------- /www/images/devices/250/CCU3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/CCU3.png -------------------------------------------------------------------------------- /www/images/devices/250/IP65_G201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/IP65_G201.png -------------------------------------------------------------------------------- /www/images/devices/250/OM55_DimmerSwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/OM55_DimmerSwitch.png -------------------------------------------------------------------------------- /www/images/devices/250/PushButton-2ch-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/PushButton-2ch-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/PushButton-4ch-wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/PushButton-4ch-wm.png -------------------------------------------------------------------------------- /www/images/devices/250/TH_CS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/TH_CS.png -------------------------------------------------------------------------------- /www/images/devices/250/WeatherCombiSensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/WeatherCombiSensor.png -------------------------------------------------------------------------------- /www/images/devices/250/coupling/_hm-coupling-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/250/osram-lightify/hm-lightify-rgb.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-rgbw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/osram-lightify/hm-lightify-rgbw.png -------------------------------------------------------------------------------- /www/images/devices/250/osram-lightify/hm-lightify-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/www/images/devices/250/osram-lightify/hm-lightify_gateway.png -------------------------------------------------------------------------------- /www/images/devices/250/unknown_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/250/unknown_device.png -------------------------------------------------------------------------------- /www/images/devices/50/100_hm-rc-8_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/50/9_hm-ws550-us_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/CCU2_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/CCU2_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/CCU3_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/CCU3_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/IP65_G201_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/IP65_G201_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/OM55_DimmerSwitch_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/OM55_DimmerSwitch_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/PushButton-2ch-wm_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/www/images/devices/50/PushButton-4ch-wm_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/TH_CS_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/TH_CS_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/WeatherCombiSensor_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/WeatherCombiSensor_thumb.png -------------------------------------------------------------------------------- /www/images/devices/50/coupling/_hm-coupling-onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/www/images/devices/50/osram-lightify/hm-lightify-rgbw.png -------------------------------------------------------------------------------- /www/images/devices/50/osram-lightify/hm-lightify-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/osram-lightify/hm-lightify-white.png -------------------------------------------------------------------------------- /www/images/devices/50/unknown_device_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/devices/50/unknown_device_thumb.png -------------------------------------------------------------------------------- /www/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/help.png -------------------------------------------------------------------------------- /www/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/icon.png -------------------------------------------------------------------------------- /www/images/servicemsgs/config_pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/servicemsgs/config_pending.png -------------------------------------------------------------------------------- /www/images/servicemsgs/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/servicemsgs/error.png -------------------------------------------------------------------------------- /www/images/servicemsgs/lowbat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/servicemsgs/lowbat.png -------------------------------------------------------------------------------- /www/images/servicemsgs/unreach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/servicemsgs/unreach.png -------------------------------------------------------------------------------- /www/images/uiTabsArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/images/uiTabsArrow.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/deviceImages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/js/deviceImages.json -------------------------------------------------------------------------------- /www/js/helpLinkParamset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/js/helpLinkParamset.json -------------------------------------------------------------------------------- /www/js/helpMasterParamset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/js/helpMasterParamset.json -------------------------------------------------------------------------------- /www/js/homematic-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/js/homematic-manager.js -------------------------------------------------------------------------------- /www/js/language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/js/language.json -------------------------------------------------------------------------------- /www/js/rpcMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/js/rpcMethods.json -------------------------------------------------------------------------------- /www/js/stringtable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbyquaker/homematic-manager/HEAD/www/js/stringtable.json --------------------------------------------------------------------------------