├── README.md ├── automationserver ├── ASBusiness │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── fr │ │ └── guiet │ │ └── automationserver │ │ └── business │ │ ├── Heater.java │ │ ├── HomeModeState.java │ │ ├── RollerShutter.java │ │ ├── RollerShutterState.java │ │ ├── Room.java │ │ ├── helper │ │ ├── DateUtils.java │ │ ├── GpioHelper.java │ │ ├── MqttClientHelper.java.old │ │ ├── ParseUtils.java │ │ └── PinState.java │ │ ├── sensor │ │ ├── BMP085_Sensor.java │ │ ├── DHT22_Sensor.java │ │ ├── DS18B20_Sensor.java │ │ ├── EnvironmentalSensor.java │ │ ├── HDC1080_Sensor.java │ │ ├── ReedswitchSensor.java │ │ ├── ReedswitchState.java │ │ └── Sensor.java │ │ └── service │ │ ├── AbstractAutomationService.java │ │ ├── AlarmService.java │ │ ├── AnemometerService.java │ │ ├── BLEHubService.java │ │ ├── IMqttable.java │ │ ├── LoRaService.java_old │ │ ├── MailService.java │ │ ├── MailboxService.java │ │ ├── MqttService.java │ │ ├── OutsideEnvironmentalService.java │ │ ├── Print3DService.java │ │ ├── RaingaugeService.java │ │ ├── RollerShutterService.java │ │ ├── RoomService.java │ │ ├── SMSGammuService.java │ │ ├── TeleInfoService.java │ │ ├── WaterHeaterService.java │ │ ├── WaterMeterService.java │ │ └── WindvaneService.java ├── ASDataAccess │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── fr │ │ └── guiet │ │ └── automationserver │ │ └── dataaccess │ │ ├── C3P0DataSource.java │ │ └── DbManager.java ├── ASLoraWAN │ ├── .gitignore │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── be │ │ └── romaincambier │ │ └── lorawan │ │ ├── AesCmac.java │ │ ├── Binarizable.java │ │ ├── Direction.java │ │ ├── FHDR.java │ │ ├── FRMPayload.java │ │ ├── JoinAcceptPayload.java │ │ ├── JoinRequestPayload.java │ │ ├── MACPayload.java │ │ ├── MHDR.java │ │ ├── MType.java │ │ ├── MajorVersion.java │ │ ├── Message.java │ │ ├── PhyPayload.java │ │ └── exceptions │ │ └── MalformedPacketException.java ├── ASMain │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── assembly.xml │ │ └── main │ │ ├── java │ │ └── fr │ │ │ └── guiet │ │ │ └── automationserver │ │ │ └── AutomationServer.java │ │ └── resources │ │ ├── automationserver.properties │ │ └── log4j.xml ├── ASModel │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── fr │ │ └── guiet │ │ └── automationserver │ │ └── dto │ │ ├── HeaterDto.java │ │ ├── RoomDto.java │ │ ├── SMSDto.java │ │ ├── SensorDto.java │ │ ├── TeleInfoTrameDto.java │ │ └── TempScheduleDto.java ├── ASParent │ └── pom.xml ├── ASTests │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── assembly.xml │ │ └── main │ │ ├── java │ │ └── fr │ │ │ └── guiet │ │ │ └── automationserver │ │ │ ├── databases │ │ │ └── InfluxdbTests.java │ │ │ ├── teleinfoservicetests │ │ │ └── TeleinfoServiceTests.java │ │ │ └── various │ │ │ ├── ClasspathTests.java │ │ │ ├── DateTimeTests.java │ │ │ ├── JsonTests.java │ │ │ └── RollershutterServiceTests.java │ │ └── resources │ │ └── log4j.xml └── ASWebApp │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── fr │ │ └── guiet │ │ └── automationserver │ │ └── api │ │ ├── AlarmAPI.java.old │ │ ├── FirmwareAPI.java │ │ ├── RoomAPI.java.old │ │ └── ScheduleAPI.java │ └── webapp │ ├── WEB-INF │ └── web.xml │ ├── resources │ ├── css │ │ ├── areas.css │ │ ├── areas │ │ │ └── icons.png │ │ ├── calendar_blue.css │ │ ├── calendar_default_2014.css │ │ ├── calendar_g.css │ │ ├── calendar_green.css │ │ ├── calendar_traditional.css │ │ ├── calendar_transparent.css │ │ ├── calendar_white.css │ │ ├── gantt_default_2014.css │ │ ├── kanban_default_2014.css │ │ ├── month_blue.css │ │ ├── month_default_2014.css │ │ ├── month_g.css │ │ ├── month_green.css │ │ ├── month_traditional.css │ │ ├── month_transparent.css │ │ ├── month_white.css │ │ ├── navigator_8.css │ │ ├── navigator_blue.css │ │ ├── navigator_default_2014.css │ │ ├── navigator_g.css │ │ ├── navigator_green.css │ │ ├── navigator_transparent.css │ │ ├── navigator_white.css │ │ ├── scheduler_8.css │ │ ├── scheduler_blue.css │ │ ├── scheduler_default_2014.css │ │ ├── scheduler_green.css │ │ ├── scheduler_traditional.css │ │ ├── scheduler_transparent.css │ │ ├── scheduler_white.css │ │ └── timetable_big.css │ └── js │ │ ├── daypilot-all.min.js │ │ └── jquery-1.12.2.min.js │ └── tempschedule.jsp ├── automationserver@.service ├── doc ├── AutomationServerArchitecture.dia ├── IMG_20170925_193103.jpg ├── InstallNotes.txt ├── InstallNotesLinux.txt ├── P4J_BCM_Match.xlsx ├── Rpi1Gpio.png ├── Rpi3Gpio.png ├── custom_pins_on_early_boottime.txt ├── inside_enclosure_case.jpg ├── outside_enclosure_case.jpg └── system_overview.jpg ├── esp8266 └── firmware │ ├── AT0.51_SDK1.5 │ ├── esp8266_at0.51_sdk1.5.bin │ └── factory_reset.sh │ └── AT1.3_SDK2.0 │ ├── blank.bin │ ├── boot_v1.6.bin │ ├── esp_init_data_default.bin │ ├── factory_reset.sh │ └── user1.1024.new.2.bin ├── kubernetes ├── doc │ ├── k8s-automationserver-setup.md │ ├── k8s-cheatsheet.md │ ├── k8s-principles.md │ └── k8s-raspberry4-setup.md ├── docker │ ├── dnsmasq │ │ ├── Dockerfile │ │ ├── conf │ │ │ └── dnsmasq.conf │ │ ├── docker-build.sh │ │ ├── docker-compose.yml │ │ └── docker-run.sh │ ├── haproxy │ │ ├── Dockerfile │ │ ├── conf │ │ │ └── haproxy.cfg │ │ ├── docker-compose.yml │ │ └── restart.sh │ └── pihole │ │ └── docker-compose.yml └── manifests │ ├── grafana │ ├── grafana-deployment.yaml │ ├── grafana-ingress-resources.yaml │ ├── grafana-nfs-pv.yaml │ ├── grafana-service-clusterip.yaml │ └── granafa-nfs-pvc.yaml │ ├── k8s-dashboard │ └── sa_cluster_admin.yaml │ ├── nodered │ ├── nodered-deployment.yaml │ ├── nodered-ingress-resources.yaml │ ├── nodered-nfs-pv.yaml │ ├── nodered-nfs-pvc.yaml │ └── nodered-service-clusterip.yaml │ └── openhab │ ├── openhab-deployment.yaml │ ├── openhab-ingress-resources.yaml │ ├── openhab-nfs-pv.yaml │ ├── openhab-nfs-pvc.yaml │ ├── openhab-service-clusterip.yaml │ └── openhab-service-nodeport.yaml ├── postgresql ├── automationserver.sql └── dump_structure.sh ├── sketches ├── anemometer │ ├── anemometer.ino │ └── linear_regression_anemometer.xlsx ├── anemometer_calibration │ └── anemometer_calibration.ino ├── basementmonitoring │ └── basementmonitoring.ino ├── blink_arduino_pro_mini │ └── blink_arduino_pro_mini.ino ├── boiler │ └── boiler.ino ├── fishfeeder │ └── fishfeeder.ino ├── homehub │ └── homehub.ino ├── homehub_v2 │ └── homehub_v2.ino ├── insidemonitoring │ └── insidemonitoring.ino ├── lora_node_receiver │ └── lora_node_receiver.ino ├── lora_node_sender │ └── lora_node_sender.ino ├── lora_rf95_client │ └── lora_rf95_client.ino ├── lora_rf95_server │ └── lora_rf95_server.ino ├── mailboxnotifier │ └── mailboxnotifier.ino ├── mbed_ble_environmental_sensor_htu21d │ └── main.cpp ├── mbed_ble_hub │ └── main.cpp ├── mbed_ble_insidemonitoring │ ├── BLE_API │ │ └── ble │ │ │ └── GapAdvertisingData.h │ └── main.cpp ├── mbed_ble_reedswitch │ └── main.cpp ├── outsidemonitoring │ └── outsidemonitoring.ino ├── raingauge │ ├── Schematic_Raingauge.svg │ └── raingauge.ino ├── raingauge_pro_mini │ └── raingauge_pro_mini.ino ├── rollershutter │ └── rollershutter.ino └── xmaslights │ └── xmaslights.ino ├── start_automationserver ├── start_tomcat ├── stop_automationserver ├── third-party-lib ├── arduino │ └── Low-Power-master │ │ ├── Examples │ │ ├── idleWakePeriodic │ │ │ └── idleWakePeriodic.ino │ │ ├── powerDownWakeExternalInterrupt │ │ │ └── powerDownWakeExternalInterrupt.ino │ │ ├── powerDownWakePeriodic │ │ │ └── powerDownWakePeriodic.ino │ │ └── standbyExternalInterruptSAMD21 │ │ │ └── standbyExternalInterruptSAMD21.ino │ │ ├── LowPower.cpp │ │ ├── LowPower.h │ │ ├── README.md │ │ ├── keywords.txt │ │ └── library.properties └── native │ └── librxtxSerial.so └── third-party-tools ├── automationserver ├── cmd │ ├── deploy.sh │ └── start.sh ├── conf │ ├── automationserver.properties │ ├── gammu-config │ └── log4j.xml ├── docker │ ├── automationserver_dockerbuild │ ├── automationserver_dockerfile │ ├── automationserver_dockerrun │ └── docker-entry-point.sh └── install │ └── prerequisite ├── grafana ├── docker │ ├── .env │ ├── README.md │ ├── docker-compose.yml │ ├── grafana_dockerrun │ └── grafana_dockerstop └── install │ └── prerequisite ├── influxdb ├── conf │ ├── influxdb.conf │ └── installweb.txt ├── docker │ ├── docker-entry-point.sh │ ├── influxdb_dockerbuild │ ├── influxdb_dockerfile │ └── influxdb_dockerrun └── install │ ├── prerequisite │ └── readme.txt ├── mosquitto ├── conf │ ├── ca_certificates │ │ └── README │ ├── certs │ │ └── README │ ├── conf.d │ │ └── README │ └── mosquitto.conf ├── docker │ ├── .env │ ├── docker-compose.yml │ ├── mosquitto_dockerrun │ └── mosquitto_dockerstop └── install │ ├── prerequisite │ └── readme.txt ├── node-red ├── docker │ ├── .env │ ├── docker-compose.yml │ ├── nodered_dockerrun │ └── nodered_dockerstop └── install │ ├── prerequisite │ └── readme.txt ├── openhab ├── conf │ ├── html │ │ ├── boilerChart.html │ │ ├── caveChart.html │ │ ├── cctvCam1Chart.html │ │ ├── charts.css │ │ ├── elecChart.html │ │ ├── exterieurChart.html │ │ ├── index.html │ │ ├── issue-120.css │ │ ├── issue-120.html │ │ ├── pluvioChart.html │ │ ├── readme.txt │ │ ├── salonChart.html │ │ └── weather-data │ │ │ ├── images │ │ │ ├── colorful │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── dark │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── flat_black │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── flat_colorful │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── flat_white │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ └── light │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ └── layouts │ │ │ ├── example.css │ │ │ ├── example.html │ │ │ ├── example.js │ │ │ └── readme.txt │ ├── items │ │ ├── anemometer.items │ │ ├── basement.items │ │ ├── ble_hub.items │ │ ├── electricity.items │ │ ├── garage.items │ │ ├── homeautomation.items │ │ ├── homeautomation.items.old │ │ ├── mailbox.items │ │ ├── manon.items │ │ ├── readme.txt │ │ ├── salon.items │ │ ├── watermeter.items │ │ ├── weather.items │ │ └── windvane.items │ ├── misc │ │ └── exec.whitelist │ ├── persistence │ │ └── readme.txt │ ├── rules │ │ ├── anemometer.rules │ │ ├── ble_hub.rules │ │ ├── derog.rules │ │ ├── fishfeeder.rules_old │ │ ├── garagesensor.rules │ │ ├── mailbox.rules │ │ ├── pressure.rules │ │ ├── raingauge.rules │ │ ├── readme.txt │ │ ├── watermeter.rules │ │ └── windvane.rules │ ├── scripts │ │ └── readme.txt │ ├── services │ │ ├── addons.cfg │ │ ├── http.cfg │ │ ├── mqtt-eventbus.cfg │ │ ├── mqtt.cfg │ │ ├── readme.txt │ │ └── runtime.cfg │ ├── sitemaps │ │ ├── homeautomation.sitemap │ │ └── readme.txt │ ├── things │ │ ├── mqtt.things │ │ └── weather.things │ └── transform │ │ ├── boiler_state.map │ │ ├── de.map │ │ ├── door_state.map │ │ ├── en.map │ │ ├── getAlarmMgt.js │ │ ├── getAwayMode.js │ │ ├── getBattery.js │ │ ├── getBoilerLastInfo.js │ │ ├── getBoilerLastOnDuration.js │ │ ├── getBoilerState.js │ │ ├── getBoilerTemp.js │ │ ├── getCaveExtractor.js │ │ ├── getCaveHumi.js │ │ ├── getCaveTemp.js │ │ ├── getConsoInst.js │ │ ├── getCurrentTemp.js │ │ ├── getHeaterState.js │ │ ├── getHeureCreuse.js │ │ ├── getHeurePleine.js │ │ ├── getHueMotionEvent.js │ │ ├── getHumidity.js │ │ ├── getMgtAutoMode.js │ │ ├── getNextBill.js │ │ ├── getNextChange.js │ │ ├── getNextRSClose.js │ │ ├── getNextRSOpen.js │ │ ├── getProgTemp.js │ │ ├── getRSMgt.js │ │ ├── getRSNorthState.js │ │ ├── getRSWestState.js │ │ ├── getRaingaugeVcc.js │ │ ├── getRssi.js │ │ ├── getSensorLastInfo.js │ │ ├── getSensorState.js │ │ ├── getWantedTemp.js │ │ ├── heater_state.map │ │ ├── readme.txt │ │ ├── rs_state.map │ │ ├── sensor_state.map │ │ ├── setAlarmMgt.js │ │ ├── setAlarmMode.js │ │ ├── setAwayMode.js │ │ ├── setMgtAutoMode.js │ │ ├── setRSMgt.js │ │ ├── setRSNorthAction.js │ │ └── setRSWestAction.js ├── docker │ ├── docker-compose.yml │ ├── openhab_dockerrun │ └── openhab_dockerstop └── install │ ├── crontab │ └── restart_openhab │ ├── prerequisite │ ├── readme.txt │ └── restart_openhab ├── postgresql ├── docker │ ├── docker-entry-point.sh │ ├── postgresql_dockerbuild │ ├── postgresql_dockerfile │ └── postgresql_dockerrun └── install │ ├── prerequisite │ └── readme.txt └── tomcat ├── cmd └── deploy.sh ├── docker ├── docker-entry-point.sh ├── tomcat_dockerbuild ├── tomcat_dockerfile └── tomcat_dockerrun └── install └── prerequisite /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/README.md -------------------------------------------------------------------------------- /automationserver/ASBusiness/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/pom.xml -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/Heater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/Heater.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/HomeModeState.java: -------------------------------------------------------------------------------- 1 | package fr.guiet.automationserver.business; 2 | 3 | public enum HomeModeState { 4 | NOTACTIVED, 5 | HOME, 6 | WORK 7 | } -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/RollerShutter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/RollerShutter.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/RollerShutterState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/RollerShutterState.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/Room.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/Room.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/DateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/DateUtils.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/GpioHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/GpioHelper.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/MqttClientHelper.java.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/MqttClientHelper.java.old -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/ParseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/ParseUtils.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/helper/PinState.java: -------------------------------------------------------------------------------- 1 | package fr.guiet.automationserver.business.helper; 2 | 3 | public enum PinState { 4 | HIGH, LOW 5 | } -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/BMP085_Sensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/BMP085_Sensor.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/DHT22_Sensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/DHT22_Sensor.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/DS18B20_Sensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/DS18B20_Sensor.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/EnvironmentalSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/EnvironmentalSensor.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/HDC1080_Sensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/HDC1080_Sensor.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/ReedswitchSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/ReedswitchSensor.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/ReedswitchState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/ReedswitchState.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/Sensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/sensor/Sensor.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/AbstractAutomationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/AbstractAutomationService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/AlarmService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/AlarmService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/AnemometerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/AnemometerService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/BLEHubService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/BLEHubService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/IMqttable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/IMqttable.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/LoRaService.java_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/LoRaService.java_old -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/MailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/MailService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/MailboxService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/MailboxService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/MqttService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/MqttService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/OutsideEnvironmentalService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/OutsideEnvironmentalService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/Print3DService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/Print3DService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/RaingaugeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/RaingaugeService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/RollerShutterService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/RollerShutterService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/RoomService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/RoomService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/SMSGammuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/SMSGammuService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/TeleInfoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/TeleInfoService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/WaterHeaterService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/WaterHeaterService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/WaterMeterService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/WaterMeterService.java -------------------------------------------------------------------------------- /automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/WindvaneService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASBusiness/src/main/java/fr/guiet/automationserver/business/service/WindvaneService.java -------------------------------------------------------------------------------- /automationserver/ASDataAccess/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASDataAccess/pom.xml -------------------------------------------------------------------------------- /automationserver/ASDataAccess/src/main/java/fr/guiet/automationserver/dataaccess/C3P0DataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASDataAccess/src/main/java/fr/guiet/automationserver/dataaccess/C3P0DataSource.java -------------------------------------------------------------------------------- /automationserver/ASDataAccess/src/main/java/fr/guiet/automationserver/dataaccess/DbManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASDataAccess/src/main/java/fr/guiet/automationserver/dataaccess/DbManager.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/pom.xml -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/AesCmac.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/AesCmac.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/Binarizable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/Binarizable.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/Direction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/Direction.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/FHDR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/FHDR.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/FRMPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/FRMPayload.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/JoinAcceptPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/JoinAcceptPayload.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/JoinRequestPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/JoinRequestPayload.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MACPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MACPayload.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MHDR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MHDR.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MType.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MajorVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/MajorVersion.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/Message.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/PhyPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/PhyPayload.java -------------------------------------------------------------------------------- /automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/exceptions/MalformedPacketException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASLoraWAN/src/main/java/be/romaincambier/lorawan/exceptions/MalformedPacketException.java -------------------------------------------------------------------------------- /automationserver/ASMain/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASMain/pom.xml -------------------------------------------------------------------------------- /automationserver/ASMain/src/assembly/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASMain/src/assembly/assembly.xml -------------------------------------------------------------------------------- /automationserver/ASMain/src/main/java/fr/guiet/automationserver/AutomationServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASMain/src/main/java/fr/guiet/automationserver/AutomationServer.java -------------------------------------------------------------------------------- /automationserver/ASMain/src/main/resources/automationserver.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASMain/src/main/resources/automationserver.properties -------------------------------------------------------------------------------- /automationserver/ASMain/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASMain/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /automationserver/ASModel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASModel/pom.xml -------------------------------------------------------------------------------- /automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/HeaterDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/HeaterDto.java -------------------------------------------------------------------------------- /automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/RoomDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/RoomDto.java -------------------------------------------------------------------------------- /automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/SMSDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/SMSDto.java -------------------------------------------------------------------------------- /automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/SensorDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/SensorDto.java -------------------------------------------------------------------------------- /automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/TeleInfoTrameDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/TeleInfoTrameDto.java -------------------------------------------------------------------------------- /automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/TempScheduleDto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASModel/src/main/java/fr/guiet/automationserver/dto/TempScheduleDto.java -------------------------------------------------------------------------------- /automationserver/ASParent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASParent/pom.xml -------------------------------------------------------------------------------- /automationserver/ASTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/.gitignore -------------------------------------------------------------------------------- /automationserver/ASTests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/pom.xml -------------------------------------------------------------------------------- /automationserver/ASTests/src/assembly/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/assembly/assembly.xml -------------------------------------------------------------------------------- /automationserver/ASTests/src/main/java/fr/guiet/automationserver/databases/InfluxdbTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/main/java/fr/guiet/automationserver/databases/InfluxdbTests.java -------------------------------------------------------------------------------- /automationserver/ASTests/src/main/java/fr/guiet/automationserver/teleinfoservicetests/TeleinfoServiceTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/main/java/fr/guiet/automationserver/teleinfoservicetests/TeleinfoServiceTests.java -------------------------------------------------------------------------------- /automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/ClasspathTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/ClasspathTests.java -------------------------------------------------------------------------------- /automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/DateTimeTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/DateTimeTests.java -------------------------------------------------------------------------------- /automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/JsonTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/JsonTests.java -------------------------------------------------------------------------------- /automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/RollershutterServiceTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/main/java/fr/guiet/automationserver/various/RollershutterServiceTests.java -------------------------------------------------------------------------------- /automationserver/ASTests/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASTests/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /automationserver/ASWebApp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/pom.xml -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/AlarmAPI.java.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/AlarmAPI.java.old -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/FirmwareAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/FirmwareAPI.java -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/RoomAPI.java.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/RoomAPI.java.old -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/ScheduleAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/java/fr/guiet/automationserver/api/ScheduleAPI.java -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/areas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/areas.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/areas/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/areas/icons.png -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/calendar_blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/calendar_blue.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/calendar_default_2014.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/calendar_default_2014.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/calendar_g.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/calendar_g.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/calendar_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/calendar_green.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/calendar_traditional.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/calendar_traditional.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/calendar_transparent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/calendar_transparent.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/calendar_white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/calendar_white.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/gantt_default_2014.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/gantt_default_2014.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/kanban_default_2014.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/kanban_default_2014.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/month_blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/month_blue.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/month_default_2014.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/month_default_2014.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/month_g.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/month_g.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/month_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/month_green.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/month_traditional.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/month_traditional.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/month_transparent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/month_transparent.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/month_white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/month_white.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/navigator_8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/navigator_8.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/navigator_blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/navigator_blue.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/navigator_default_2014.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/navigator_default_2014.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/navigator_g.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/navigator_g.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/navigator_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/navigator_green.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/navigator_transparent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/navigator_transparent.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/navigator_white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/navigator_white.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_8.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_blue.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_default_2014.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_default_2014.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_green.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_traditional.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_traditional.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_transparent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_transparent.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/scheduler_white.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/css/timetable_big.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/css/timetable_big.css -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/js/daypilot-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/js/daypilot-all.min.js -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/resources/js/jquery-1.12.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/resources/js/jquery-1.12.2.min.js -------------------------------------------------------------------------------- /automationserver/ASWebApp/src/main/webapp/tempschedule.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver/ASWebApp/src/main/webapp/tempschedule.jsp -------------------------------------------------------------------------------- /automationserver@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/automationserver@.service -------------------------------------------------------------------------------- /doc/AutomationServerArchitecture.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/AutomationServerArchitecture.dia -------------------------------------------------------------------------------- /doc/IMG_20170925_193103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/IMG_20170925_193103.jpg -------------------------------------------------------------------------------- /doc/InstallNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/InstallNotes.txt -------------------------------------------------------------------------------- /doc/InstallNotesLinux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/InstallNotesLinux.txt -------------------------------------------------------------------------------- /doc/P4J_BCM_Match.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/P4J_BCM_Match.xlsx -------------------------------------------------------------------------------- /doc/Rpi1Gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/Rpi1Gpio.png -------------------------------------------------------------------------------- /doc/Rpi3Gpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/Rpi3Gpio.png -------------------------------------------------------------------------------- /doc/custom_pins_on_early_boottime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/custom_pins_on_early_boottime.txt -------------------------------------------------------------------------------- /doc/inside_enclosure_case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/inside_enclosure_case.jpg -------------------------------------------------------------------------------- /doc/outside_enclosure_case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/outside_enclosure_case.jpg -------------------------------------------------------------------------------- /doc/system_overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/doc/system_overview.jpg -------------------------------------------------------------------------------- /esp8266/firmware/AT0.51_SDK1.5/esp8266_at0.51_sdk1.5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/esp8266/firmware/AT0.51_SDK1.5/esp8266_at0.51_sdk1.5.bin -------------------------------------------------------------------------------- /esp8266/firmware/AT0.51_SDK1.5/factory_reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/esp8266/firmware/AT0.51_SDK1.5/factory_reset.sh -------------------------------------------------------------------------------- /esp8266/firmware/AT1.3_SDK2.0/blank.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/esp8266/firmware/AT1.3_SDK2.0/blank.bin -------------------------------------------------------------------------------- /esp8266/firmware/AT1.3_SDK2.0/boot_v1.6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/esp8266/firmware/AT1.3_SDK2.0/boot_v1.6.bin -------------------------------------------------------------------------------- /esp8266/firmware/AT1.3_SDK2.0/esp_init_data_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/esp8266/firmware/AT1.3_SDK2.0/esp_init_data_default.bin -------------------------------------------------------------------------------- /esp8266/firmware/AT1.3_SDK2.0/factory_reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/esp8266/firmware/AT1.3_SDK2.0/factory_reset.sh -------------------------------------------------------------------------------- /esp8266/firmware/AT1.3_SDK2.0/user1.1024.new.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/esp8266/firmware/AT1.3_SDK2.0/user1.1024.new.2.bin -------------------------------------------------------------------------------- /kubernetes/doc/k8s-automationserver-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/doc/k8s-automationserver-setup.md -------------------------------------------------------------------------------- /kubernetes/doc/k8s-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/doc/k8s-cheatsheet.md -------------------------------------------------------------------------------- /kubernetes/doc/k8s-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/doc/k8s-principles.md -------------------------------------------------------------------------------- /kubernetes/doc/k8s-raspberry4-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/doc/k8s-raspberry4-setup.md -------------------------------------------------------------------------------- /kubernetes/docker/dnsmasq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/dnsmasq/Dockerfile -------------------------------------------------------------------------------- /kubernetes/docker/dnsmasq/conf/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/dnsmasq/conf/dnsmasq.conf -------------------------------------------------------------------------------- /kubernetes/docker/dnsmasq/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/dnsmasq/docker-build.sh -------------------------------------------------------------------------------- /kubernetes/docker/dnsmasq/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/dnsmasq/docker-compose.yml -------------------------------------------------------------------------------- /kubernetes/docker/dnsmasq/docker-run.sh: -------------------------------------------------------------------------------- 1 | docker-compose up -d -------------------------------------------------------------------------------- /kubernetes/docker/haproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/haproxy/Dockerfile -------------------------------------------------------------------------------- /kubernetes/docker/haproxy/conf/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/haproxy/conf/haproxy.cfg -------------------------------------------------------------------------------- /kubernetes/docker/haproxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/haproxy/docker-compose.yml -------------------------------------------------------------------------------- /kubernetes/docker/haproxy/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/haproxy/restart.sh -------------------------------------------------------------------------------- /kubernetes/docker/pihole/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/docker/pihole/docker-compose.yml -------------------------------------------------------------------------------- /kubernetes/manifests/grafana/grafana-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/grafana/grafana-deployment.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/grafana/grafana-ingress-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/grafana/grafana-ingress-resources.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/grafana/grafana-nfs-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/grafana/grafana-nfs-pv.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/grafana/grafana-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/grafana/grafana-service-clusterip.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/grafana/granafa-nfs-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/grafana/granafa-nfs-pvc.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/k8s-dashboard/sa_cluster_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/k8s-dashboard/sa_cluster_admin.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/nodered/nodered-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/nodered/nodered-deployment.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/nodered/nodered-ingress-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/nodered/nodered-ingress-resources.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/nodered/nodered-nfs-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/nodered/nodered-nfs-pv.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/nodered/nodered-nfs-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/nodered/nodered-nfs-pvc.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/nodered/nodered-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/nodered/nodered-service-clusterip.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/openhab/openhab-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/openhab/openhab-deployment.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/openhab/openhab-ingress-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/openhab/openhab-ingress-resources.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/openhab/openhab-nfs-pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/openhab/openhab-nfs-pv.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/openhab/openhab-nfs-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/openhab/openhab-nfs-pvc.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/openhab/openhab-service-clusterip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/openhab/openhab-service-clusterip.yaml -------------------------------------------------------------------------------- /kubernetes/manifests/openhab/openhab-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/kubernetes/manifests/openhab/openhab-service-nodeport.yaml -------------------------------------------------------------------------------- /postgresql/automationserver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/postgresql/automationserver.sql -------------------------------------------------------------------------------- /postgresql/dump_structure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/postgresql/dump_structure.sh -------------------------------------------------------------------------------- /sketches/anemometer/anemometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/anemometer/anemometer.ino -------------------------------------------------------------------------------- /sketches/anemometer/linear_regression_anemometer.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/anemometer/linear_regression_anemometer.xlsx -------------------------------------------------------------------------------- /sketches/anemometer_calibration/anemometer_calibration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/anemometer_calibration/anemometer_calibration.ino -------------------------------------------------------------------------------- /sketches/basementmonitoring/basementmonitoring.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/basementmonitoring/basementmonitoring.ino -------------------------------------------------------------------------------- /sketches/blink_arduino_pro_mini/blink_arduino_pro_mini.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/blink_arduino_pro_mini/blink_arduino_pro_mini.ino -------------------------------------------------------------------------------- /sketches/boiler/boiler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/boiler/boiler.ino -------------------------------------------------------------------------------- /sketches/fishfeeder/fishfeeder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/fishfeeder/fishfeeder.ino -------------------------------------------------------------------------------- /sketches/homehub/homehub.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/homehub/homehub.ino -------------------------------------------------------------------------------- /sketches/homehub_v2/homehub_v2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/homehub_v2/homehub_v2.ino -------------------------------------------------------------------------------- /sketches/insidemonitoring/insidemonitoring.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/insidemonitoring/insidemonitoring.ino -------------------------------------------------------------------------------- /sketches/lora_node_receiver/lora_node_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/lora_node_receiver/lora_node_receiver.ino -------------------------------------------------------------------------------- /sketches/lora_node_sender/lora_node_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/lora_node_sender/lora_node_sender.ino -------------------------------------------------------------------------------- /sketches/lora_rf95_client/lora_rf95_client.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/lora_rf95_client/lora_rf95_client.ino -------------------------------------------------------------------------------- /sketches/lora_rf95_server/lora_rf95_server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/lora_rf95_server/lora_rf95_server.ino -------------------------------------------------------------------------------- /sketches/mailboxnotifier/mailboxnotifier.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/mailboxnotifier/mailboxnotifier.ino -------------------------------------------------------------------------------- /sketches/mbed_ble_environmental_sensor_htu21d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/mbed_ble_environmental_sensor_htu21d/main.cpp -------------------------------------------------------------------------------- /sketches/mbed_ble_hub/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/mbed_ble_hub/main.cpp -------------------------------------------------------------------------------- /sketches/mbed_ble_insidemonitoring/BLE_API/ble/GapAdvertisingData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/mbed_ble_insidemonitoring/BLE_API/ble/GapAdvertisingData.h -------------------------------------------------------------------------------- /sketches/mbed_ble_insidemonitoring/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/mbed_ble_insidemonitoring/main.cpp -------------------------------------------------------------------------------- /sketches/mbed_ble_reedswitch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/mbed_ble_reedswitch/main.cpp -------------------------------------------------------------------------------- /sketches/outsidemonitoring/outsidemonitoring.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/outsidemonitoring/outsidemonitoring.ino -------------------------------------------------------------------------------- /sketches/raingauge/Schematic_Raingauge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/raingauge/Schematic_Raingauge.svg -------------------------------------------------------------------------------- /sketches/raingauge/raingauge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/raingauge/raingauge.ino -------------------------------------------------------------------------------- /sketches/raingauge_pro_mini/raingauge_pro_mini.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/raingauge_pro_mini/raingauge_pro_mini.ino -------------------------------------------------------------------------------- /sketches/rollershutter/rollershutter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/rollershutter/rollershutter.ino -------------------------------------------------------------------------------- /sketches/xmaslights/xmaslights.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/sketches/xmaslights/xmaslights.ino -------------------------------------------------------------------------------- /start_automationserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/start_automationserver -------------------------------------------------------------------------------- /start_tomcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/start_tomcat -------------------------------------------------------------------------------- /stop_automationserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/stop_automationserver -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/Examples/idleWakePeriodic/idleWakePeriodic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/Examples/idleWakePeriodic/idleWakePeriodic.ino -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/Examples/powerDownWakeExternalInterrupt/powerDownWakeExternalInterrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/Examples/powerDownWakeExternalInterrupt/powerDownWakeExternalInterrupt.ino -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/Examples/powerDownWakePeriodic/powerDownWakePeriodic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/Examples/powerDownWakePeriodic/powerDownWakePeriodic.ino -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/Examples/standbyExternalInterruptSAMD21/standbyExternalInterruptSAMD21.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/Examples/standbyExternalInterruptSAMD21/standbyExternalInterruptSAMD21.ino -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/LowPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/LowPower.cpp -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/LowPower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/LowPower.h -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/README.md -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/keywords.txt -------------------------------------------------------------------------------- /third-party-lib/arduino/Low-Power-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/arduino/Low-Power-master/library.properties -------------------------------------------------------------------------------- /third-party-lib/native/librxtxSerial.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-lib/native/librxtxSerial.so -------------------------------------------------------------------------------- /third-party-tools/automationserver/cmd/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/cmd/deploy.sh -------------------------------------------------------------------------------- /third-party-tools/automationserver/cmd/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/cmd/start.sh -------------------------------------------------------------------------------- /third-party-tools/automationserver/conf/automationserver.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/conf/automationserver.properties -------------------------------------------------------------------------------- /third-party-tools/automationserver/conf/gammu-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/conf/gammu-config -------------------------------------------------------------------------------- /third-party-tools/automationserver/conf/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/conf/log4j.xml -------------------------------------------------------------------------------- /third-party-tools/automationserver/docker/automationserver_dockerbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/docker/automationserver_dockerbuild -------------------------------------------------------------------------------- /third-party-tools/automationserver/docker/automationserver_dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/docker/automationserver_dockerfile -------------------------------------------------------------------------------- /third-party-tools/automationserver/docker/automationserver_dockerrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/docker/automationserver_dockerrun -------------------------------------------------------------------------------- /third-party-tools/automationserver/docker/docker-entry-point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/docker/docker-entry-point.sh -------------------------------------------------------------------------------- /third-party-tools/automationserver/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/automationserver/install/prerequisite -------------------------------------------------------------------------------- /third-party-tools/grafana/docker/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=grafana 2 | -------------------------------------------------------------------------------- /third-party-tools/grafana/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/grafana/docker/README.md -------------------------------------------------------------------------------- /third-party-tools/grafana/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/grafana/docker/docker-compose.yml -------------------------------------------------------------------------------- /third-party-tools/grafana/docker/grafana_dockerrun: -------------------------------------------------------------------------------- 1 | docker-compose up -d 2 | -------------------------------------------------------------------------------- /third-party-tools/grafana/docker/grafana_dockerstop: -------------------------------------------------------------------------------- 1 | docker-compose down 2 | -------------------------------------------------------------------------------- /third-party-tools/grafana/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/grafana/install/prerequisite -------------------------------------------------------------------------------- /third-party-tools/influxdb/conf/influxdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/influxdb/conf/influxdb.conf -------------------------------------------------------------------------------- /third-party-tools/influxdb/conf/installweb.txt: -------------------------------------------------------------------------------- 1 | https://bentek.fr/influxdb-grafana-raspberry-pi/ 2 | -------------------------------------------------------------------------------- /third-party-tools/influxdb/docker/docker-entry-point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/influxdb/docker/docker-entry-point.sh -------------------------------------------------------------------------------- /third-party-tools/influxdb/docker/influxdb_dockerbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/influxdb/docker/influxdb_dockerbuild -------------------------------------------------------------------------------- /third-party-tools/influxdb/docker/influxdb_dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/influxdb/docker/influxdb_dockerfile -------------------------------------------------------------------------------- /third-party-tools/influxdb/docker/influxdb_dockerrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/influxdb/docker/influxdb_dockerrun -------------------------------------------------------------------------------- /third-party-tools/influxdb/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/influxdb/install/prerequisite -------------------------------------------------------------------------------- /third-party-tools/influxdb/install/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/influxdb/install/readme.txt -------------------------------------------------------------------------------- /third-party-tools/mosquitto/conf/ca_certificates/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/mosquitto/conf/ca_certificates/README -------------------------------------------------------------------------------- /third-party-tools/mosquitto/conf/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/mosquitto/conf/certs/README -------------------------------------------------------------------------------- /third-party-tools/mosquitto/conf/conf.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/mosquitto/conf/conf.d/README -------------------------------------------------------------------------------- /third-party-tools/mosquitto/conf/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/mosquitto/conf/mosquitto.conf -------------------------------------------------------------------------------- /third-party-tools/mosquitto/docker/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=mosquitto 2 | -------------------------------------------------------------------------------- /third-party-tools/mosquitto/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/mosquitto/docker/docker-compose.yml -------------------------------------------------------------------------------- /third-party-tools/mosquitto/docker/mosquitto_dockerrun: -------------------------------------------------------------------------------- 1 | docker-compose up -d 2 | -------------------------------------------------------------------------------- /third-party-tools/mosquitto/docker/mosquitto_dockerstop: -------------------------------------------------------------------------------- 1 | docker-compose down 2 | -------------------------------------------------------------------------------- /third-party-tools/mosquitto/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/mosquitto/install/prerequisite -------------------------------------------------------------------------------- /third-party-tools/mosquitto/install/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/mosquitto/install/readme.txt -------------------------------------------------------------------------------- /third-party-tools/node-red/docker/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=node-red 2 | -------------------------------------------------------------------------------- /third-party-tools/node-red/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/node-red/docker/docker-compose.yml -------------------------------------------------------------------------------- /third-party-tools/node-red/docker/nodered_dockerrun: -------------------------------------------------------------------------------- 1 | docker-compose up -d 2 | -------------------------------------------------------------------------------- /third-party-tools/node-red/docker/nodered_dockerstop: -------------------------------------------------------------------------------- 1 | docker-compose down 2 | -------------------------------------------------------------------------------- /third-party-tools/node-red/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/node-red/install/prerequisite -------------------------------------------------------------------------------- /third-party-tools/node-red/install/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/node-red/install/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/boilerChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/boilerChart.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/caveChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/caveChart.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/cctvCam1Chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/cctvCam1Chart.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/charts.css -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/elecChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/elecChart.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/exterieurChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/exterieurChart.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/index.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/issue-120.css: -------------------------------------------------------------------------------- 1 | .mdl-ripple { background: #000; opacity: 0.001; } 2 | -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/issue-120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/issue-120.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/pluvioChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/pluvioChart.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/salonChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/salonChart.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/blowing-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/clear-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/cloudy.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/dust.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/few-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/fog.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/freezing-drizzle.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/freezing-rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/hot.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/light-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/mostly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/mostly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/partly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/partly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/rain-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/rain-and-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/scattered-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/scattered-thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/scattered-thundershowers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/snow-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/snow-flurries.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/snow-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/storm.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/sunny.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/thundershower.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/unknown.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/colorful/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/colorful/wind.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/blowing-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/clear-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/cloudy.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/dust.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/few-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/fog.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/freezing-drizzle.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/freezing-rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/hot.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/light-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/mostly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/mostly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/partly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/partly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/rain-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/rain-and-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/scattered-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/scattered-thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/scattered-thundershowers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/snow-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/snow-flurries.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/snow-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/storm.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/sunny.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/thundershower.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/unknown.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/dark/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/dark/wind.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/blowing-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/clear-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/cloudy.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/dust.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/few-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/fog.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/freezing-drizzle.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/freezing-rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/hot.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/light-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/mostly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/mostly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/partly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/partly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/rain-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/rain-and-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/scattered-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/scattered-thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/scattered-thundershowers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow-flurries.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/storm.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/sunny.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/thundershower.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/unknown.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_black/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_black/wind.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/blowing-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/clear-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/cloudy.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/dust.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/few-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/fog.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/freezing-drizzle.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/freezing-rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/hot.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/light-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/mostly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/mostly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/partly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/partly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/rain-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/rain-and-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/scattered-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/scattered-thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/scattered-thundershowers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow-flurries.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/storm.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/sunny.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/thundershower.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/unknown.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_colorful/wind.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/blowing-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/clear-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/cloudy.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/dust.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/few-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/fog.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/freezing-drizzle.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/freezing-rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/hot.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/light-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/mostly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/mostly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/partly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/partly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/rain-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/rain-and-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/scattered-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/scattered-thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/scattered-thundershowers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow-flurries.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/storm.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/sunny.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/thundershower.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/unknown.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/flat_white/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/flat_white/wind.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/blowing-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/clear-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/cloudy.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/dust.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/few-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/fog.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/freezing-drizzle.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/freezing-rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/hot.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/light-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/mostly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/mostly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/partly-cloudy-day.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/partly-cloudy-night.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/rain-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/rain-and-snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/rain.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/scattered-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/scattered-thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/scattered-thundershowers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/snow-and-sleet.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/snow-flurries.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/snow-showers.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/snow.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/storm.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/sunny.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/thunder.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/thundershower.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/unknown.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/images/light/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/images/light/wind.png -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/layouts/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/layouts/example.css -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/layouts/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/layouts/example.html -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/layouts/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/layouts/example.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/html/weather-data/layouts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/html/weather-data/layouts/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/anemometer.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/anemometer.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/basement.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/basement.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/ble_hub.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/ble_hub.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/electricity.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/electricity.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/garage.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/garage.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/homeautomation.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/homeautomation.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/homeautomation.items.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/homeautomation.items.old -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/mailbox.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/mailbox.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/manon.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/manon.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/salon.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/salon.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/watermeter.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/watermeter.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/weather.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/weather.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/items/windvane.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/items/windvane.items -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/misc/exec.whitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/misc/exec.whitelist -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/persistence/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/anemometer.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/anemometer.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/ble_hub.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/ble_hub.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/derog.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/derog.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/fishfeeder.rules_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/fishfeeder.rules_old -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/garagesensor.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/garagesensor.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/mailbox.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/mailbox.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/pressure.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/pressure.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/raingauge.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/raingauge.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/watermeter.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/watermeter.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/rules/windvane.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/rules/windvane.rules -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/scripts/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/services/addons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/services/addons.cfg -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/services/http.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/services/http.cfg -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/services/mqtt-eventbus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/services/mqtt-eventbus.cfg -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/services/mqtt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/services/mqtt.cfg -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/services/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/services/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/services/runtime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/services/runtime.cfg -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/sitemaps/homeautomation.sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/sitemaps/homeautomation.sitemap -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/sitemaps/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/sitemaps/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/things/mqtt.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/things/mqtt.things -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/things/weather.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/things/weather.things -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/boiler_state.map: -------------------------------------------------------------------------------- 1 | OFF=ETEINT 2 | ON=ALLUME 3 | -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/de.map: -------------------------------------------------------------------------------- 1 | CLOSED=zu 2 | OPEN=offen 3 | NULL=undefiniert 4 | -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/door_state.map: -------------------------------------------------------------------------------- 1 | 0=OUVERTE 2 | 1=FERMEE 3 | -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/en.map: -------------------------------------------------------------------------------- 1 | CLOSED=closed 2 | OPEN=open 3 | NULL=unknown 4 | -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getAlarmMgt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getAlarmMgt.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getAwayMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getAwayMode.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getBattery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getBattery.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getBoilerLastInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getBoilerLastInfo.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getBoilerLastOnDuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getBoilerLastOnDuration.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getBoilerState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getBoilerState.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getBoilerTemp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getBoilerTemp.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getCaveExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getCaveExtractor.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getCaveHumi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getCaveHumi.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getCaveTemp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getCaveTemp.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getConsoInst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getConsoInst.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getCurrentTemp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getCurrentTemp.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getHeaterState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getHeaterState.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getHeureCreuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getHeureCreuse.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getHeurePleine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getHeurePleine.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getHueMotionEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getHueMotionEvent.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getHumidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getHumidity.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getMgtAutoMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getMgtAutoMode.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getNextBill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getNextBill.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getNextChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getNextChange.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getNextRSClose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getNextRSClose.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getNextRSOpen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getNextRSOpen.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getProgTemp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getProgTemp.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getRSMgt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getRSMgt.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getRSNorthState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getRSNorthState.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getRSWestState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getRSWestState.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getRaingaugeVcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getRaingaugeVcc.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getRssi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getRssi.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getSensorLastInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getSensorLastInfo.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getSensorState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getSensorState.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/getWantedTemp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/getWantedTemp.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/heater_state.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/heater_state.map -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/rs_state.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/rs_state.map -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/sensor_state.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/sensor_state.map -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/setAlarmMgt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/setAlarmMgt.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/setAlarmMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/setAlarmMode.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/setAwayMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/setAwayMode.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/setMgtAutoMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/setMgtAutoMode.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/setRSMgt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/setRSMgt.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/setRSNorthAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/setRSNorthAction.js -------------------------------------------------------------------------------- /third-party-tools/openhab/conf/transform/setRSWestAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/conf/transform/setRSWestAction.js -------------------------------------------------------------------------------- /third-party-tools/openhab/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/docker/docker-compose.yml -------------------------------------------------------------------------------- /third-party-tools/openhab/docker/openhab_dockerrun: -------------------------------------------------------------------------------- 1 | docker-compose up -d 2 | -------------------------------------------------------------------------------- /third-party-tools/openhab/docker/openhab_dockerstop: -------------------------------------------------------------------------------- 1 | docker-compose down 2 | -------------------------------------------------------------------------------- /third-party-tools/openhab/install/crontab/restart_openhab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/install/crontab/restart_openhab -------------------------------------------------------------------------------- /third-party-tools/openhab/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/install/prerequisite -------------------------------------------------------------------------------- /third-party-tools/openhab/install/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/install/readme.txt -------------------------------------------------------------------------------- /third-party-tools/openhab/install/restart_openhab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/openhab/install/restart_openhab -------------------------------------------------------------------------------- /third-party-tools/postgresql/docker/docker-entry-point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/postgresql/docker/docker-entry-point.sh -------------------------------------------------------------------------------- /third-party-tools/postgresql/docker/postgresql_dockerbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/postgresql/docker/postgresql_dockerbuild -------------------------------------------------------------------------------- /third-party-tools/postgresql/docker/postgresql_dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/postgresql/docker/postgresql_dockerfile -------------------------------------------------------------------------------- /third-party-tools/postgresql/docker/postgresql_dockerrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/postgresql/docker/postgresql_dockerrun -------------------------------------------------------------------------------- /third-party-tools/postgresql/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/postgresql/install/prerequisite -------------------------------------------------------------------------------- /third-party-tools/postgresql/install/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/postgresql/install/readme.txt -------------------------------------------------------------------------------- /third-party-tools/tomcat/cmd/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/tomcat/cmd/deploy.sh -------------------------------------------------------------------------------- /third-party-tools/tomcat/docker/docker-entry-point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/tomcat/docker/docker-entry-point.sh -------------------------------------------------------------------------------- /third-party-tools/tomcat/docker/tomcat_dockerbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/tomcat/docker/tomcat_dockerbuild -------------------------------------------------------------------------------- /third-party-tools/tomcat/docker/tomcat_dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/tomcat/docker/tomcat_dockerfile -------------------------------------------------------------------------------- /third-party-tools/tomcat/docker/tomcat_dockerrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/tomcat/docker/tomcat_dockerrun -------------------------------------------------------------------------------- /third-party-tools/tomcat/install/prerequisite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fguiet/AutomationServer/HEAD/third-party-tools/tomcat/install/prerequisite --------------------------------------------------------------------------------