Added some debugging support

This commit is contained in:
Attila Body 2020-12-01 10:52:17 +01:00
parent 6db62d5607
commit 4d63ceced3
7 changed files with 172 additions and 11 deletions

View file

@ -8,7 +8,16 @@
#ifndef CONFIG_H_
#define CONFIG_H_
#define NUMPIXELS 144
#define NUMSPARKLES (NUMPIXELS/12)
//#define DBG_CHOSEN_PIXEL 2
#ifndef DBG_CHOSEN_PIXEL
# define NUMPIXELS 144
# define NUMSPARKLES (NUMPIXELS/12+1)
#else
# define NUMPIXELS 6
# define NUMSPARKLES 1
#endif
#define FRAMETIME 20
#define DEFAULT_COLOR 0,0,0
#endif /* CONFIG_H_ */