neopixel_f103_mvp/App/LedBuffers.h

17 lines
285 B
C

/*
* LedBuffers.h
*
* Created on: Dec 16, 2018
* Author: abody
*/
#ifndef LEDBUFFERS_H_
#define LEDBUFFERS_H_
#include "Config.h"
#include "Pixel.h"
extern Pixel_t g_pixels[NUMPIXELS];
extern uint8_t g_spibuffer[sizeof(g_pixels) * 8 / 2 + 1];
#endif /* LEDBUFFERS_H_ */