├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── Westinghouse_Ventilator.json ├── additionalFiles ├── Speedtest_icons_svg.rar ├── spuelmaschine-csv.log ├── spuelmaschine.png ├── waschmaschine-openhab-csv.log └── waschmaschine.png ├── html ├── index.html └── static │ ├── BasicUI-Mod.css │ └── BasicUI-Mod.html ├── icons └── classic │ ├── AUTHORS │ ├── catfridge.svg │ ├── compactdisc.svg │ ├── controls_round.svg │ ├── crystallball-off.svg │ ├── crystallball-on.svg │ ├── crystallball.svg │ ├── dishwasher.svg │ ├── error2-no_error.svg │ ├── error2-no_fault.svg │ ├── error2.svg │ ├── findmyiphone.svg │ ├── fullmoon.svg │ ├── iphone.svg │ ├── iwatch.svg │ ├── kodi.svg │ ├── lamp_chandelier.svg │ ├── lamp_globe.svg │ ├── lamp_globe_light-off.svg │ ├── lamp_globe_light-on.svg │ ├── lamp_globe_light.svg │ ├── logitech.svg │ ├── mapstar.svg │ ├── musicnotes_round.svg │ ├── neato.svg │ ├── nexus5.svg │ ├── nexus9.svg │ ├── oneplus3.svg │ ├── onoff_monochrome-off.svg │ ├── onoff_monochrome-on.svg │ ├── onoff_monochrome.svg │ ├── pc_silverstone_gd06.svg │ ├── placeholder.svg │ ├── readme.txt │ ├── senseo_brewed_size.svg │ ├── senseo_coffeesign.svg │ ├── senseo_cup_avail-off.svg │ ├── senseo_cup_avail-on.svg │ ├── senseo_cup_avail.svg │ ├── senseo_cup_big.svg │ ├── senseo_cup_content.svg │ ├── senseo_cup_small.svg │ ├── senseo_machine.svg │ ├── senseo_milkjug.svg │ ├── senseo_pad.svg │ ├── senseo_tamper.svg │ ├── singer_round.svg │ ├── sonoff_basic.svg │ ├── sonos.svg │ ├── speedtest__Iconset.url │ ├── speedtest__Iconset_Source.url │ ├── speedtest_analytics8.svg │ ├── speedtest_download.svg │ ├── speedtest_network.svg │ ├── speedtest_new.svg │ ├── speedtest_next5.svg │ ├── speedtest_problem4.svg │ ├── speedtest_reload2.svg │ ├── speedtest_upload.svg │ ├── stars-off.svg │ ├── stars-on.svg │ ├── stars.svg │ ├── sunmoon.svg │ ├── thermometer_green.svg │ ├── thermometer_red.svg │ ├── thermometer_red_earth.svg │ ├── thermostat.svg │ ├── volume_round_red-0.svg │ ├── volume_round_red-100.svg │ ├── volume_round_red-20.svg │ ├── volume_round_red-40.svg │ ├── volume_round_red.svg │ ├── volume_round_reddim.svg │ ├── washingmach.svg │ ├── xps13.svg │ ├── zmote.svg │ └── zodiac.svg ├── items ├── alexa.items ├── amazondashbutton.items ├── astro.items ├── homematic-heizung.items ├── homematic.items ├── kodi.items ├── miflora.items ├── nurzen100.items ├── senseoWifi.items ├── sitemapDocs.items ├── sonoff.items ├── sonos.items ├── speedtest.items ├── system.items └── zmote.items ├── logitech-z906.json ├── persistence ├── influxdb.persist └── mapdb.persist ├── rules ├── ailight.rules ├── amazondashbutton.rules ├── astro.rules ├── badtuer.rules ├── balkonmagic.rules ├── energy.rules ├── heizung-modus.rules ├── heizung-raeume.rules ├── kodi.rules ├── lichtprogramm.rules ├── medientechnik.rules ├── miflora.rules ├── nurzen100.rules ├── senseoWifi.rules ├── sonoff.rules ├── sonos.rules ├── speedtest.rules ├── system.rules ├── verbraucher.rules ├── wakeup.rules ├── wartung.rules ├── weihnachtsbaum.rules └── wohnungstuer.rules ├── services ├── addons.cfg ├── basicui.cfg ├── classicui.cfg ├── influxdb.cfg.dist ├── logging.cfg ├── mapdb.cfg ├── mqtt.cfg.dist ├── pushover.cfg.dist ├── runtime.cfg └── xbmc.cfg ├── sitemaps ├── nurzen100.sitemap ├── sitemapDocs.sitemap └── w66a.sitemap ├── sounds ├── barking.mp3 └── doorbell.mp3 ├── things ├── amazondashbutton.things ├── astro.things ├── homematic.things ├── network.things ├── ntp.things ├── sonos.things └── zmote.things ├── transform ├── C-to-F.js ├── HM-CC-RT-DN.map ├── HM-Sec-SCo.map ├── active.map ├── astro.map ├── batterie.map ├── operation.map ├── presence.map ├── senseo-wifi.map ├── truefalse.map ├── unreach.map └── window.map ├── upgradeHomegear.sh └── upgradeOH2.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/README.md -------------------------------------------------------------------------------- /Westinghouse_Ventilator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/Westinghouse_Ventilator.json -------------------------------------------------------------------------------- /additionalFiles/Speedtest_icons_svg.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/additionalFiles/Speedtest_icons_svg.rar -------------------------------------------------------------------------------- /additionalFiles/spuelmaschine-csv.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/additionalFiles/spuelmaschine-csv.log -------------------------------------------------------------------------------- /additionalFiles/spuelmaschine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/additionalFiles/spuelmaschine.png -------------------------------------------------------------------------------- /additionalFiles/waschmaschine-openhab-csv.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/additionalFiles/waschmaschine-openhab-csv.log -------------------------------------------------------------------------------- /additionalFiles/waschmaschine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/additionalFiles/waschmaschine.png -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/html/index.html -------------------------------------------------------------------------------- /html/static/BasicUI-Mod.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/static/BasicUI-Mod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/html/static/BasicUI-Mod.html -------------------------------------------------------------------------------- /icons/classic/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/AUTHORS -------------------------------------------------------------------------------- /icons/classic/catfridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/catfridge.svg -------------------------------------------------------------------------------- /icons/classic/compactdisc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/compactdisc.svg -------------------------------------------------------------------------------- /icons/classic/controls_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/controls_round.svg -------------------------------------------------------------------------------- /icons/classic/crystallball-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/crystallball-off.svg -------------------------------------------------------------------------------- /icons/classic/crystallball-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/crystallball-on.svg -------------------------------------------------------------------------------- /icons/classic/crystallball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/crystallball.svg -------------------------------------------------------------------------------- /icons/classic/dishwasher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/dishwasher.svg -------------------------------------------------------------------------------- /icons/classic/error2-no_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/error2-no_error.svg -------------------------------------------------------------------------------- /icons/classic/error2-no_fault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/error2-no_fault.svg -------------------------------------------------------------------------------- /icons/classic/error2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/error2.svg -------------------------------------------------------------------------------- /icons/classic/findmyiphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/findmyiphone.svg -------------------------------------------------------------------------------- /icons/classic/fullmoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/fullmoon.svg -------------------------------------------------------------------------------- /icons/classic/iphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/iphone.svg -------------------------------------------------------------------------------- /icons/classic/iwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/iwatch.svg -------------------------------------------------------------------------------- /icons/classic/kodi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/kodi.svg -------------------------------------------------------------------------------- /icons/classic/lamp_chandelier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/lamp_chandelier.svg -------------------------------------------------------------------------------- /icons/classic/lamp_globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/lamp_globe.svg -------------------------------------------------------------------------------- /icons/classic/lamp_globe_light-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/lamp_globe_light-off.svg -------------------------------------------------------------------------------- /icons/classic/lamp_globe_light-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/lamp_globe_light-on.svg -------------------------------------------------------------------------------- /icons/classic/lamp_globe_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/lamp_globe_light.svg -------------------------------------------------------------------------------- /icons/classic/logitech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/logitech.svg -------------------------------------------------------------------------------- /icons/classic/mapstar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/mapstar.svg -------------------------------------------------------------------------------- /icons/classic/musicnotes_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/musicnotes_round.svg -------------------------------------------------------------------------------- /icons/classic/neato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/neato.svg -------------------------------------------------------------------------------- /icons/classic/nexus5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/nexus5.svg -------------------------------------------------------------------------------- /icons/classic/nexus9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/nexus9.svg -------------------------------------------------------------------------------- /icons/classic/oneplus3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/oneplus3.svg -------------------------------------------------------------------------------- /icons/classic/onoff_monochrome-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/onoff_monochrome-off.svg -------------------------------------------------------------------------------- /icons/classic/onoff_monochrome-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/onoff_monochrome-on.svg -------------------------------------------------------------------------------- /icons/classic/onoff_monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/onoff_monochrome.svg -------------------------------------------------------------------------------- /icons/classic/pc_silverstone_gd06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/pc_silverstone_gd06.svg -------------------------------------------------------------------------------- /icons/classic/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/placeholder.svg -------------------------------------------------------------------------------- /icons/classic/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/readme.txt -------------------------------------------------------------------------------- /icons/classic/senseo_brewed_size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_brewed_size.svg -------------------------------------------------------------------------------- /icons/classic/senseo_coffeesign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_coffeesign.svg -------------------------------------------------------------------------------- /icons/classic/senseo_cup_avail-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_cup_avail-off.svg -------------------------------------------------------------------------------- /icons/classic/senseo_cup_avail-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_cup_avail-on.svg -------------------------------------------------------------------------------- /icons/classic/senseo_cup_avail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_cup_avail.svg -------------------------------------------------------------------------------- /icons/classic/senseo_cup_big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_cup_big.svg -------------------------------------------------------------------------------- /icons/classic/senseo_cup_content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_cup_content.svg -------------------------------------------------------------------------------- /icons/classic/senseo_cup_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_cup_small.svg -------------------------------------------------------------------------------- /icons/classic/senseo_machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_machine.svg -------------------------------------------------------------------------------- /icons/classic/senseo_milkjug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_milkjug.svg -------------------------------------------------------------------------------- /icons/classic/senseo_pad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_pad.svg -------------------------------------------------------------------------------- /icons/classic/senseo_tamper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/senseo_tamper.svg -------------------------------------------------------------------------------- /icons/classic/singer_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/singer_round.svg -------------------------------------------------------------------------------- /icons/classic/sonoff_basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/sonoff_basic.svg -------------------------------------------------------------------------------- /icons/classic/sonos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/sonos.svg -------------------------------------------------------------------------------- /icons/classic/speedtest__Iconset.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest__Iconset.url -------------------------------------------------------------------------------- /icons/classic/speedtest__Iconset_Source.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest__Iconset_Source.url -------------------------------------------------------------------------------- /icons/classic/speedtest_analytics8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_analytics8.svg -------------------------------------------------------------------------------- /icons/classic/speedtest_download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_download.svg -------------------------------------------------------------------------------- /icons/classic/speedtest_network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_network.svg -------------------------------------------------------------------------------- /icons/classic/speedtest_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_new.svg -------------------------------------------------------------------------------- /icons/classic/speedtest_next5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_next5.svg -------------------------------------------------------------------------------- /icons/classic/speedtest_problem4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_problem4.svg -------------------------------------------------------------------------------- /icons/classic/speedtest_reload2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_reload2.svg -------------------------------------------------------------------------------- /icons/classic/speedtest_upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/speedtest_upload.svg -------------------------------------------------------------------------------- /icons/classic/stars-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/stars-off.svg -------------------------------------------------------------------------------- /icons/classic/stars-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/stars-on.svg -------------------------------------------------------------------------------- /icons/classic/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/stars.svg -------------------------------------------------------------------------------- /icons/classic/sunmoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/sunmoon.svg -------------------------------------------------------------------------------- /icons/classic/thermometer_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/thermometer_green.svg -------------------------------------------------------------------------------- /icons/classic/thermometer_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/thermometer_red.svg -------------------------------------------------------------------------------- /icons/classic/thermometer_red_earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/thermometer_red_earth.svg -------------------------------------------------------------------------------- /icons/classic/thermostat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/thermostat.svg -------------------------------------------------------------------------------- /icons/classic/volume_round_red-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/volume_round_red-0.svg -------------------------------------------------------------------------------- /icons/classic/volume_round_red-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/volume_round_red-100.svg -------------------------------------------------------------------------------- /icons/classic/volume_round_red-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/volume_round_red-20.svg -------------------------------------------------------------------------------- /icons/classic/volume_round_red-40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/volume_round_red-40.svg -------------------------------------------------------------------------------- /icons/classic/volume_round_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/volume_round_red.svg -------------------------------------------------------------------------------- /icons/classic/volume_round_reddim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/volume_round_reddim.svg -------------------------------------------------------------------------------- /icons/classic/washingmach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/washingmach.svg -------------------------------------------------------------------------------- /icons/classic/xps13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/xps13.svg -------------------------------------------------------------------------------- /icons/classic/zmote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/zmote.svg -------------------------------------------------------------------------------- /icons/classic/zodiac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/icons/classic/zodiac.svg -------------------------------------------------------------------------------- /items/alexa.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/alexa.items -------------------------------------------------------------------------------- /items/amazondashbutton.items: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /items/astro.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/astro.items -------------------------------------------------------------------------------- /items/homematic-heizung.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/homematic-heizung.items -------------------------------------------------------------------------------- /items/homematic.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/homematic.items -------------------------------------------------------------------------------- /items/kodi.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/kodi.items -------------------------------------------------------------------------------- /items/miflora.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/miflora.items -------------------------------------------------------------------------------- /items/nurzen100.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/nurzen100.items -------------------------------------------------------------------------------- /items/senseoWifi.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/senseoWifi.items -------------------------------------------------------------------------------- /items/sitemapDocs.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/sitemapDocs.items -------------------------------------------------------------------------------- /items/sonoff.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/sonoff.items -------------------------------------------------------------------------------- /items/sonos.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/sonos.items -------------------------------------------------------------------------------- /items/speedtest.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/speedtest.items -------------------------------------------------------------------------------- /items/system.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/system.items -------------------------------------------------------------------------------- /items/zmote.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/items/zmote.items -------------------------------------------------------------------------------- /logitech-z906.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/logitech-z906.json -------------------------------------------------------------------------------- /persistence/influxdb.persist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/persistence/influxdb.persist -------------------------------------------------------------------------------- /persistence/mapdb.persist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/persistence/mapdb.persist -------------------------------------------------------------------------------- /rules/ailight.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/ailight.rules -------------------------------------------------------------------------------- /rules/amazondashbutton.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/amazondashbutton.rules -------------------------------------------------------------------------------- /rules/astro.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/astro.rules -------------------------------------------------------------------------------- /rules/badtuer.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/badtuer.rules -------------------------------------------------------------------------------- /rules/balkonmagic.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/balkonmagic.rules -------------------------------------------------------------------------------- /rules/energy.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/energy.rules -------------------------------------------------------------------------------- /rules/heizung-modus.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/heizung-modus.rules -------------------------------------------------------------------------------- /rules/heizung-raeume.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/heizung-raeume.rules -------------------------------------------------------------------------------- /rules/kodi.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/kodi.rules -------------------------------------------------------------------------------- /rules/lichtprogramm.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/lichtprogramm.rules -------------------------------------------------------------------------------- /rules/medientechnik.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/medientechnik.rules -------------------------------------------------------------------------------- /rules/miflora.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/miflora.rules -------------------------------------------------------------------------------- /rules/nurzen100.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/nurzen100.rules -------------------------------------------------------------------------------- /rules/senseoWifi.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/senseoWifi.rules -------------------------------------------------------------------------------- /rules/sonoff.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/sonoff.rules -------------------------------------------------------------------------------- /rules/sonos.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/sonos.rules -------------------------------------------------------------------------------- /rules/speedtest.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/speedtest.rules -------------------------------------------------------------------------------- /rules/system.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/system.rules -------------------------------------------------------------------------------- /rules/verbraucher.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/verbraucher.rules -------------------------------------------------------------------------------- /rules/wakeup.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/wakeup.rules -------------------------------------------------------------------------------- /rules/wartung.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/wartung.rules -------------------------------------------------------------------------------- /rules/weihnachtsbaum.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/weihnachtsbaum.rules -------------------------------------------------------------------------------- /rules/wohnungstuer.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/rules/wohnungstuer.rules -------------------------------------------------------------------------------- /services/addons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/addons.cfg -------------------------------------------------------------------------------- /services/basicui.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/basicui.cfg -------------------------------------------------------------------------------- /services/classicui.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/classicui.cfg -------------------------------------------------------------------------------- /services/influxdb.cfg.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/influxdb.cfg.dist -------------------------------------------------------------------------------- /services/logging.cfg: -------------------------------------------------------------------------------- 1 | pattern=%date{ISO8601} - %-25logger: %msg%n 2 | -------------------------------------------------------------------------------- /services/mapdb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/mapdb.cfg -------------------------------------------------------------------------------- /services/mqtt.cfg.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/mqtt.cfg.dist -------------------------------------------------------------------------------- /services/pushover.cfg.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/pushover.cfg.dist -------------------------------------------------------------------------------- /services/runtime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/runtime.cfg -------------------------------------------------------------------------------- /services/xbmc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/services/xbmc.cfg -------------------------------------------------------------------------------- /sitemaps/nurzen100.sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/sitemaps/nurzen100.sitemap -------------------------------------------------------------------------------- /sitemaps/sitemapDocs.sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/sitemaps/sitemapDocs.sitemap -------------------------------------------------------------------------------- /sitemaps/w66a.sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/sitemaps/w66a.sitemap -------------------------------------------------------------------------------- /sounds/barking.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/sounds/barking.mp3 -------------------------------------------------------------------------------- /sounds/doorbell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/sounds/doorbell.mp3 -------------------------------------------------------------------------------- /things/amazondashbutton.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/things/amazondashbutton.things -------------------------------------------------------------------------------- /things/astro.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/things/astro.things -------------------------------------------------------------------------------- /things/homematic.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/things/homematic.things -------------------------------------------------------------------------------- /things/network.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/things/network.things -------------------------------------------------------------------------------- /things/ntp.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/things/ntp.things -------------------------------------------------------------------------------- /things/sonos.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/things/sonos.things -------------------------------------------------------------------------------- /things/zmote.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/things/zmote.things -------------------------------------------------------------------------------- /transform/C-to-F.js: -------------------------------------------------------------------------------- 1 | (function(i){ return i*9/5+32; })(input) 2 | -------------------------------------------------------------------------------- /transform/HM-CC-RT-DN.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/HM-CC-RT-DN.map -------------------------------------------------------------------------------- /transform/HM-Sec-SCo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/HM-Sec-SCo.map -------------------------------------------------------------------------------- /transform/active.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/active.map -------------------------------------------------------------------------------- /transform/astro.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/astro.map -------------------------------------------------------------------------------- /transform/batterie.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/batterie.map -------------------------------------------------------------------------------- /transform/operation.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/operation.map -------------------------------------------------------------------------------- /transform/presence.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/presence.map -------------------------------------------------------------------------------- /transform/senseo-wifi.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/senseo-wifi.map -------------------------------------------------------------------------------- /transform/truefalse.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/truefalse.map -------------------------------------------------------------------------------- /transform/unreach.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/unreach.map -------------------------------------------------------------------------------- /transform/window.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/transform/window.map -------------------------------------------------------------------------------- /upgradeHomegear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/upgradeHomegear.sh -------------------------------------------------------------------------------- /upgradeOH2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomDietrich/openhab-config/HEAD/upgradeOH2.sh --------------------------------------------------------------------------------