2019-04-18 16:32:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-02-13 14:25:57 +01:00
|
|
|
MQTTSERVER=$1
|
|
|
|
MQTTPREFIX=$2
|
2019-04-18 16:32:35 +02:00
|
|
|
|
|
|
|
FLASHTOOL=./tools/tcpFlash.py
|
|
|
|
|
2021-02-13 14:25:57 +01:00
|
|
|
UPGRADEPREP=/tmp/upgradeCMD4clock.txt
|
|
|
|
|
2019-04-18 16:32:35 +02:00
|
|
|
if [ ! -f $FLASHTOOL ]; then
|
|
|
|
echo "Execute the script in root folder of the project"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2021-02-13 14:25:57 +01:00
|
|
|
if [[ "$MQTTPREFIX" == "" ]] || [[ "$MQTTSERVER" == "" ]]; then
|
|
|
|
echo "MQTTSERVER: ip address to mqtt server"
|
|
|
|
echo "MQTTPREFIX: configured prefex in MQTT of ESP required"
|
2019-04-18 16:32:35 +02:00
|
|
|
echo "usage:"
|
2021-02-13 14:25:57 +01:00
|
|
|
echo "$0 <MQTTSERVER> <MQTTPREFIX>"
|
|
|
|
echo "$0 192.168.0.2 basetopic"
|
2019-04-18 16:32:35 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# check the connection
|
2021-02-13 14:25:57 +01:00
|
|
|
echo "Searching $MQTTPREFIX ..."
|
|
|
|
mosquitto_sub -h $MQTTSERVER -t "$MQTTPREFIX/#" -C 1 -v
|
2019-04-18 16:32:35 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
2021-02-13 14:25:57 +01:00
|
|
|
echo "Entered Wordclock address: $MQTTPREFIX on $MQTTSERVER is NOT online"
|
2019-04-18 16:32:35 +02:00
|
|
|
exit 2
|
|
|
|
fi
|
2021-02-13 14:25:57 +01:00
|
|
|
echo "Activate Telnet server"
|
|
|
|
mosquitto_pub -h $MQTTSERVER -t "$MQTTPREFIX/cmd/telnet" -m "a"
|
|
|
|
TELNETIP=$(mosquitto_sub -h $MQTTSERVER -t "$MQTTPREFIX/telnet" -C 1)
|
|
|
|
echo "Upgrading $MQTTPREFIX via telenet on $TELNETIP"
|
2019-04-18 16:32:35 +02:00
|
|
|
|
2021-02-13 14:25:57 +01:00
|
|
|
echo "stopWordclock()" > $UPGRADEPREP
|
|
|
|
echo "uart.write(0, tostring(node.heap())" >> $UPGRADEPREP
|
|
|
|
echo "c = string.char(0,0,128)" >> $UPGRADEPREP
|
|
|
|
echo "w = string.char(0,0,0)" >> $UPGRADEPREP
|
|
|
|
echo "ws2812.write(w:rep(4) .. c .. w:rep(15) .. c .. w:rep(9) .. c .. w:rep(30) .. c .. w:rep(41) .. c )" >> $UPGRADEPREP
|
|
|
|
$FLASHTOOL -f $UPGRADEPREP -t $TELNETIP -v
|
2019-04-18 19:31:48 +02:00
|
|
|
|
2021-02-13 14:25:57 +01:00
|
|
|
exit 2
|
2019-04-18 16:32:35 +02:00
|
|
|
FILES="displayword.lua main.lua timecore.lua webpage.html webserver.lua wordclock.lua init.lua"
|
|
|
|
|
|
|
|
echo "Start Flasing ..."
|
|
|
|
for f in $FILES; do
|
|
|
|
if [ ! -f $f ]; then
|
|
|
|
echo "Cannot find $f"
|
|
|
|
echo "place the terminal into the folder where the lua files are present"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "------------- $f ------------"
|
2021-02-13 14:25:57 +01:00
|
|
|
$FLASHTOOL -t $TELNETIP -f $f
|
2019-04-18 16:32:35 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "STOOOOP"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2019-04-18 16:41:04 +02:00
|
|
|
echo "TODO: Reboot the ESP"
|
2021-02-13 14:25:57 +01:00
|
|
|
#echo "node.restart()" | nc $TELNETIP 23
|
2019-04-18 16:32:35 +02:00
|
|
|
|
|
|
|
exit 0
|