Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6bcdea07e2 | ||
|
|
73364decda | ||
|
|
50489dc61a | ||
|
|
285cda3caf | ||
|
|
6100686f5b | ||
|
|
7c7c565a0b | ||
|
|
e5ec446a0d | ||
|
|
e113af429b | ||
|
|
3b45d068a8 | ||
|
|
750ca9c66e | ||
|
|
a58fe0b3e7 | ||
|
|
3001d705f9 | ||
|
|
0d646c3fec |
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,2 +1,12 @@
|
||||
## 0.2 (Easter egg) - 17/04/2017
|
||||
Implementation of socket server for communicate with piGardenWeb
|
||||
Implementation of messages (error, warning, success) passed to piGardenWeb
|
||||
Added many information in json status to be passed to piGardenWeb
|
||||
Added management cron for scheduling open and closed solenoid, for initialize control unit, for rain control
|
||||
|
||||
## 0.1.1 - 24/12/2015 - BugFix
|
||||
Fix the problem for 'av_status' parameter
|
||||
|
||||
## 0.1 - 18/12/2015 - First release
|
||||
First release to piGarden
|
||||
|
||||
|
||||
@@ -14,15 +14,36 @@ JQ="/usr/local/bin/jq"
|
||||
# Percorso curl
|
||||
CURL="/usr/bin/curl"
|
||||
|
||||
# Percors wc
|
||||
# Percorso wc
|
||||
WC="/usr/bin/wc"
|
||||
|
||||
# Percorso gzip
|
||||
GZIP="/bin/gzip"
|
||||
|
||||
# Percors mv
|
||||
# Percorso mv
|
||||
MV="/bin/mv"
|
||||
|
||||
# Percorso di tr
|
||||
TR="/usr/bin/tr"
|
||||
|
||||
# Percorso di cut
|
||||
CUT="/usr/bin/cut"
|
||||
|
||||
# Percorso tcpserver
|
||||
TCPSERVER="/usr/bin/tcpserver"
|
||||
|
||||
# Percorso cron
|
||||
CRONTAB="/usr/bin/crontab"
|
||||
|
||||
# Percorso grep
|
||||
GREP="/bin/grep"
|
||||
|
||||
# Percorsp sed
|
||||
SED="/bin/sed"
|
||||
|
||||
# Percorso readlink
|
||||
READLINK="/bin/readlink"
|
||||
|
||||
# Id gpio usati per simulare il doppio deviatore con cui eseguire l'alimentazione alle elettrovalvole
|
||||
SUPPLY_GPIO_1=2
|
||||
SUPPLY_GPIO_2=3
|
||||
@@ -82,3 +103,7 @@ NOT_IRRIGATE_IF_RAIN_ONLINE=86400
|
||||
# Il parametro è simile a quello precedente, il controllo però anziché essere fatto attingendo a wunderground, viene eseguito direttamente sul sensore se installato. Inserendo il valore zero non viene eseguito nessun controllo.
|
||||
NOT_IRRIGATE_IF_RAIN_SENSOR=86400
|
||||
|
||||
# Indirizzo ip e porta di ascolto del socket server
|
||||
TCPSERVER_IP="127.0.0.1"
|
||||
TCPSERVER_PORT="8084"
|
||||
|
||||
|
||||
908
piGarden.sh
908
piGarden.sh
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user