]> git.piffa.net Git - sketchbook_andrea/blobdiff - basic/analog_input/photo_3_serial/photo_3_serial.ino
analog cleanup
[sketchbook_andrea] / basic / analog_input / photo_3_serial / photo_3_serial.ino
index 3b0a96d754d7db11a0085b687660bd4fd769bad1..22c070f72bfeba4d662661333fb739274ad84686 100644 (file)
  in base alla luminosita' rilevata.
  
  Schema: http://lab.piffa.net/schemi/photoresistor_led.png
+ Guida:  https://learn.adafruit.com/photocells/using-a-photocell
  */
 
-int sensorPin = A0;    // select the input pin for the potentiometer
-int ledPin = 13;      // select the pin for the LED
+int sensorPin = A0;   // select the input pin for the potentiometer
+int ledPin = 3;      // select the pin for the LED
 int sensorValue = 0;  // variable to store the value coming from the sensor
 
 void setup() {
@@ -47,7 +48,8 @@ void loop() {
 /* domande:
  1. qual'e' il valore minimo rilevato?
  2. quale il massimo?
- 3. Come adattare la risoluzione dell'attuatore alla sensibilita' del sensore?
+ 3. Modificare lo sketch in modo che modifichi la luminosita' di un LED 
+via PWM tramite il valore letto dal sensore. (vedi esercizio sucessivo)
  */