tasmota-charge: fixes
This commit is contained in:
parent
f2439dcf66
commit
f5ab497bff
3 changed files with 21 additions and 9 deletions
|
@ -1,14 +1,16 @@
|
|||
# Phone
|
||||
|
||||
- install termux from Play Store
|
||||
- install termux::api from Play Store
|
||||
- install termux from F-Droid
|
||||
- install termux::api from F-Droid
|
||||
- open termux
|
||||
- run `pkg update`
|
||||
- run `pkg install termux-api openssh`
|
||||
- run `passwd` and set a password
|
||||
- run `whoami` to get the username
|
||||
- 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
|
||||
|
||||
# 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'`
|
||||
|
|
|
@ -6,16 +6,26 @@ PLUG_IP=${plug_ip}
|
|||
MIN=${min}
|
||||
MAX=${max}
|
||||
|
||||
AKKU=$(ssh -p 8022 $PHONE_USER@$PHONE_IP termux-battery-status | jq -r .percentage)
|
||||
echo "akku is at $AKKU%"
|
||||
if ! ssh -o 'StrictHostKeyChecking no' -p 8022 $PHONE_USER@$PHONE_IP 'true'
|
||||
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)
|
||||
echo "plug is $PLUG_IS"
|
||||
|
||||
if [[ $AKKU < $MIN ]] && [[ $PLUG_IS = OFF ]]
|
||||
if [[ $AKKU -lt $MIN ]] && [[ $PLUG_IS = OFF ]]
|
||||
then
|
||||
TURN_PLUG=ON
|
||||
elif [[ $AKKU > $MAX ]] && [[ $PLUG_IS = ON ]]
|
||||
elif [[ $AKKU -gt $MAX ]] && [[ $PLUG_IS = ON ]]
|
||||
then
|
||||
TURN_PLUG=OFF
|
||||
else
|
||||
|
|
|
@ -105,8 +105,8 @@
|
|||
},
|
||||
'tasmota-charge': {
|
||||
'phone': {
|
||||
'ip': '10.0.0.166',
|
||||
'user': 'u0_q194',
|
||||
'ip': '10.0.0.175',
|
||||
'user': 'u0_a233',
|
||||
'password': 'november',
|
||||
},
|
||||
'plug': {
|
||||
|
|
Loading…
Reference in a new issue