1
0
mirror of https://github.com/EliasKotlyar/Xiaomi-Dafang-Hacks.git synced 2025-09-09 07:30:57 +02:00

Telegram bot: Option to configure alert type - text/image (#855)

* Update common_functions.sh

* Update telegram-bot-daemon.sh

* Update detectionOn.sh
This commit is contained in:
saipsa
2018-12-29 11:01:29 +05:30
committed by jmtatsch
parent e7adb162a2
commit 4014384d7a
3 changed files with 30 additions and 6 deletions

View File

@@ -29,13 +29,27 @@ detectionOff() {
motion_detection off && $TELEGRAM m "Motion detection stopped"
}
textAlerts() {
. /system/sdcard/scripts/common_functions.sh
rewrite_config /system/sdcard/config/telegram.conf telegram_alert_type "text"
$TELEGRAM m "Text alerts on motion detection"
}
imageAlerts() {
. /system/sdcard/scripts/common_functions.sh
rewrite_config /system/sdcard/config/telegram.conf telegram_alert_type "image"
$TELEGRAM m "Image alerts on motion detection"
}
respond() {
case $1 in
/mem) sendMem;;
/shot) sendShot;;
/on) detectionOn;;
/off) detectionOff;;
/help) $TELEGRAM m "######### Bot commands #########\n# /mem - show memory information\n# /shot - take a shot\n# /on - motion detect on\n# /off - motion detect off";;
/textalerts) textAlerts;;
/imagealerts) imageAlerts;;
/help) $TELEGRAM m "######### Bot commands #########\n# /mem - show memory information\n# /shot - take a shot\n# /on - motion detect on\n# /off - motion detect off\n# /textalerts - Text alerts on motion detection\n# /imagealerts - Image alerts on motion detection";;
*) $TELEGRAM m "I can't respond to '$1' command"
esac
}