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
2016-09-22 17:12:11 -06:00

12 lines
129 B
C++

#include "LED_IOE.h"
void LED_IOE::on()
{
refPort.write(pin, HIGH);
}
void LED_IOE::off()
{
refPort.write(pin, LOW);
}