X-Git-Url: http://git.piffa.net/web?p=sketchbook_andrea;a=blobdiff_plain;f=basic%2Fanalog_input%2Fphoto_6_smooth%2Fphoto_6_smooth.ino;h=60913fe2414f3bdb931ce91f6a603f3de62ac5cf;hp=1aaa6685e4ca81b2d44ca7f7d8b12ca5a20b21c2;hb=3186569da93182e73fa3ea99beb8c9ea53a6ba8a;hpb=7235b2bd6847d70a486c4941ed3d4fc3186d02de diff --git a/basic/analog_input/photo_6_smooth/photo_6_smooth.ino b/basic/analog_input/photo_6_smooth/photo_6_smooth.ino index 1aaa668..60913fe 100644 --- a/basic/analog_input/photo_6_smooth/photo_6_smooth.ino +++ b/basic/analog_input/photo_6_smooth/photo_6_smooth.ino @@ -2,13 +2,16 @@ Smoothing Legge 10 valori dal sensore e ritorna il valore medio tra questi. + + Schema: https://learn.adafruit.com/assets/460 + */ // 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 +const int ledPin = 11; // pin that the LED is attached to // variables: int sensorValue = 0; // the sensor value @@ -19,6 +22,7 @@ int sensorMax = 0; // maximum sensor value void setup() { // turn on LED to signal the start of the calibration period: pinMode(13, OUTPUT); + pinMode(ledPin, OUTPUT); digitalWrite(13, HIGH); // calibrate during the first five seconds