Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. CHSV startcolor(100, 255, 255);
  2.  
  3. typedef struct {
  4.  
  5. int currentBrightness = 0;
  6.  
  7. int targetBrightness = 0;
  8.  
  9. int updown;
  10.  
  11. CHSV color = startcolor;
  12.  
  13. } blinkblink, *pblinkblink;
  14.  
  15. CRGB leds[NUM_LEDS];
  16.  
  17. for (int i = 0; i < sizeof(myLeds); i++) {
  18.  
  19. leds[i] = myLeds[i].color;
  20.  
  21. }
  22.  
  23. FastLED.show();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement