// Exercise 01 - Connecting a Potentiometer to an Arduino
// Objective: Create a sketch to continually read the value on A0 and display it through the Serial interface.
// Resources:
// read analog input: https://www.arduino.cc/reference/en/language/functions/analog-io/analogread/
// serial interface: https://www.arduino.cc/reference/en/language/functions/communication/serial/println/
// arduino cheat sheet: https://dlnmh9ip6v2uc.cloudfront.net/learn/materials/8/Arduino_Cheat_Sheet.pdf
void setup() {
// Initialization code:
// Set up the necessary configurations.
}
void loop() {
// Main code:
// Read the analog value from the potentiometer and output it to the monitor.
// You can visualize the outcome using the Serial Monitor or the Plotter tool
// located in the upper right corner of the Arduino IDE.
}