summaryrefslogtreecommitdiffstats
path: root/prometheus/usr/local/bin/vent
diff options
context:
space:
mode:
Diffstat (limited to 'prometheus/usr/local/bin/vent')
-rwxr-xr-xprometheus/usr/local/bin/vent17
1 files changed, 17 insertions, 0 deletions
diff --git a/prometheus/usr/local/bin/vent b/prometheus/usr/local/bin/vent
new file mode 100755
index 0000000..28e5ad4
--- /dev/null
+++ b/prometheus/usr/local/bin/vent
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+case "$1" in
+ open)
+ mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER2 -m 1
+ sleep 20
+ mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER2 -m 0
+ ;;
+ close)
+ mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER1 -m 1
+ sleep 20
+ mosquitto_pub -h 10.32.135.1 -t cmnd/vent/POWER1 -m 0
+ ;;
+ *)
+ echo unknown command
+ ;;
+esac