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-22 11:58:22
- - Source Code generated by: Shadrack
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Increase intensity of led when potentiometer is */
- /* tuned respectively */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF ANALOG INPUT PINS *****/
- const uint8_t Potent_Potentiometer_Vout_PIN_A0 = A0; // Define analog input pin A0 for potentiometer
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t Led_LED_PIN_D2 = 2; // Define digital output pin D2 for LED
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(Potent_Potentiometer_Vout_PIN_A0, INPUT); // Set A0 pin as input
- pinMode(Led_LED_PIN_D2, OUTPUT); // Set D2 pin as output
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- int potValue = analogRead(Potent_Potentiometer_Vout_PIN_A0); // Read the analog value from the potentiometer
- // Map the potentiometer value to the LED intensity range (0-255)
- int ledIntensity = map(potValue, 0, 1023, 0, 255);
- analogWrite(Led_LED_PIN_D2, ledIntensity); // Set the LED intensity based on the potentiometer value
- delay(10); // Delay for stability
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement