Skip to content

Instantly share code, notes, and snippets.

@StefanPetrick
StefanPetrick / noise_noise.ino
Last active December 18, 2023 18:22
The complete code for the noise controlled noise.
/*
A FastLED matrix example:
A simplex noise field fully modulated and controlled by itself
written by
Stefan Petrick 2017
Do with it whatever you like and show your results to the FastLED community
https://plus.google.com/communities/109127054924227823508
*/
#include "FastLED.h"
@kriegsman
kriegsman / XYShades
Last active May 3, 2020 14:08
XY matrix functions for RGB Shades Kickstarter
#include <FastLED.h>
// Use Version 2.1 or later https://github.com/FastLED/FastLED/tree/FastLED2.1
// ZIP file https://github.com/FastLED/FastLED/archive/FastLED2.1.zip
// RGB Shades data output to LEDs on pin 5
#define LED_PIN 5
// RGB Shades color order
#define COLOR_ORDER GRB
#define CHIPSET WS2811