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: LED Control
- - Source Code NOT compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-05-03 11:37:32
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* PWM CONTOLL */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void updateOutputs(void); // Added function prototype for updateOutputs
- /***** DEFINITION OF ANALOG INPUT PINS *****/
- const uint8_t pot_Potentiometer_Vout_PIN_D4 = D4;
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t isik_LED_PIN_D13 = 13;
- /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
- /***** used to store raw data *****/
- bool isik_LED_PIN_D13_rawData = 0;
- /***** DEFINITION OF OUTPUT PHYSICAL VARIABLES *****/
- /***** used to store data after characteristic curve transformation *****/
- float isik_LED_PIN_D13_phyData = 0.0;
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(pot_Potentiometer_Vout_PIN_D4, INPUT);
- pinMode(isik_LED_PIN_D13, OUTPUT);
- // PWM CONTROL
- // Set PWM frequency for LED control
- ledcSetup(0, 5000, 8); // Configure PWM channel at 5 kHz with 8-bit resolution
- ledcAttachPin(isik_LED_PIN_D13, 0); // Attach PWM channel to LED pin
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- updateOutputs(); // Refresh output data
- }
- void updateOutputs()
- {
- // Update LED brightness using PWM
- ledcWrite(0, isik_LED_PIN_D13_rawData); // Set PWM duty cycle based on raw data
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement