Compare commits
No commits in common. "8dc0acc382332881161c55b5352b4edcf7af9377" and "f33a0189a5e65b0475a2926d4de8b7a1bc83ccdf" have entirely different histories.
8dc0acc382
...
f33a0189a5
@ -1,29 +1,11 @@
|
|||||||
# Loth Hacks for fun and profit
|
# Loth Hacks for fun and profit
|
||||||
|
|
||||||
Le problème est complxe : comment découvrir l'adresse IP d'un machin
|
|
||||||
qui tourne avec MadMapper ?
|
|
||||||
|
|
||||||
Il y a toute une procédure vu que leur truc utilise __Bonjour__ pour
|
|
||||||
découvrir leurs adresses IP.
|
|
||||||
|
|
||||||
`$ mdns-scan` et ensuite, si on repère indice MINIMAD avec ce
|
|
||||||
que semble être une adresse MAC :
|
|
||||||
|
|
||||||
`/usr/sbin/arp -a | grep b8:27:eb:51:db:32`
|
|
||||||
|
|
||||||
Mais il y a aussi b8:27:eb:be:18:9f ???
|
|
||||||
|
|
||||||
|
|
||||||
## en shell
|
## en shell
|
||||||
|
|
||||||
Les paramètres sont dans `config.sh` pour adresser les madboites
|
Voir `sender.sh`
|
||||||
vidéo et lumière.
|
|
||||||
|
|
||||||
Voir `play.sh`.
|
|
||||||
|
|
||||||
## en C
|
## en C
|
||||||
|
|
||||||
Krkrkr...
|
|
||||||
|
|
||||||
## Et ensuite ?
|
## Et ensuite ?
|
||||||
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
|
|
||||||
# config pour le MapMachin
|
|
||||||
|
|
||||||
IP_VIDEO="10.20.25.6"
|
|
||||||
IP_LIGHT="localhost"
|
|
||||||
|
|
||||||
R_PORT="1111"
|
|
19
Loth/play.sh
19
Loth/play.sh
@ -1,19 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
source config.sh
|
|
||||||
|
|
||||||
function envoyer
|
|
||||||
{
|
|
||||||
msg=$1
|
|
||||||
echo $msg
|
|
||||||
oscsend $IP_VIDEO $R_PORT $msg
|
|
||||||
}
|
|
||||||
|
|
||||||
envoyer "/play"
|
|
||||||
sleep 15
|
|
||||||
envoyer "/pause"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,11 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#
|
R_IP="localhost"
|
||||||
# c'est juste du code d'exemple
|
R_PORT="2222"
|
||||||
#
|
|
||||||
|
|
||||||
R_IP="10.20.31.170"
|
|
||||||
R_PORT="1111"
|
|
||||||
|
|
||||||
DEVICE=42
|
DEVICE=42
|
||||||
|
|
||||||
@ -16,7 +12,7 @@ oscsend $R_IP $R_PORT $oscpath s "==========="
|
|||||||
for foo in $(seq 20 7 80)
|
for foo in $(seq 20 7 80)
|
||||||
do
|
do
|
||||||
echo " " $foo
|
echo " " $foo
|
||||||
message=$(printf " 0x%02x" $foo)
|
message=$(printf "0x%02x" $foo)
|
||||||
oscsend $R_IP $R_PORT $oscpath s "$message"
|
oscsend $R_IP $R_PORT $oscpath s "$message"
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user