more boilerplate and cleanup

This commit is contained in:
true 2025-04-04 03:05:42 -07:00
parent 010eeae72f
commit 1c34e1228f
4 changed files with 24 additions and 2 deletions

View File

@ -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>

View File

@ -1,3 +1,10 @@
/*
hackspacecon wand firmware
interrupt routines
*/
#include <Arduino.h>
#include "rgbled.h"

View File

@ -1,3 +1,10 @@
/*
hackspacecon wand firmware
rgb led control and programs
*/
#include <Arduino.h>
#include "rgbled.h"

View File

@ -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