/* Use the turn knob to adjust the brightness of one of the multicolor LED colors*/
void setup() {
pinMode(A0,INPUT); //turn knob
pinMode(9,OUTPUT); //LED
}
void loop() {
//analogWrite works on LED pins 9,10,and 11 on Bumblebee
analogWrite(9,analogRead(A0)/4); //Use the reading from the knob divided by 4, for the LED brightness
}
// (c) 2024 Let's Start Coding. License: www.letsstartcoding.com/bsdlicense
It looks like your computer isn't set up to code yet.
Success!
Compile errors:
Serial port monitor:
Input:
Walkthrough Video
Watch the video for a line-by-line explanation of how the example program works. Then you'll be ready to make some changes of your own!
Challenges
Can you complete the challenges? Change the code in your code editor above. Upload your code to see the effect when you're finished. Complete a challenge? Check it off the list!