X-Git-Url: http://git.piffa.net/web?a=blobdiff_plain;f=basic%2Fanalog_input%2Fphoto_6_smooth%2Fphoto_6_smooth.ino;h=60913fe2414f3bdb931ce91f6a603f3de62ac5cf;hb=fd843739e632cc71f079bdf3c94d9d5f8e9a3b13;hp=1aaa6685e4ca81b2d44ca7f7d8b12ca5a20b21c2;hpb=6dc7b8f2ea8b8f73f4f98571028291d7469ef3ab;p=sketchbook_andrea 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