Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: COT1
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-10-29 16:17:10
- - Source Code generated by: Shadrack
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Increase brightness of led depending on */
- /* potentiometer tuning */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF ANALOG INPUT PINS *****/
- const uint8_t Potent_Potentiometer_Vout_PIN_A0 = A0;
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t Led_LED_PIN_D2 = 2;
- void setup(void)
- {
- // Set the LED pin as an output
- pinMode(Led_LED_PIN_D2, OUTPUT);
- }
- void loop(void)
- {
- // Read the potentiometer value
- int potValue = analogRead(Potent_Potentiometer_Vout_PIN_A0);
- // Map the potentiometer value to the LED brightness range (0-255)
- int brightness = map(potValue, 0, 1023, 0, 255);
- // Set the LED brightness
- analogWrite(Led_LED_PIN_D2, brightness);
- // Delay for a short period of time
- delay(10);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement