smart-fursuit-tail-esp32/embedded/src/led.hpp

16 lines
215 B
C++

#ifndef LED_HPP
#define LED_HPP
#include "hal/gpio.hpp"
class LED {
public:
LED(int r, int g, int b);
GPIOOutputPin* r;
GPIOOutputPin* g;
GPIOOutputPin* b;
void color(char c = 'k');
};
#endif