Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
unsigned int getAnalogValue(void)
{
  unsigned int total;
  unsigned char ii;
  
  for (ii=0;ii<samplesPerRead;ii++)
  {
    Serial.println(analogRead(0));
    total+= analogRead(0);
    delay(50);
  }
  
  total = total / samplesPerRead;
  
  return total;
}


/*
// Output
299
298
299
298
298
299
298
298
299
298

// Returns
Temp: 426
*/