forgot to commit: skeleton refactor + dts makefile
This commit is contained in:
parent
d1d2f1af54
commit
310de3ca2a
45 changed files with 12 additions and 1 deletions
22
skeleton/TF2/.system/rg35xx/paks/MinUI.pak/batmon.sh
Executable file
22
skeleton/TF2/.system/rg35xx/paks/MinUI.pak/batmon.sh
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
touch /mnt/sdcard/batmon.txt
|
||||
while :; do
|
||||
C=`cat /sys/class/power_supply/battery/capacity`
|
||||
V=`cat /sys/class/power_supply/battery/voltage_now`
|
||||
M=$(($V/1000))
|
||||
M=$(($M-3300))
|
||||
M=$(($M/8))
|
||||
|
||||
if [ $M -gt 80 ]; then M=100;
|
||||
if [ $M -gt 60 ]; then M=80;
|
||||
elif [ $M -gt 40 ]; then M=60;
|
||||
elif [ $M -gt 20 ]; then M=40;
|
||||
elif [ $M -gt 10 ]; then M=20;
|
||||
else M=10; fi
|
||||
|
||||
N=`date`
|
||||
echo "$C ($M) $V $N" >> /mnt/sdcard/batmon.txt
|
||||
sync
|
||||
sleep 5
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue