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

@@ -20,7 +20,7 @@
*
*/
/*
/**
* Driver for the Philips PCA9632 LED driver.
* Written by Robert Mendon Feb 2017.
*/
@@ -28,9 +28,9 @@
#ifndef __PCA9632_H__
#define __PCA9632_H__
#include <Arduino.h>
#include <Wire.h>
struct LEDColor;
typedef LEDColor LEDColor;
void pca9632_set_led_color(const byte r, const byte g, const byte b);
void pca9632_set_led_color(const LEDColor &color);
#endif // __PCA9632_H__