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: NeoPixel Control
- - Source Code NOT compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-05-03 10:31:15
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* 200 leds on the string that need to be preety */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Adafruit_NeoPixel.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void updateOutputs();
- /***** DEFINITION OF PWM OUTPUT PINS *****/
- const uint8_t Led_ws2812b_PIN_D4 = 4;
- /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
- uint8_t Led_ws2812b_PIN_D4_rawData = 0;
- /***** DEFINITION OF OUTPUT PHYSICAL VARIABLES *****/
- Adafruit_NeoPixel pixels = Adafruit_NeoPixel(200, Led_ws2812b_PIN_D4, NEO_GRB + NEO_KHZ800);
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(Led_ws2812b_PIN_D4, OUTPUT);
- pixels.begin(); // Initialize NeoPixel strip
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- updateOutputs(); // Refresh output data
- }
- void updateOutputs()
- {
- // Update NeoPixel strip with the raw data
- for (int i = 0; i < pixels.numPixels(); i++) {
- pixels.setPixelColor(i, Led_ws2812b_PIN_D4_rawData, 0, 0); // Set color based on raw data
- }
- pixels.show(); // Display the updated NeoPixel strip
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement