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

12 lines
124 B
C++

#include "LED_Port.h"
void LED_Port::on()
{
refPort.setHigh(pin);
}
void LED_Port::off()
{
refPort.setLow(pin);
}