Cleanups/changes to led control menu

This commit is contained in:
Scott Lahteine 2017-11-27 23:02:44 -06:00
parent 1f770bb103
commit 68c1f05aeb
11 changed files with 530 additions and 370 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_SetColor(const byte r, const byte g, const byte b);
void pca9632_set_led_color(const LEDColor &color);
#endif // __PCA9632_H__