├── src ├── app │ ├── widgets │ │ ├── button │ │ │ └── button.scss │ │ ├── knob │ │ │ ├── knob.scss │ │ │ └── knob.tpl.html │ │ ├── label │ │ │ ├── label.scss │ │ │ └── label.tpl.html │ │ ├── dummy │ │ │ └── dummy.scss │ │ ├── image │ │ │ ├── image.scss │ │ │ └── image.tpl.html │ │ ├── switch │ │ │ └── switch.scss │ │ ├── clock │ │ │ └── clock.scss │ │ ├── template │ │ │ └── template.scss │ │ ├── frame │ │ │ ├── frame.scss │ │ │ └── frame.tpl.html │ │ ├── chart │ │ │ ├── chart.scss │ │ │ └── chart.tpl.html │ │ ├── slider │ │ │ └── slider.tpl.html │ │ └── timeline │ │ │ └── timeline.tpl.html │ └── services │ │ └── services.js ├── vendor │ └── global.js ├── tile.png ├── favicon.ico ├── assets │ ├── icons │ │ ├── eclipse-smarthome-classic │ │ │ ├── none.svg │ │ │ ├── bath.png │ │ │ ├── door.png │ │ │ ├── fan.png │ │ │ ├── fire.png │ │ │ ├── flow.png │ │ │ ├── gas.png │ │ │ ├── line.png │ │ │ ├── lock.png │ │ │ ├── moon.png │ │ │ ├── none.png │ │ │ ├── oil.png │ │ │ ├── pie.png │ │ │ ├── pump.png │ │ │ ├── rain.png │ │ │ ├── rgb.png │ │ │ ├── sofa.png │ │ │ ├── sun.png │ │ │ ├── text.png │ │ │ ├── wind.png │ │ │ ├── zoom.png │ │ │ ├── alarm.png │ │ │ ├── attic.png │ │ │ ├── baby_1.png │ │ │ ├── baby_2.png │ │ │ ├── baby_3.png │ │ │ ├── baby_4.png │ │ │ ├── baby_5.png │ │ │ ├── baby_6.png │ │ │ ├── blinds.png │ │ │ ├── boy_1.png │ │ │ ├── boy_2.png │ │ │ ├── boy_3.png │ │ │ ├── boy_4.png │ │ │ ├── boy_5.png │ │ │ ├── boy_6.png │ │ │ ├── camera.png │ │ │ ├── cellar.png │ │ │ ├── chart.png │ │ │ ├── cinema.png │ │ │ ├── clock.png │ │ │ ├── dryer.png │ │ │ ├── energy.png │ │ │ ├── error.png │ │ │ ├── faucet.png │ │ │ ├── garage.png │ │ │ ├── garden.png │ │ │ ├── girl_1.png │ │ │ ├── girl_2.png │ │ │ ├── girl_3.png │ │ │ ├── girl_4.png │ │ │ ├── girl_5.png │ │ │ ├── girl_6.png │ │ │ ├── grass.png │ │ │ ├── group.png │ │ │ ├── house.png │ │ │ ├── light.png │ │ │ ├── man_1.png │ │ │ ├── man_2.png │ │ │ ├── man_3.png │ │ │ ├── man_4.png │ │ │ ├── man_5.png │ │ │ ├── man_6.png │ │ │ ├── motion.png │ │ │ ├── niveau.png │ │ │ ├── office.png │ │ │ ├── pantry.png │ │ │ ├── party.png │ │ │ ├── player.png │ │ │ ├── shield.png │ │ │ ├── signal.png │ │ │ ├── siren.png │ │ │ ├── slider.png │ │ │ ├── smiley.png │ │ │ ├── smoke.png │ │ │ ├── status.png │ │ │ ├── sunset.png │ │ │ ├── switch.png │ │ │ ├── toilet.png │ │ │ ├── video.png │ │ │ ├── water.png │ │ │ ├── window.png │ │ │ ├── battery-0.png │ │ │ ├── battery.png │ │ │ ├── bedroom.png │ │ │ ├── blinds-0.png │ │ │ ├── blinds-10.png │ │ │ ├── blinds-20.png │ │ │ ├── blinds-30.png │ │ │ ├── blinds-40.png │ │ │ ├── blinds-50.png │ │ │ ├── blinds-60.png │ │ │ ├── blinds-70.png │ │ │ ├── blinds-80.png │ │ │ ├── blinds-90.png │ │ │ ├── bluetooth.png │ │ │ ├── calendar.png │ │ │ ├── cistern-0.png │ │ │ ├── cistern.png │ │ │ ├── climate.png │ │ │ ├── clock-on.png │ │ │ ├── contact.png │ │ │ ├── corridor.png │ │ │ ├── door-open.png │ │ │ ├── dryer-0.png │ │ │ ├── dryer-1.png │ │ │ ├── dryer-2.png │ │ │ ├── dryer-3.png │ │ │ ├── dryer-4.png │ │ │ ├── dryer-5.png │ │ │ ├── fan_box.png │ │ │ ├── favicon.ico │ │ │ ├── fire-off.png │ │ │ ├── fire-on.png │ │ │ ├── flowpipe.png │ │ │ ├── frontdoor.png │ │ │ ├── heating-0.png │ │ │ ├── heating.png │ │ │ ├── humidity.png │ │ │ ├── incline.png │ │ │ ├── keyring.png │ │ │ ├── kitchen.png │ │ │ ├── light-off.png │ │ │ ├── light-on.png │ │ │ ├── lock-open.png │ │ │ ├── network.png │ │ │ ├── piggybank.png │ │ │ ├── present.png │ │ │ ├── pressure.png │ │ │ ├── radiator.png │ │ │ ├── receiver.png │ │ │ ├── recorder.png │ │ │ ├── settings.png │ │ │ ├── sewerage.png │ │ │ ├── shield-0.png │ │ │ ├── shield-1.png │ │ │ ├── signal-0.png │ │ │ ├── signal-1.png │ │ │ ├── signal-2.png │ │ │ ├── signal-3.png │ │ │ ├── signal-4.png │ │ │ ├── siren-off.png │ │ │ ├── siren-on.png │ │ │ ├── slider-0.png │ │ │ ├── slider-10.png │ │ │ ├── slider-20.png │ │ │ ├── slider-30.png │ │ │ ├── slider-40.png │ │ │ ├── slider-50.png │ │ │ ├── slider-60.png │ │ │ ├── slider-70.png │ │ │ ├── slider-80.png │ │ │ ├── slider-90.png │ │ │ ├── softener.png │ │ │ ├── suitcase.png │ │ │ ├── sunrise.png │ │ │ ├── switch-on.png │ │ │ ├── terrace.png │ │ │ ├── vacation.png │ │ │ ├── wardrobe.png │ │ │ ├── woman_1.png │ │ │ ├── woman_2.png │ │ │ ├── woman_3.png │ │ │ ├── woman_4.png │ │ │ ├── woman_5.png │ │ │ ├── woman_6.png │ │ │ ├── battery-10.png │ │ │ ├── battery-100.png │ │ │ ├── battery-20.png │ │ │ ├── battery-30.png │ │ │ ├── battery-40.png │ │ │ ├── battery-50.png │ │ │ ├── battery-60.png │ │ │ ├── battery-70.png │ │ │ ├── battery-80.png │ │ │ ├── battery-90.png │ │ │ ├── battery-off.png │ │ │ ├── battery-on.png │ │ │ ├── bedroom_red.png │ │ │ ├── blinds-100.png │ │ │ ├── cistern-10.png │ │ │ ├── cistern-100.png │ │ │ ├── cistern-20.png │ │ │ ├── cistern-30.png │ │ │ ├── cistern-40.png │ │ │ ├── cistern-50.png │ │ │ ├── cistern-60.png │ │ │ ├── cistern-70.png │ │ │ ├── cistern-80.png │ │ │ ├── cistern-90.png │ │ │ ├── climate-on.png │ │ │ ├── colorlight.png │ │ │ ├── colorpicker.png │ │ │ ├── colorwheel.png │ │ │ ├── door-closed.png │ │ │ ├── fan_ceiling.png │ │ │ ├── firstfloor.png │ │ │ ├── garagedoor.png │ │ │ ├── greenhouse.png │ │ │ ├── groundfloor.png │ │ │ ├── heating-100.png │ │ │ ├── heating-20.png │ │ │ ├── heating-40.png │ │ │ ├── heating-60.png │ │ │ ├── heating-80.png │ │ │ ├── heating-off.png │ │ │ ├── heating-on.png │ │ │ ├── humidity-0.png │ │ │ ├── humidity-10.png │ │ │ ├── humidity-20.png │ │ │ ├── humidity-30.png │ │ │ ├── humidity-40.png │ │ │ ├── humidity-50.png │ │ │ ├── humidity-60.png │ │ │ ├── humidity-70.png │ │ │ ├── humidity-80.png │ │ │ ├── humidity-90.png │ │ │ ├── lock-closed.png │ │ │ ├── microphone.png │ │ │ ├── movecontrol.png │ │ │ ├── network-off.png │ │ │ ├── network-on.png │ │ │ ├── parents-off.png │ │ │ ├── parents_1_1.png │ │ │ ├── parents_1_2.png │ │ │ ├── parents_1_3.png │ │ │ ├── parents_1_4.png │ │ │ ├── parents_1_5.png │ │ │ ├── parents_1_6.png │ │ │ ├── parents_2_1.png │ │ │ ├── parents_2_2.png │ │ │ ├── parents_2_3.png │ │ │ ├── parents_2_4.png │ │ │ ├── parents_2_5.png │ │ │ ├── parents_2_6.png │ │ │ ├── parents_3_1.png │ │ │ ├── parents_3_2.png │ │ │ ├── parents_3_3.png │ │ │ ├── parents_3_4.png │ │ │ ├── parents_3_5.png │ │ │ ├── parents_3_6.png │ │ │ ├── parents_4_1.png │ │ │ ├── parents_4_2.png │ │ │ ├── parents_4_3.png │ │ │ ├── parents_4_4.png │ │ │ ├── parents_4_5.png │ │ │ ├── parents_4_6.png │ │ │ ├── parents_5_1.png │ │ │ ├── parents_5_2.png │ │ │ ├── parents_5_3.png │ │ │ ├── parents_5_4.png │ │ │ ├── parents_5_5.png │ │ │ ├── parents_5_6.png │ │ │ ├── parents_6_1.png │ │ │ ├── parents_6_2.png │ │ │ ├── parents_6_3.png │ │ │ ├── parents_6_4.png │ │ │ ├── parents_6_5.png │ │ │ ├── parents_6_6.png │ │ │ ├── poweroutlet.png │ │ │ ├── present-off.png │ │ │ ├── receiver-on.png │ │ │ ├── returnpipe.png │ │ │ ├── sewerage-0.png │ │ │ ├── sewerage-10.png │ │ │ ├── sewerage-20.png │ │ │ ├── sewerage-30.png │ │ │ ├── sewerage-40.png │ │ │ ├── sewerage-50.png │ │ │ ├── sewerage-60.png │ │ │ ├── sewerage-70.png │ │ │ ├── sewerage-80.png │ │ │ ├── sewerage-90.png │ │ │ ├── slider-100.png │ │ │ ├── solarplant.png │ │ │ ├── soundvolume.png │ │ │ ├── sun_clouds.png │ │ │ ├── switch-off.png │ │ │ ├── television.png │ │ │ ├── temperature.png │ │ │ ├── wallswitch.png │ │ │ ├── window-ajar.png │ │ │ ├── window-open.png │ │ │ ├── bedroom_blue.png │ │ │ ├── bedroom_orange.png │ │ │ ├── carbondioxide.png │ │ │ ├── cinemascreen-0.png │ │ │ ├── cinemascreen.png │ │ │ ├── contact-ajar.png │ │ │ ├── contact-closed.png │ │ │ ├── contact-open.png │ │ │ ├── dimmablelight.png │ │ │ ├── frontdoor-open.png │ │ │ ├── garagedoor-0.png │ │ │ ├── garagedoor-10.png │ │ │ ├── garagedoor-100.png │ │ │ ├── garagedoor-20.png │ │ │ ├── garagedoor-30.png │ │ │ ├── garagedoor-40.png │ │ │ ├── garagedoor-50.png │ │ │ ├── garagedoor-60.png │ │ │ ├── garagedoor-70.png │ │ │ ├── garagedoor-80.png │ │ │ ├── garagedoor-90.png │ │ │ ├── humidity-100.png │ │ │ ├── line-decline.png │ │ │ ├── line-incline.png │ │ │ ├── outdoorlight.png │ │ │ ├── poweroutlet-on.png │ │ │ ├── poweroutlet_au.png │ │ │ ├── poweroutlet_eu.png │ │ │ ├── poweroutlet_uk.png │ │ │ ├── poweroutlet_us.png │ │ │ ├── projector_benq.png │ │ │ ├── receiver-off.png │ │ │ ├── rollershutter.png │ │ │ ├── sewerage-100.png │ │ │ ├── soundvolume-0.png │ │ │ ├── soundvolume-33.png │ │ │ ├── soundvolume-66.png │ │ │ ├── television-off.png │ │ │ ├── television-on.png │ │ │ ├── wallswitch-off.png │ │ │ ├── wallswitch-on.png │ │ │ ├── washingmachine.png │ │ │ ├── window-closed.png │ │ │ ├── boiler_viessmann.png │ │ │ ├── cinemascreen-10.png │ │ │ ├── cinemascreen-100.png │ │ │ ├── cinemascreen-20.png │ │ │ ├── cinemascreen-30.png │ │ │ ├── cinemascreen-40.png │ │ │ ├── cinemascreen-50.png │ │ │ ├── cinemascreen-60.png │ │ │ ├── cinemascreen-70.png │ │ │ ├── cinemascreen-80.png │ │ │ ├── cinemascreen-90.png │ │ │ ├── dimmablelight-0.png │ │ │ ├── dimmablelight-10.png │ │ │ ├── dimmablelight-20.png │ │ │ ├── dimmablelight-30.png │ │ │ ├── dimmablelight-40.png │ │ │ ├── dimmablelight-50.png │ │ │ ├── dimmablelight-60.png │ │ │ ├── dimmablelight-70.png │ │ │ ├── dimmablelight-80.png │ │ │ ├── dimmablelight-90.png │ │ │ ├── frontdoor-closed.png │ │ │ ├── garage_detached.png │ │ │ ├── garagedoor-ajar.png │ │ │ ├── garagedoor-open.png │ │ │ ├── line-stagnation.png │ │ │ ├── poweroutlet-off.png │ │ │ ├── qualityofservice.png │ │ │ ├── rollershutter-0.png │ │ │ ├── rollershutter-10.png │ │ │ ├── rollershutter-20.png │ │ │ ├── rollershutter-30.png │ │ │ ├── rollershutter-40.png │ │ │ ├── rollershutter-50.png │ │ │ ├── rollershutter-60.png │ │ │ ├── rollershutter-70.png │ │ │ ├── rollershutter-80.png │ │ │ ├── rollershutter-90.png │ │ │ ├── soundvolume-100.png │ │ │ ├── soundvolume_mute.png │ │ │ ├── temperature_cold.png │ │ │ ├── temperature_hot.png │ │ │ ├── washingmachine_2.png │ │ │ ├── dimmablelight-100.png │ │ │ ├── garagedoor-closed.png │ │ │ ├── qualityofservice-0.png │ │ │ ├── qualityofservice-1.png │ │ │ ├── qualityofservice-2.png │ │ │ ├── qualityofservice-3.png │ │ │ ├── qualityofservice-4.png │ │ │ ├── rollershutter-100.png │ │ │ ├── washingmachine_2-0.png │ │ │ ├── washingmachine_2-1.png │ │ │ ├── washingmachine_2-2.png │ │ │ ├── washingmachine_2-3.png │ │ │ ├── garage_detached_selected.png │ │ │ ├── cinemascreen-0.svg │ │ │ ├── signal-0.svg │ │ │ ├── qualityofservice-0.svg │ │ │ ├── garagedoor-0.svg │ │ │ ├── garagedoor-open.svg │ │ │ ├── flow.svg │ │ │ ├── cinemascreen-10.svg │ │ │ ├── cinemascreen-20.svg │ │ │ ├── cinemascreen-30.svg │ │ │ ├── cinemascreen.svg │ │ │ ├── cinemascreen-100.svg │ │ │ ├── cinemascreen-40.svg │ │ │ ├── cinemascreen-50.svg │ │ │ ├── cinemascreen-60.svg │ │ │ ├── cinemascreen-70.svg │ │ │ ├── cinemascreen-80.svg │ │ │ ├── cinemascreen-90.svg │ │ │ ├── signal-1.svg │ │ │ ├── qualityofservice-1.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── lock-closed.svg │ │ │ ├── smiley.svg │ │ │ ├── movecontrol.svg │ │ │ ├── signal-2.svg │ │ │ ├── qualityofservice-2.svg │ │ │ ├── smoke.svg │ │ │ ├── signal-3.svg │ │ │ ├── carbondioxide.svg │ │ │ ├── qualityofservice-3.svg │ │ │ ├── garage_detached.svg │ │ │ ├── garage_detached_selected.svg │ │ │ ├── bluetooth.svg │ │ │ ├── signal-4.svg │ │ │ ├── signal.svg │ │ │ ├── chart.svg │ │ │ ├── qualityofservice-4.svg │ │ │ ├── qualityofservice.svg │ │ │ ├── sunset.svg │ │ │ ├── door-closed.svg │ │ │ ├── sun.svg │ │ │ ├── sunrise.svg │ │ │ ├── fire-on.svg │ │ │ ├── fire.svg │ │ │ ├── wardrobe.svg │ │ │ ├── blinds-0.svg │ │ │ ├── door.svg │ │ │ ├── fire-off.svg │ │ │ ├── door-open.svg │ │ │ ├── rollershutter-0.svg │ │ │ ├── status.svg │ │ │ ├── line-decline.svg │ │ │ ├── line-incline.svg │ │ │ ├── line-stagnation.svg │ │ │ ├── temperature_hot.svg │ │ │ ├── poweroutlet_uk.svg │ │ │ ├── battery.svg │ │ │ ├── temperature.svg │ │ │ ├── battery-0.svg │ │ │ ├── temperature_cold.svg │ │ │ ├── energy.svg │ │ │ ├── line.svg │ │ │ ├── garagedoor-10.svg │ │ │ ├── window.svg │ │ │ ├── contact.svg │ │ │ ├── garagedoor-20.svg │ │ │ ├── contact-closed.svg │ │ │ └── window-closed.svg │ │ └── regenerate-esh-classic.sh │ ├── manifest │ │ ├── logo144.png │ │ ├── logo192.png │ │ ├── logo340.png │ │ ├── logo36.png │ │ ├── logo48.png │ │ ├── logo72.png │ │ ├── logo96.png │ │ └── apple-icon.png │ ├── styles │ │ ├── local-config.scss │ │ ├── themes │ │ │ ├── default │ │ │ │ └── default.scss │ │ │ ├── translucent │ │ │ │ └── translucent.scss │ │ │ ├── material-dark │ │ │ │ └── material-dark.scss │ │ │ └── themes.json │ │ └── reset.scss │ └── i18n │ │ ├── admin │ │ ├── ja.json │ │ ├── ko.json │ │ ├── vi.json │ │ ├── af.json │ │ ├── bg.json │ │ └── ar.json │ │ ├── main │ │ ├── ja.json │ │ ├── vi.json │ │ └── bg.json │ │ └── widgets │ │ ├── ko.json │ │ ├── ja.json │ │ ├── vi.json │ │ ├── af.json │ │ ├── bg.json │ │ └── lt.json ├── service-worker.js ├── fonts │ ├── roboto │ │ ├── Roboto-Regular.eot │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ └── Roboto-Regular.woff2 │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 └── .csscomb.json ├── admin └── habpanel.png ├── .releaseconfig.json ├── .gitignore ├── doc └── images │ ├── habpanel_concepts.png │ ├── habpanel_add-widget.png │ ├── habpanel_screenshot0.png │ ├── habpanel_screenshot1.png │ ├── habpanel_screenshot2.png │ ├── habpanel_screenshot3.png │ ├── habpanel_screenshot4.png │ ├── habpanel_screenshot5.png │ ├── habpanel_screenshot6.png │ ├── habpanel_side-drawer.png │ ├── habpanel_widget-chart.png │ ├── habpanel_widget-clock.png │ ├── habpanel_widget-dummy.png │ ├── habpanel_widget-frame.png │ ├── habpanel_widget-image.png │ ├── habpanel_widget-knob.png │ ├── habpanel_widget-label.png │ ├── habpanel_main-menu-edit.png │ ├── habpanel_main-menu-run.png │ ├── habpanel_widget-button.png │ ├── habpanel_widget-slider.png │ ├── habpanel_widget-switch.png │ ├── habpanel_running-dashboard.png │ ├── habpanel_widget-selection.png │ ├── habpanel_widget-timeline.png │ ├── habpanel_dashboard-designer.png │ ├── habpanel_widget-colorpicker.png │ └── habpanel_dashboard-designer-placeholder-menu.png ├── crowdin.yml └── .github ├── dependabot.yml ├── ISSUE_TEMPLATE └── feature_request.md └── auto-merge.yml /src/app/widgets/button/button.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/widgets/knob/knob.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/vendor/global.js: -------------------------------------------------------------------------------- 1 | systemLang = 'de'; 2 | 3 | function _(a) {return a;} 4 | -------------------------------------------------------------------------------- /src/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/tile.png -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /admin/habpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/admin/habpanel.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/none.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["iobroker", "license"], 3 | "exec": { 4 | "before_commit": "npm run build" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/app/widgets/label/label.scss: -------------------------------------------------------------------------------- 1 | .labelwidget { 2 | display: flex; 3 | } 4 | 5 | .labelwidget-content { 6 | margin: auto; 7 | } 8 | -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- 1 | /* 2 | Dummy service worker to enable app install banner 3 | in Chrome on Android when using HTTPS. 4 | */ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | bower_components 4 | www 5 | #ignore .commitinfo created by ioBroker release script 6 | .commitinfo 7 | -------------------------------------------------------------------------------- /src/assets/manifest/logo144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo144.png -------------------------------------------------------------------------------- /src/assets/manifest/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo192.png -------------------------------------------------------------------------------- /src/assets/manifest/logo340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo340.png -------------------------------------------------------------------------------- /src/assets/manifest/logo36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo36.png -------------------------------------------------------------------------------- /src/assets/manifest/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo48.png -------------------------------------------------------------------------------- /src/assets/manifest/logo72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo72.png -------------------------------------------------------------------------------- /src/assets/manifest/logo96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/logo96.png -------------------------------------------------------------------------------- /doc/images/habpanel_concepts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_concepts.png -------------------------------------------------------------------------------- /src/app/services/services.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 'use strict'; 3 | 4 | angular.module('app.services', [ 5 | 6 | ]); 7 | })(); -------------------------------------------------------------------------------- /doc/images/habpanel_add-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_add-widget.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot0.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot1.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot2.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot3.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot4.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot5.png -------------------------------------------------------------------------------- /doc/images/habpanel_screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_screenshot6.png -------------------------------------------------------------------------------- /doc/images/habpanel_side-drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_side-drawer.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-chart.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-clock.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-dummy.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-frame.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-image.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-knob.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-label.png -------------------------------------------------------------------------------- /src/assets/manifest/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/manifest/apple-icon.png -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /doc/images/habpanel_main-menu-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_main-menu-edit.png -------------------------------------------------------------------------------- /doc/images/habpanel_main-menu-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_main-menu-run.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-button.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-slider.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-switch.png -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /doc/images/habpanel_running-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_running-dashboard.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-selection.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-timeline.png -------------------------------------------------------------------------------- /doc/images/habpanel_dashboard-designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_dashboard-designer.png -------------------------------------------------------------------------------- /doc/images/habpanel_widget-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_widget-colorpicker.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bath.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/door.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fan.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fire.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/flow.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/gas.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/lock.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/moon.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/none.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/oil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/oil.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pie.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pump.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rain.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rgb.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sofa.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sun.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/text.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wind.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/zoom.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/alarm.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/attic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/attic.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/baby_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/baby_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boy_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boy_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/camera.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cellar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cellar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/chart.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinema.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/clock.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/energy.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/error.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/faucet.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garage.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garden.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/girl_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/girl_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/grass.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/group.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/house.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/light.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/man_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/man_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/motion.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/niveau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/niveau.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/office.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pantry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pantry.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/party.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/player.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/shield.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/siren.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/smiley.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/smoke.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/status.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sunset.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/switch.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/toilet.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/video.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/water.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window.png -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bluetooth.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/calendar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/climate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/climate.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/clock-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/clock-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/corridor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/corridor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/door-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dryer-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dryer-5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fan_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fan_box.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/favicon.ico -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fire-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fire-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fire-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/flowpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/flowpipe.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/frontdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/frontdoor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/incline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/incline.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/keyring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/keyring.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/kitchen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/kitchen.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/light-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/light-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/light-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/light-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/lock-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/network.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/piggybank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/piggybank.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/present.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/present.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/pressure.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/radiator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/radiator.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/receiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/receiver.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/recorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/recorder.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/settings.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/shield-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/shield-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/shield-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/shield-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/signal-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/signal-4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/siren-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/siren-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/siren-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/siren-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/softener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/softener.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/suitcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/suitcase.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sunrise.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/switch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/switch-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/terrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/terrace.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/vacation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/vacation.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wardrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wardrobe.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/woman_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/woman_6.png -------------------------------------------------------------------------------- /src/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/battery-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/battery-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom_red.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/blinds-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/blinds-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cistern-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cistern-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/climate-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/climate-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/colorlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/colorlight.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/colorpicker.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/colorwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/colorwheel.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/door-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/door-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/fan_ceiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/fan_ceiling.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/firstfloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/firstfloor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/greenhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/greenhouse.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/groundfloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/groundfloor.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/heating-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/heating-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/lock-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/lock-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/microphone.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/movecontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/movecontrol.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/network-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/network-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/network-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/network-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_1_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_1_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_2_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_3_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_4_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_5_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_5_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_5.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/parents_6_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/parents_6_6.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/present-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/present-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/receiver-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/receiver-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/returnpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/returnpipe.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/slider-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/slider-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/solarplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/solarplant.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sun_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sun_clouds.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/switch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/switch-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/television.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/television.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/temperature.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wallswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wallswitch.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window-ajar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window-ajar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window-open.png -------------------------------------------------------------------------------- /doc/images/habpanel_dashboard-designer-placeholder-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/doc/images/habpanel_dashboard-designer-placeholder-menu.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom_blue.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/bedroom_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/bedroom_orange.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/carbondioxide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/carbondioxide.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact-ajar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact-ajar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/contact-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/contact-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/frontdoor-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/frontdoor-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/humidity-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/humidity-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-decline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line-decline.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-incline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line-incline.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/outdoorlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/outdoorlight.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_au.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_eu.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_uk.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet_us.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/projector_benq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/projector_benq.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/receiver-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/receiver-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/sewerage-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/sewerage-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-33.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-66.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/television-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/television-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/television-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/television-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wallswitch-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wallswitch-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/wallswitch-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/wallswitch-on.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/window-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/window-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/boiler_viessmann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/boiler_viessmann.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/cinemascreen-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/frontdoor-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/frontdoor-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage_detached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garage_detached.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-ajar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-ajar.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-open.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/line-stagnation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/line-stagnation.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/poweroutlet-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/poweroutlet-off.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-10.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-20.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-30.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-40.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-50.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-60.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-70.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-80.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-90.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/soundvolume_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/soundvolume_mute.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/temperature_cold.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/temperature_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/temperature_hot.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/dimmablelight-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/dimmablelight-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garagedoor-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garagedoor-closed.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/qualityofservice-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/qualityofservice-4.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/rollershutter-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/rollershutter-100.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-0.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-1.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-2.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/washingmachine_2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/washingmachine_2-3.png -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/garage_detached_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iobroker-community-adapters/ioBroker.habpanel/HEAD/src/assets/icons/eclipse-smarthome-classic/garage_detached_selected.png -------------------------------------------------------------------------------- /src/app/widgets/dummy/dummy.scss: -------------------------------------------------------------------------------- 1 | .dummy { 2 | display: flex; 3 | } 4 | 5 | .dummy-content { 6 | margin: auto; 7 | text-align: center; 8 | width: 100%; 9 | } 10 | 11 | .dummy-value-right { 12 | float: right; 13 | text-align: right; 14 | } 15 | -------------------------------------------------------------------------------- /src/app/widgets/label/label.tpl.html: -------------------------------------------------------------------------------- 1 |
4 | -------------------------------------------------------------------------------- /src/app/widgets/image/image.scss: -------------------------------------------------------------------------------- 1 | .image { 2 | display: flex; 3 | border: 1px solid #456; 4 | border: 1px solid var(--image-border, #456); 5 | } 6 | 7 | .image-content { 8 | margin: auto; 9 | } 10 | 11 | .image-content img { 12 | zoom: 15; 13 | width: 100%; 14 | height: 100%; 15 | } -------------------------------------------------------------------------------- /src/assets/icons/eclipse-smarthome-classic/cinemascreen-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/app/widgets/switch/switch.scss: -------------------------------------------------------------------------------- 1 | .switch { 2 | display: flex; 3 | cursor: pointer; 4 | } 5 | 6 | .switch-content { 7 | margin: auto; 8 | text-align: center; 9 | } 10 | 11 | .switch-off { 12 | color: #89a; 13 | color: var(--switch-off-color, #89a); 14 | } 15 | 16 | .switch-icon { 17 | font-size: 24px; 18 | } -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /web/assets/i18n/main/main.pot 3 | translation: /web/assets/i18n/main/%two_letters_code%.po 4 | - source: /web/assets/i18n/admin/admin.pot 5 | translation: /web/assets/i18n/admin/%two_letters_code%.po 6 | - source: /web/assets/i18n/widgets/widgets.pot 7 | translation: /web/assets/i18n/widgets/%two_letters_code%.po 8 | -------------------------------------------------------------------------------- /src/assets/styles/local-config.scss: -------------------------------------------------------------------------------- 1 | .localconfig { 2 | position: absolute; 3 | top: 64px; 4 | left: 10px; 5 | width: calc(100% - 20px); 6 | height: calc(100% - 76px); 7 | } 8 | 9 | .localconfig .CodeMirror { 10 | position: absolute; 11 | top: 130px; 12 | left: 10px; 13 | height: calc(100% - 150px); 14 | width: calc(100% - 20px); 15 | } 16 | -------------------------------------------------------------------------------- /src/app/widgets/image/image.tpl.html: -------------------------------------------------------------------------------- 1 |