2015-04-03 23:50:09 +02:00
|
|
|
#ifndef _EMBEDDEDOUT_H
|
|
|
|
#define _EMBEDDEDOUT_H
|
|
|
|
|
|
|
|
#include "embeddednf.h"
|
|
|
|
|
2015-04-04 08:23:53 +02:00
|
|
|
|
|
|
|
//Controls brightness
|
2015-04-05 04:16:55 +02:00
|
|
|
#define NOTE_FINAL_AMP 12 //Number from 0...255
|
2015-04-04 08:23:53 +02:00
|
|
|
|
|
|
|
//Controls, basically, the minimum size of the splotches.
|
2015-04-05 00:35:03 +02:00
|
|
|
#define NERF_NOTE_PORP 15 //value from 0 to 255
|
2015-04-04 08:23:53 +02:00
|
|
|
|
2015-07-21 03:18:07 +02:00
|
|
|
#ifndef NUM_LIN_LEDS
|
2015-04-03 23:50:09 +02:00
|
|
|
#define NUM_LIN_LEDS 296
|
2015-07-21 03:18:07 +02:00
|
|
|
#endif
|
2015-04-03 23:50:09 +02:00
|
|
|
|
2015-04-05 00:35:03 +02:00
|
|
|
#define LIN_WRAPAROUND 0 //Whether the output lights wrap around.
|
|
|
|
#define SORT_NOTES 0 //Whether the notes will be sorted.
|
2015-04-03 23:50:09 +02:00
|
|
|
|
|
|
|
extern uint8_t ledArray[];
|
|
|
|
extern uint8_t ledOut[]; //[NUM_LIN_LEDS*3]
|
2015-04-04 08:23:53 +02:00
|
|
|
void UpdateLinearLEDs();
|
2015-04-03 23:50:09 +02:00
|
|
|
|
|
|
|
uint32_t ECCtoHEX( uint8_t note, uint8_t sat, uint8_t val );
|
|
|
|
uint32_t EHSVtoHEX( uint8_t hue, uint8_t sat, uint8_t val ); //hue = 0..255 // TODO: TEST ME!!!
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|