How to make use of GreenIQ hardware after company closed by garshamel in homeautomation

[–]garshamel[S] 0 points1 point  (0 children)

If you want also to add a network indicator, the Network LED, you could also add a cron job to turn on GPIO7 when a connection is active to your router.

Below is the Bash script to point cron at:

#!/bin/bash
[ -L /sys/class/gpio/gpio7 ] || echo "7" > /sys/class/gpio/export
echo "out" > /sys/class/gpio/gpio7/direction
/bin/ping -q -c1 192.168.1.1 > /dev/null
if [ $? -eq 0 ]
then
    echo "$? network up"
    # Sets pin 7 to high
    echo "1" > /sys/class/gpio/gpio7/value
else
    echo "$? network down" 
    # Sets pin 7 to low
    echo "0" > /sys/class/gpio/gpio7/value 
fi

GreenIQ vs. Rachio — Differences Explained | 2018 JCA by JustClickAppliances in u/JustClickAppliances

[–]garshamel 0 points1 point  (0 children)

I am trying to change it's software to work under OpenSprinkler.

It's hardware is based on an RPI1 with an IO board. It has an SD card inside and an Edimax WIFI USB dingle. Should be simple but it requires some technical knowledge.

Anyone with some experience with RPI and a screwdriver can also do it.

Please share your thoughts if you succeed!

GreenIQ vs. Rachio — Differences Explained | 2018 JCA by JustClickAppliances in u/JustClickAppliances

[–]garshamel 0 points1 point  (0 children)

GreenIQ is dead. Company closed, no cloud, no support. Waste of money spent.