leddie/firmware/lib/system.h

18 lines
289 B
C

#ifndef _SYSTEM_H
#define _SYSTEM_H
#include "light_ws2812.h"
#include "mma8653.h"
#include "timers.h"
#include "button.h"
#define STRIPLEN (6*9)
extern struct cRGB led[STRIPLEN];
void display_update();
void display_clear();
enum app_return {RUN, SUSPEND, RESET};
#endif // _SYSTEM_H