├── GPIO_Pi.c ├── GPIO_Pi.h ├── LICENSE.md ├── Makefile ├── README.md ├── config.c ├── config.h ├── demo ├── index.html ├── index.html.firstload.json └── index.html.read.json ├── extras ├── CalendarUI.PNG ├── Homekit.PNG ├── IMG_0236.png ├── IMG_0237.png ├── IMG_0238.png ├── IMG_0239.png ├── IMG_0243.jpg ├── IMG_0246.png ├── IMG_0247.png ├── IMG_0248.png ├── MainUI.PNG ├── example valves.png ├── homekit2mqtt.json ├── sprinklerRainDelay.sh ├── sprinklerRainProbability.sh ├── sprinklerd.png └── sprinklerd_48.png ├── hassio.c ├── hassio.h ├── json_messages.c ├── json_messages.h ├── minIni ├── minGlue.h ├── minIni.c └── minIni.h ├── mongoose.c ├── mongoose.h ├── net_services.c ├── net_services.h ├── release ├── gpio ├── gpio_monitor ├── install-new.sh ├── install.sh ├── sprinklerd ├── sprinklerd.conf ├── sprinklerd.defaults ├── sprinklerd.service └── sprinklerd.service.avahi ├── sd_GPIO.c.old ├── sd_GPIO.h.old ├── sd_cron.c ├── sd_cron.h ├── sprinkler.c ├── sprinkler.cron ├── tmp ├── utils.c ├── utils.h ├── version.h ├── web └── index.html ├── zone_ctrl.c └── zone_ctrl.h /GPIO_Pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/GPIO_Pi.c -------------------------------------------------------------------------------- /GPIO_Pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/GPIO_Pi.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/README.md -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/config.h -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.html.firstload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/demo/index.html.firstload.json -------------------------------------------------------------------------------- /demo/index.html.read.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/demo/index.html.read.json -------------------------------------------------------------------------------- /extras/CalendarUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/CalendarUI.PNG -------------------------------------------------------------------------------- /extras/Homekit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/Homekit.PNG -------------------------------------------------------------------------------- /extras/IMG_0236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0236.png -------------------------------------------------------------------------------- /extras/IMG_0237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0237.png -------------------------------------------------------------------------------- /extras/IMG_0238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0238.png -------------------------------------------------------------------------------- /extras/IMG_0239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0239.png -------------------------------------------------------------------------------- /extras/IMG_0243.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0243.jpg -------------------------------------------------------------------------------- /extras/IMG_0246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0246.png -------------------------------------------------------------------------------- /extras/IMG_0247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0247.png -------------------------------------------------------------------------------- /extras/IMG_0248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/IMG_0248.png -------------------------------------------------------------------------------- /extras/MainUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/MainUI.PNG -------------------------------------------------------------------------------- /extras/example valves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/example valves.png -------------------------------------------------------------------------------- /extras/homekit2mqtt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/homekit2mqtt.json -------------------------------------------------------------------------------- /extras/sprinklerRainDelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/sprinklerRainDelay.sh -------------------------------------------------------------------------------- /extras/sprinklerRainProbability.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/sprinklerRainProbability.sh -------------------------------------------------------------------------------- /extras/sprinklerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/sprinklerd.png -------------------------------------------------------------------------------- /extras/sprinklerd_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/extras/sprinklerd_48.png -------------------------------------------------------------------------------- /hassio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/hassio.c -------------------------------------------------------------------------------- /hassio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/hassio.h -------------------------------------------------------------------------------- /json_messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/json_messages.c -------------------------------------------------------------------------------- /json_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/json_messages.h -------------------------------------------------------------------------------- /minIni/minGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/minIni/minGlue.h -------------------------------------------------------------------------------- /minIni/minIni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/minIni/minIni.c -------------------------------------------------------------------------------- /minIni/minIni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/minIni/minIni.h -------------------------------------------------------------------------------- /mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/mongoose.c -------------------------------------------------------------------------------- /mongoose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/mongoose.h -------------------------------------------------------------------------------- /net_services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/net_services.c -------------------------------------------------------------------------------- /net_services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/net_services.h -------------------------------------------------------------------------------- /release/gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/gpio -------------------------------------------------------------------------------- /release/gpio_monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/gpio_monitor -------------------------------------------------------------------------------- /release/install-new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/install-new.sh -------------------------------------------------------------------------------- /release/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/install.sh -------------------------------------------------------------------------------- /release/sprinklerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/sprinklerd -------------------------------------------------------------------------------- /release/sprinklerd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/sprinklerd.conf -------------------------------------------------------------------------------- /release/sprinklerd.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/sprinklerd.defaults -------------------------------------------------------------------------------- /release/sprinklerd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/sprinklerd.service -------------------------------------------------------------------------------- /release/sprinklerd.service.avahi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/release/sprinklerd.service.avahi -------------------------------------------------------------------------------- /sd_GPIO.c.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/sd_GPIO.c.old -------------------------------------------------------------------------------- /sd_GPIO.h.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/sd_GPIO.h.old -------------------------------------------------------------------------------- /sd_cron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/sd_cron.c -------------------------------------------------------------------------------- /sd_cron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/sd_cron.h -------------------------------------------------------------------------------- /sprinkler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/sprinkler.c -------------------------------------------------------------------------------- /sprinkler.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/sprinkler.cron -------------------------------------------------------------------------------- /tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/utils.h -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/version.h -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/web/index.html -------------------------------------------------------------------------------- /zone_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/zone_ctrl.c -------------------------------------------------------------------------------- /zone_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfeakes/SprinklerD/HEAD/zone_ctrl.h --------------------------------------------------------------------------------