#include <Arduino.h>
#include <stdio.h>
#include "fl/json.h"
#include "fl/math_macros.h"
#include "fl/warn.h"
#include "noisegen.h"
#include "fl/screenmap.h"
#include "fl/slice.h"
#include "fl/ui.h"
#include "FastLED.h"
#include "sensors/pir.h"
#include "timer.h"
Go to the source code of this file.
|
UISlider | brightness ("Brightness", 1, 0, 1) |
|
CLEDController * | controller = nullptr |
|
float | current_brightness = 0 |
|
CRGB | leds [NUM_LEDS] |
|
PirAdvanced | pir (PIN_PIR, PIR_LATCH_MS, PIR_RISING_TIME, PIR_FALLING_TIME) |
|
UISlider | scale ("Scale", 4,.1, 4,.1) |
|
UISlider | timeBitshift ("Time Bitshift", 5, 0, 16, 1) |
|
Timer | timer |
|
UISlider | timescale ("Time Scale", 1,.1, 10,.1) |
|
UICheckbox | useDither ("Use Binary Dither", true) |
|