Recall & Review
beginner Click to reveal answer
What is an analog input in Arduino?
An analog input reads continuous signals from sensors, like temperature or light, that vary smoothly instead of just ON or OFF.
beginner Click to reveal answer
Why can't digital inputs replace analog inputs for some sensors?
Digital inputs only detect ON or OFF (1 or 0), but many sensors give a range of values. Analog inputs capture these varying signals.
intermediate Click to reveal answer
How does Arduino convert analog signals to digital values?
Arduino uses an Analog-to-Digital Converter (ADC) to change continuous analog signals into numbers between 0 and 1023.
beginner Click to reveal answer
Give an example of a sensor that needs analog input.
A temperature sensor like an LM35 outputs a voltage that changes smoothly with temperature, so Arduino reads it as an analog input.
beginner Click to reveal answer
What happens if you connect an analog sensor to a digital input pin?
The sensor's varying signal will be read as just ON or OFF, losing all the detailed information about the sensor's value.
What does an analog input on Arduino measure?
✗ Incorrect
Analog inputs measure a range of values, not just ON or OFF.
What is the role of ADC in Arduino?
✗ Incorrect
ADC changes continuous analog signals into digital numbers Arduino can read.
Which sensor output requires analog input?
✗ Incorrect
Sensors with smoothly changing voltage need analog input to capture the range.
What happens if you use a digital pin for an analog sensor?
✗ Incorrect
Digital pins read only ON or OFF, so detailed analog data is lost.
Why do some sensors need analog input instead of digital?
✗ Incorrect
Sensors with outputs that vary smoothly need analog inputs to capture all values.
Explain why analog input is important when working with sensors in Arduino.
Think about how sensors like temperature or light sensors send information.
You got /4 concepts.
Describe what happens if you connect an analog sensor to a digital input pin on Arduino.
Consider how digital pins interpret signals compared to analog pins.
You got /3 concepts.
