Apply LEDColor, language fixes

This commit is contained in:
Scott Lahteine
2017-11-28 01:07:10 -06:00
parent 8f90642eea
commit e37dd64548
15 changed files with 323 additions and 286 deletions

View File

@@ -21,16 +21,15 @@
*/
/**
* blinkm.h - Library for controlling a BlinkM over i2c
* Created by Tim Koster, August 21 2013.
* blinkm.h - Control a BlinkM over i2c
*/
#ifndef __BLINKM_H__
#define __BLINKM_H__
#ifndef _BLINKM_H_
#define _BLINKM_H_
#include <Arduino.h>
#include <Wire.h>
struct LEDColor;
typedef LEDColor LEDColor;
void blinkm_set_led_color(const uint8_t r, const uint8_t g, const uint8_t b);
void blinkm_set_led_color(const LEDColor &color);
#endif // __BLINKM_H__
#endif // _BLINKM_H_