#include <FastLED.h>
uint8_t brightness_wifi = 255;
//App brightness value (0-255) - This can be changed by the app
uint8_t speed_wifi = 1;
//App speed value (0: low, 1: medium, 2: high) - This can be changed in the app
uint8_t features_wifi = 1;
//App speed value (0: subtle, 1: moderate, 2: intense) - This can be changed in the app
// These settings below should be variable, these are for 18x16 (x-Y) setup.
uint8_t X_BULBS = 6;
uint8_t Y_BULBS = 8;
#define NUM_LEDS 48
#define MAX_LEDS 288
// Fastled defintions
#define LED_PIN 9
CRGB leds_plus_safety_pixel[ MAX_LEDS + 1];
CRGB* const leds(leds_plus_safety_pixel);
#include "mapping.h"
#include "SFX.h"
#include "GenerateMap.h"
#include "E1.h" //Effect 1
#include "c_Sparkle.h"
#include "c_Solid.h"
#include "k_Chess.h"
#include "p_Tunnel.h"
#include "p_Tunnel2.h"
#include "c_Shimmer.h"
#include "c_Fire.h"
#include "p_Radar.h"
#include "p_Test.h"
#include "patterns.h"
uint8_t brightness = 200;
void setup(){
FastLED.addLeds<WS2811, LED_PIN, GRB>(leds, NUM_LEDS); // Add our LED strip to the FastLED library
Serial.begin(9600);
Serial.println("Serial monitor working!");
patterns[0].pattern(100,0);
FastLED.setBrightness(brightness);
FastLED.show();
}
void loop() {
// patterns[0].pattern(100,0);
//FastLED.setBrightness(brightness);
//FastLED.show();
}