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_IOE.cpp

12 lines
129 B
C++
Raw Normal View History

2016-09-22 13:46:50 +00:00
#include "LED_IOE.h"
void LED_IOE::on()
{
refPort.write(pin, HIGH);
}
void LED_IOE::off()
{
refPort.write(pin, LOW);
}