roo_blink
API Documentation for roo_blink
Loading...
Searching...
No Matches
led.h
Go to the documentation of this file.
1#pragma once
2
4#include "roo_time.h"
5#include "stdint.h"
6
7namespace roo_blink {
8
9/// Abstract interface representing an RGB LED.
10class RgbLed {
11 public:
12 /// Sets the LED to the specified color.
13 virtual void setColor(Color color);
14};
15
16} // namespace roo_blink