Advertisement
alseambusher

Untitled

Sep 30th, 2024
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <FastLED.h>
  2.  
  3. #define LED_PIN 7
  4. #define NUM_LEDS 60
  5.  
  6. CRGB leds[NUM_LEDS];
  7.  
  8. FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement