Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/LED.h

14 lines
241 B
C
Raw Normal View History

2016-05-09 14:05:08 +00:00
#ifndef LED_H
#define LED_H
/* LED is an abstract base class
Each LED object is an IC pin that is used to power an LED on and off.
*/
class LED
{
public:
virtual void on()=0;
virtual void off()=0;
};
#endif