fusion-zauberstab/firmware/include/zauberstab.h
Thomas Schmid 5140512b56 add app framework
add a framework to allow for multiple applications and switching between
them

Signed-off-by: Thomas Schmid <tom@lfence.de>
2022-06-19 14:07:40 +02:00

13 lines
188 B
C

#pragma once
#include "Arduino.h"
#include <FastLED.h>
#define LED_PIN 12
#define NUM_LEDS 144
#define MIC_PIN 15
extern CRGB leds[NUM_LEDS];
int zauberstab_init();
float get_sample();