3 changed files with 41 additions and 0 deletions
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
# ----------------------------------------------------------
|
||||
#
|
||||
#
|
||||
|
||||
|
||||
|
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
# Loth Hacks for fun and profit |
||||
|
||||
## en shell |
||||
|
||||
Voir `sender.sh` |
||||
|
||||
## en C |
||||
|
||||
|
||||
## Et ensuite ? |
||||
|
||||
Une petite bière ? |
||||
|
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash |
||||
|
||||
R_IP="localhost" |
||||
R_PORT="2222" |
||||
|
||||
DEVICE=42 |
||||
|
||||
oscpath=$(printf "/loth/truc/%d" $DEVICE) |
||||
|
||||
oscsend $R_IP $R_PORT $oscpath s "===========" |
||||
|
||||
for foo in $(seq 20 7 80) |
||||
do |
||||
echo " " $foo |
||||
message=$(printf "0x%02x" $foo) |
||||
oscsend $R_IP $R_PORT $oscpath s "$message" |
||||
sleep 1 |
||||
done |
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in new issue