Advertisement
ldirko

F_lying 244 byte

Nov 29th, 2020 (edited)
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //F_lying 244 byte
  2. //Fastled 16x16 rgb led matrix demo
  3. //Yaroslaw Turbin, 11.12.2020
  4. //https://vk.com/ldirko
  5. //https://www.reddit.com/user/ldirko/
  6.  
  7. //for one tweet codegolf competition
  8. //https://www.reddit.com/r/FastLED/comments/jyly1e/challenge_fastled_sketch_that_fits_entirely_in_a/
  9. //https://twitter.com/skullctf/status/1329474477185445890
  10.  
  11. //look how it look in online emulator:
  12. //https://wokwi.com/arduino/projects/284600490242605581
  13.  
  14. #import<FastLED.h>
  15. #define b(x) sin8(a/x)/16
  16. CRGBArray<256>l;int a,i;void setup(){LEDS.addLeds<WS2812,3,GRB>(l,256);}void loop(){l%=~8;i=1;while(i++<=17)l[lerp8by8(b(3),b(5),i*15)*16+lerp8by8(b(2),b(4),i*15)]+=CHSV(a/9,~0,~0);a+=4;LEDS.show();}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement