Advertisement
ldirko

fibonacci fire 195 byte

Jan 12th, 2021
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //fibonacci fire 195 byte
  2. //Fastled rgb led demo
  3. //Yaroslaw Turbin, 10.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/287501509626692108
  13.  
  14. #import<FastLED.h>
  15. CRGB l[256];byte j;void setup(){LEDS.addLeds<WS2812,3,GRB>(l,256);}void loop(){l[j]=ColorFromPalette(HeatColors_p,qsub8(inoise8(j*10-millis()/6)+20,j),~0);if(!--j)LEDS.show();}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement