Files
wyze-firmware/SD_ROOT/wz_mini/bin/cmd
T
2022-06-11 20:47:50 -07:00

19 righe
544 B
Bash
Executable File

#!/bin/sh
if [ "$1" == "" ]; then
echo -e "welcome to: cmd <arg>\n"
echo -e "arg can be:"
echo -e "jpeg (will dump raw jpeg to stdout)"
echo -e "video on on1 or off off1"
echo -e "audio on on1 or off off1"
echo -e "move (movable camera only)"
echo -e "waitMotion <timeout>"
echo -e "irled on or off"
echo -e "aplay <file path> <volume 1-100>"
echo -e "curlDebug on or off"
echo -e "mp4write on or off (t31 only)"
echo -e "imp_control <variable> <value> (see readme)"
else
echo "$*" | /opt/wz_mini/bin/busybox nc localhost 4000
fi