![]()
Big hand that could take metal and crush it
![]()
All those objects are fakes that came from a 3D printer
![]()
Radio controlled battleship battle
![]()
Lifesize Mousetrap I saw at burning man a few years ago
![]()
Big hand that could take metal and crush it
![]()
All those objects are fakes that came from a 3D printer
![]()
Radio controlled battleship battle
![]()
Lifesize Mousetrap I saw at burning man a few years ago
# Denon # Mute begin prog = irexec button = MUTE repeat = 1 config = /var/local/scr/denonmute end begin prog = irexec button = Vol+ repeat = 1 config = /var/local/scr/denoncmd MVUP 3 end begin prog = irexec button = Vol- repeat = 1 config = /var/local/scr/denoncmd MVDOWN 3 enddenonmute:
#!/bin/bash
FILE=/var/run/denonmute
test -f $FILE || touch $FILE
# prevent bounces
[ $(( $(date "+%s") - $(stat -c "%Z" $FILE) )) -lt 2 ] && exit
if grep -q MUON $FILE 2>/dev/null; then
CMD=MUOFF
else
CMD=MUON
fi
echo -ne "$CMD\r" | nc -q0 denon 23
echo $CMD > $FILE
denoncmd:
#!/bin/bash
# $0 cmd [repeat]
for i in `seq 1 ${2-1}`
do
echo -ne "$1\r" | nc -q0 denon 23
sleep 0.2
done
exit
And there you go, I can now send volume requests to my mythtv and they get forwarded to my denon over TCP/IP. Pretty cool :)
![]()
All kinds of race prepared cars