more boilerplate and cleanup
This commit is contained in:
parent
010eeae72f
commit
1c34e1228f
|
@ -21,8 +21,8 @@
|
|||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
* IN THE SOFTWARE.
|
||||
*/
|
||||
#ifndef __INC_HSV2RGB_H__
|
||||
#define __INC_HSV2RGB_H__
|
||||
#ifndef __HSV2RGB_H__
|
||||
#define __HSV2RGB_H__
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
hackspacecon wand firmware
|
||||
|
||||
interrupt routines
|
||||
|
||||
*/
|
||||
|
||||
#include <Arduino.h>
|
||||
|
||||
#include "rgbled.h"
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
/*
|
||||
hackspacecon wand firmware
|
||||
|
||||
rgb led control and programs
|
||||
|
||||
*/
|
||||
|
||||
#include <Arduino.h>
|
||||
#include "rgbled.h"
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
#ifndef __RGBLED_H__
|
||||
#define __RGBLED_H__
|
||||
|
||||
|
||||
|
||||
#include <tinyNeoPixel_Static.h>
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -21,3 +26,6 @@ extern uint8_t (*rgb_program[PROG_COUNT])(uint8_t);
|
|||
|
||||
|
||||
void conf_rgb_timer();
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue