tasmota-charge: fixes

This commit is contained in:
mwiegand 2022-04-21 23:32:42 +02:00
parent f2439dcf66
commit f5ab497bff
3 changed files with 21 additions and 9 deletions

View file

@ -1,14 +1,16 @@
# Phone # Phone
- install termux from Play Store - install termux from F-Droid
- install termux::api from Play Store - install termux::api from F-Droid
- open termux - open termux
- run `pkg update`
- run `pkg install termux-api openssh` - run `pkg install termux-api openssh`
- run `passwd` and set a password - run `passwd` and set a password
- run `whoami` to get the username - run `whoami` to get the username
- run `sshd` to start ssh server - run `sshd` to start ssh server
- run `su - tasmota-charge -c 'ssh-copy-id -p 8022 u0_a233@10.0.0.175'` on server node
- acquire wakelock for the termux session in notifications - acquire wakelock for the termux session in notifications
# Server # Server
- you can run something like `su - tasmota-charge -c 'ssh-copy-id -p 8022 u0_q194@10.0.0.166'` - you can run something like `su - tasmota-charge -c 'ssh -p 8022 u0_a233@10.0.0.175'`

View file

@ -6,16 +6,26 @@ PLUG_IP=${plug_ip}
MIN=${min} MIN=${min}
MAX=${max} MAX=${max}
AKKU=$(ssh -p 8022 $PHONE_USER@$PHONE_IP termux-battery-status | jq -r .percentage) if ! ssh -o 'StrictHostKeyChecking no' -p 8022 $PHONE_USER@$PHONE_IP 'true'
echo "akku is at $AKKU%" then
echo "ERROR: cant connect to phone via ssh"
exit 51
fi
AKKU=$(ssh -o 'StrictHostKeyChecking no' -p 8022 $PHONE_USER@$PHONE_IP termux-battery-status | jq -r .percentage)
echo "akku is at $AKKU% ($MIN%/$MAX%)"
if ! curl --head --silent --fail "http://$PLUG_IP/cm?cmnd=Power" --output /dev/null
then
echo "ERROR: cant connect to plug via http"
exit 52
fi
PLUG_IS=$(curl -s "http://$PLUG_IP/cm?cmnd=Power" | jq -r .POWER) PLUG_IS=$(curl -s "http://$PLUG_IP/cm?cmnd=Power" | jq -r .POWER)
echo "plug is $PLUG_IS" echo "plug is $PLUG_IS"
if [[ $AKKU < $MIN ]] && [[ $PLUG_IS = OFF ]] if [[ $AKKU -lt $MIN ]] && [[ $PLUG_IS = OFF ]]
then then
TURN_PLUG=ON TURN_PLUG=ON
elif [[ $AKKU > $MAX ]] && [[ $PLUG_IS = ON ]] elif [[ $AKKU -gt $MAX ]] && [[ $PLUG_IS = ON ]]
then then
TURN_PLUG=OFF TURN_PLUG=OFF
else else

View file

@ -105,8 +105,8 @@
}, },
'tasmota-charge': { 'tasmota-charge': {
'phone': { 'phone': {
'ip': '10.0.0.166', 'ip': '10.0.0.175',
'user': 'u0_q194', 'user': 'u0_a233',
'password': 'november', 'password': 'november',
}, },
'plug': { 'plug': {