keyestudio
void loop()
{
digitalWrite(ledpin,HIGH);// turn on the LED on pin 13
delay(50);// wait for 0.05 second
digitalWrite(ledpin,LOW);// turn off the LED on pin 13
delay(50);// wait for 0.05 second
val=analogRead(potpin);// read the analog value of analog pin 0, and assign it to val
Serial.println(val);// display val's value
}
//////////////////////////////////////////////////////////
Result
The sample program uses the built-in LED connected to pin 13. Each time the device reads a value,
the LED blinks.
Below is the analog value it reads.
When you rotate the potentiometer knob, you can see the displayed value changes. The reading of
analog value is a very common function since most sensors output analog value. After calculation,
we can have the corresponding value we need.
The experiment is now completed, thank you.
*******************************************************************************
www.keyestudio.cc
53
Need help?
Do you have a question about the ARDUINO maker learning kit and is the answer not in the manual?