Bonjour, j'ai pour projet de réaliser une installation où des détecteurs de mouvements déclencherai des son via arduino et processing, la partie processing ne me fait pas peur mais je débute sur arduino et je ne comprend pas comment récupérer les informations de l'arduino, j'ai ce code:
/*
* PIR sensor tester
*/
int inputPin = 2; // choose the input pin (for PIR sensor)
int pirState = LOW; // we start, assuming no motion detected
int val = 0; // variable for reading the pin status
void setup() {
pinMode(inputPin, INPUT); // declare sensor as input
Serial.begin(9600);
}
void loop(){
val = digitalRead(inputPin); // read input value
if (val == HIGH) { // check if the input is HIGH
if (pirState == LOW) {
// we have just turned on
Serial.println("Motion detected!");
// We only want to print on the output change, not state
pirState = HIGH;
}
} else {
if (pirState == HIGH){
// we have just turned of
Serial.println("Motion ended!");
// We only want to print on the output change, not state
pirState = LOW;
}
}
}
mais comment lancé un fichier .wav a partir de cela via processing
excuser moi ci ce n'est pas claire mais j'ai bien besoin de votre aide merci !!
Hors ligne
Il faut les faire communiquer,
voici une librairie bien faite pour accéder aux variables d'arduino dans p5.
http://erniejunior.github.io/VSync-for-Processing/
Ou encore en ne codant que p5 avec : http://playground.arduino.cc/Interfacing/Processing
Bon boulot à toi !
Hors ligne
Pages: 1