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
|
||||
|
||||
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
|
||||
|
||||
Les paramètres sont dans `config.sh` pour adresser les madboites
|
||||
vidéo et lumière.
|
||||
|
||||
Voir `play.sh`.
|
||||
Voir `sender.sh`
|
||||
|
||||
## en C
|
||||
|
||||
Krkrkr...
|
||||
|
||||
## 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
|
||||
|
||||
#
|
||||
# c'est juste du code d'exemple
|
||||
#
|
||||
|
||||
R_IP="10.20.31.170"
|
||||
R_PORT="1111"
|
||||
R_IP="localhost"
|
||||
R_PORT="2222"
|
||||
|
||||
DEVICE=42
|
||||
|
||||
@ -16,7 +12,7 @@ oscsend $R_IP $R_PORT $oscpath s "==========="
|
||||
for foo in $(seq 20 7 80)
|
||||
do
|
||||
echo " " $foo
|
||||
message=$(printf " 0x%02x" $foo)
|
||||
message=$(printf "0x%02x" $foo)
|
||||
oscsend $R_IP $R_PORT $oscpath s "$message"
|
||||
sleep 1
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user