Skip to content

Instantly share code, notes, and snippets.

@SONGYEJI
Created October 20, 2016 19:17
Show Gist options
  • Select an option

  • Save SONGYEJI/772789bfa9cea3b2a20b5f62957087b4 to your computer and use it in GitHub Desktop.

Select an option

Save SONGYEJI/772789bfa9cea3b2a20b5f62957087b4 to your computer and use it in GitHub Desktop.
const int numReadings = 10;
int readings[numReadings]; // the readings from the analog input
int readIndex = 0; // the index of the current reading
int total = 0; // the running total
int average = 0; // the average
int LED;
int inputPin = A0;
void setup() {
// initialize serial communication with computer:
pinMode(12,OUTPUT);
Serial.begin(9600);
// initialize all the readings to 0:
for (int thisReading = 0; thisReading < numReadings; thisReading++) {
readings[thisReading] = 0;
}
}
void loop() {
// subtract the last reading:
total = total - readings[readIndex];
// read from the sensor:
readings[readIndex] = analogRead(inputPin);
// add the reading to the total:
total = total + readings[readIndex];
// advance to the next position in the array:
readIndex = readIndex + 1;
// if we're at the end of the array...
if (readIndex >= numReadings) {
// ...wrap around to the beginning:
readIndex = 0;
}
// calculate the average:
average = total / numReadings;
if ( average < 400 ) {
digitalWrite(12, HIGH);
}
else{
digitalWrite(12,LOW);
}
// send it to the computer as ASCII digits
Serial.println(average);
delay(50); // delay in between reads for stability
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment