brightness of an LED using a potentiometer otherwise known as a variable resistor.
A particular reason I enjoy this project is because it allows us to combine analog and digital pins in a unique way. On the Arduino, we have digital pins marked with a sinusoidal wave symbol (∿) and these pins are called Pulse Width Modulation (PWM) pins. The Arduino does not have a built-in digital-to-analog converter (DAC), but it can pulse-width modulate (PWM) a digital signal to achieve some of the functions of an analog output. The function used to output a PWM signal is analogWrite(pin, value). pin is the pin number used for the PWM output. value is a number proportional to the duty cycle of the signal. The PWM on most Arduino boards are 3, 5, 6, 9, 10, and 11.
The circuit is simple and straightforward; we have a potentiometer and and LED connected to the Arduino Uno on pins A0 and 9 respectively. The potentiometer is polarized, holding the component facing you from left to right , the terminals are VCC(Positive), SIGNAL(Output), GND(Negative)
So we build the circuit
(Source: Instructables.com)
Now the Code
const int analogPin = 0;//the analog
input pin attach to
const int ledPin = 9;//the led
attach to
int inputValue = 0;//variable to
store the value coming from sensor
int outputValue = 0;//variable to
store the output value
/******************************************/
void setup()
{
Serial.begin(9600);//set the serial communication
baudrate as 9600
}
/******************************************/
void loop()
{
inputValue = analogRead(analogPin);//read the
value from the potentiometer
Serial.print("Input: "); //print "Input"
Serial.println(inputValue); //print
inputValue
outputValue = map(inputValue, 0, 1023, 0,
255);//Convert from 0-1023 proportional to the number of a number of from 0 to
255
Serial.print("Output: "); //print"Output"
Serial.println(outputValue); //print outputValue
analogWrite(ledPin, outputValue); //turn the LED on depending on the
output value
delay(1000);
We should understand most parts of the code; the comments give a good explanation in case you are a bit confused. The major part we are seeing for the first time is the map(value, fromLow, fromHigh, toLow, toHigh) function. It allows us to map values from 0-1023 to 0-255. The 0-1023 values are what we read (receive) from the analog pin A0 connected to the potentiometer while the 0-255 values are what we write as analogWrite to the digital pin 9. We can use analogWrite with pin 9 because it is a PWM pin. Other PWM pins have been stated as 3, 5, 6, 10, 11.
Once again, I urge you to go a bit further and maybe add another LED or something else. You will learn something new. Ciao.
No comments:
Post a Comment