debug textfeed
This commit is contained in:
parent
51074141f9
commit
1572b865b6
1 changed files with 20 additions and 4 deletions
20
textfeed.sh
20
textfeed.sh
|
@ -1,6 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo -n "Y " \
|
||||
HOST="172.22.239.182"
|
||||
PORT=8888
|
||||
NC=$(which nc)
|
||||
|
||||
DEBUG=0
|
||||
MESSAGE="Z"
|
||||
|
||||
MESSAGE="$MESSAGE "
|
||||
if [ "$DEBUG" = 0 ]; then
|
||||
echo -n "$MESSAGE" \
|
||||
| convert -extract 16x16+43+43 -background lightblue -fill blue -pointsize 21 text:- bmp3:- \
|
||||
| dd bs=1 skip=54 \
|
||||
| nc -u 172.22.239.182 8888
|
||||
| "$NC" -u "$HOST" "$PORT"
|
||||
else
|
||||
echo -n "$MESSAGE" \
|
||||
| convert -extract 16x16+43+43 -background lightblue -fill blue -pointsize 21 text:- bmp3:- \
|
||||
> /tmp/debug.bmp
|
||||
gpicview /tmp/debug.bmp
|
||||
fi
|
||||
|
||||
|
|
Reference in a new issue