Encapsulate RGB(W) LEDs

This commit is contained in:
Scott Lahteine
2017-09-08 14:47:47 -05:00
parent a98e9874db
commit 8fbb833de9
15 changed files with 530 additions and 380 deletions

View File

@@ -25,7 +25,12 @@
* Created by Tim Koster, August 21 2013.
*/
#include "Arduino.h"
#include "Wire.h"
#ifndef __BLINKM_H__
#define __BLINKM_H__
void SendColors(byte red, byte grn, byte blu);
#include "Arduino.h"
#include <Wire.h>
void blinkm_set_led_color(const uint8_t r, const uint8_t g, const uint8_t b);
#endif // __BLINKM_H__