]> git.piffa.net Git - sketchbook_andrea/commitdiff
piezo
authorAndrea Manni <andrea@piffa.net>
Thu, 23 Apr 2015 12:40:43 +0000 (14:40 +0200)
committerAndrea Manni <andrea@piffa.net>
Thu, 23 Apr 2015 12:40:43 +0000 (14:40 +0200)
piezo/piezo_1_tonePitchFollower/piezo_1_tonePitchFollower.ino
piezo/piezo_1_tonePitchFollower/piezo_1_tonePitchFollower_ino/piezo_1_tonePitchFollower_ino.ino [deleted file]
piezo/piezo_3_toneMelody/piezo_3_toneMelody.ino

index e74c7b343449a5c366c457ebb127c5887d99dcc4..5ae3099928d38078368e9335485f64da745cfc6a 100644 (file)
@@ -40,8 +40,15 @@ void loop() {
   delay(1);        // delay in between reads for stability
 }
 
+/* Domande:
+1. Modificare l'estensione del range di frequenza del piezo
+tra i valori 20hz e 20.000hz.
 
+2. Modificare lo script in modo che vengano emessi suoni solo quando
+una mano offusca leggermente la luce (il piezo non deve suonare
+se non c'e' un operatore a interagire con la fotoresistenza).
 
+*/
 
 
 
diff --git a/piezo/piezo_1_tonePitchFollower/piezo_1_tonePitchFollower_ino/piezo_1_tonePitchFollower_ino.ino b/piezo/piezo_1_tonePitchFollower/piezo_1_tonePitchFollower_ino/piezo_1_tonePitchFollower_ino.ino
deleted file mode 100644 (file)
index b5e9d24..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
-Pitch following
-
-The input from a photo resistor dictates the pitch of a piezo.
-
- */
-
-// These constants won't change:
-const int sensorPin = A0;    // pin that the sensor is attached to
-const int ledPin = 9;        // pin that the LED is attached to
-int thisPitch ;
-
-// calibration variables:
-int sensorValue = 0;         // the sensor value
-int sensorMin = 1023;        // minimum sensor value
-int sensorMax = 0;           // maximum sensor value
-
-
-void setup() {
-  // turn on LED to signal the start of the calibration period:
-  pinMode(13, OUTPUT);
-  digitalWrite(13, HIGH);
-
-  // calibrate during the first five seconds 
-  while (millis() < 5000) {
-    sensorValue = analogRead(sensorPin);
-
-    // record the maximum sensor value
-    if (sensorValue > sensorMax) {
-      sensorMax = sensorValue;
-    }
-
-    // record the minimum sensor value
-    if (sensorValue < sensorMin) {
-      sensorMin = sensorValue;
-    }
-  }
-
-  // signal the end of the calibration period
-  digitalWrite(13, LOW);
-}
-
-void loop() {
-  // read the sensor:
-  sensorValue = analogRead(sensorPin);
-
-  // apply the calibration to the sensor reading
-  thisPitch = map(sensorValue, sensorMin, sensorMax, 120, 1500);
-  // map the analog input range (in this case, min - max from the photoresistor)
-  // to the output pitch range (120 - 1500Hz)
-  // change the minimum and maximum input numbers below
-  // depending on the range your sensor's giving:
-  
-  // in case the sensor value is outside the range seen during calibration
-  thisPitch = constrain(sensorValue, 120, 1500);
-
-
-  
-  // play the pitch:
-  tone(ledPin, thisPitch, 10); // Tone is built in function
-  delay(1);        // delay in between notes
-}
-
index a5c5701260ebdb300a1e4f0404a447a2c40113c2..c4435d2e8b39398972fe55059b70f07465583db6 100644 (file)
@@ -52,4 +52,9 @@ void loop() {
 
 /* Domande
 1. Codificare Twinkle twinkle little star
+2. Modificare lo script pitch follower (fotoresistenza + piezo) 
+   per suonare una serie di beep durante la fase di calibrazione
+   e un breve motivetto (magari una scala crescente) per confermare
+   l'avvenuta calibrazione.
+3. Codificare (magari utilizzando dei loop) qualche suono di allarme / conferma.
 */