Update license and readme (still rough draft)

This commit is contained in:
cnlohr 2015-07-27 03:35:02 -04:00
parent 5a4c232d43
commit 24b606988f
5 changed files with 16 additions and 10 deletions

View file

@ -20,13 +20,9 @@
#define FIXBPERO 24
#endif
#ifndef FIXBINS
//Don't configure this.
#define FIXBINS (FIXBPERO*OCTAVES)
#endif
#ifndef BINCYCLE
#define BINCYCLE (1<<OCTAVES)
#endif
//You may increase this past 5 but if you do, the amplitude of your incoming
//signal must decrease. Increasing this value makes responses slower. Lower

View file

@ -5,20 +5,26 @@
//Controls brightness
#ifndef NOTE_FINAL_AMP
#define NOTE_FINAL_AMP 12 //Number from 0...255
#endif
//Controls, basically, the minimum size of the splotches.
#ifndef NERF_NOTE_PORP
#define NERF_NOTE_PORP 15 //value from 0 to 255
#endif
#ifndef NUM_LIN_LEDS
#define NUM_LIN_LEDS 296
#define NUM_LIN_LEDS 32
#endif
#ifndef LIN_WRAPAROUND
#define LIN_WRAPAROUND 0 //Whether the output lights wrap around. (Can't easily run on embedded systems)
#endif
#ifdef SORT_NOTES
#define SORT_NOTES 0 //Whether the notes will be sorted.
#endif
extern uint8_t ledArray[];
extern uint8_t ledOut[]; //[NUM_LIN_LEDS*3]