Files @ 54d6639e1b4b
Branch filter:

Location: protofusion-esp32-template/main/ledstrip.h - annotation

Ethan Zonca
Cleanup ledstrip implementation
1
2
3
4
5
6
7
8
9
#ifndef _LED_STRIPPER_H
#define _LED_STRIPPER_H


void ledstrip_init(void);
void ledstrip_set(uint32_t r, uint32_t g, uint32_t b);
void ledstrip_set_modifier(float frac);
void ledstrip_refresh(void);
#endif