towards sparkle
This commit is contained in:
parent
d140baf50e
commit
087af69592
10 changed files with 414 additions and 204 deletions
26
App/LedBuffers.h
Normal file
26
App/LedBuffers.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* LedBuffers.h
|
||||
*
|
||||
* Created on: Dec 16, 2018
|
||||
* Author: abody
|
||||
*/
|
||||
|
||||
#ifndef LEDBUFFERS_H_
|
||||
#define LEDBUFFERS_H_
|
||||
|
||||
#include "Pixel.h"
|
||||
|
||||
#define NUMPIXELS 144
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern Pixel_t g_pixels[NUMPIXELS];
|
||||
uint8_t g_ledBits[sizeof(g_pixels) * 8 / 2 + 1];
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* LEDBUFFERS_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue