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 Initialization
- - Source Code NOT compiled for: ESP32 DevKit V1
- - Source Code created on: 2025-11-22 15:43:40
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* I want to be compatible with the sinric pro . */
- /* color changing . modes . temperature . dim */
- /****** END SYSTEM REQUIREMENTS *****/
- /* START CODE */
- /****** DEFINITION OF LIBRARIES *****/
- #include <FastLED.h> //https://github.com/FastLED/FastLED
- #include <=PatternsfromAdafruitare:<ul><li>SCANNER</li><li>STRIPES</li><li>DELAY</li><li>PROCESS_SELECTIVE</li><li>FADE_SELECTIVE</li></ul>TheoriginalSCANNERpatternisextendedandincludestheCYLONaswellastheROCKETorFALLING_STARpattern.ThemoreversatileSTRIPESpatternreplacestheoldTHEATER_CHASEone.<br/><br/>NeoPixel-Matrixpatternare:<ul><li>MOVING_PICTURE</li><li>MOVE</li><li>TICKER</li><li>FIRE</li><li>SNAKE</li></ul>TheSNAKEpatternisanimplementationoftheSnakegameandcanbeplayedwith2or4buttonsattachedtotheArduino.<br/>TheSnakeAutorunexamplewillstart<b>yourowncodetosolvetheSnakegame</b>providedinthefunctiongetNextSnakeDirection().<br/><br/>YouTubedemosareavailableunder<ahref="https://github.com/ArminJo/NeoPatterns">https://github.com/ArminJo/NeoPatterns</a>.<br/><br/>Includesan<b>OpenLedRace</b>examplefor2players.<br/><br/><b>New:</b>NewpatternFLASH.Renamed> //https://github.com/ArminJo/NeoPatterns
- #include <extendedandaddedfunctions.<br/><ahref="https://github.com/ArminJo/NeoPatterns#revision-history">RevisionHistory</a><br/>> //https://github.com/ArminJo/NeoPatterns
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t LEDStrip_WS2812B_DIN_PIN_D4 = 4;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(LEDStrip_WS2812B_DIN_PIN_D4, OUTPUT);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment