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_uC.h

23 lines
440 B
C
Raw Normal View History

2016-07-13 23:58:50 +00:00
#ifndef LED_UC_H
#define LED_UC_H
#include <Arduino.h>
#include <inttypes.h>
#include <LED.h>
2016-07-13 23:58:50 +00:00
/* A LED_uC object is an Aduino pin that is used to power an LED on and off.
*/
2016-07-13 23:58:50 +00:00
class LED_uC: public LED
{
private:
const uint8_t pin;
public:
2016-07-13 23:58:50 +00:00
LED_uC(const uint8_t pin): pin(pin)
{
pinMode(pin, OUTPUT);
}
virtual void on();
virtual void off();
};
#endif