Arkiverade
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 rader
128 B
C++
Permalänk Normal vy Historik

#include "LED_Port.h"
2016-09-22 13:46:50 +00:00
void LED_Port::on()
2016-09-22 13:46:50 +00:00
{
refPort.writeHigh(pin);
2016-09-22 13:46:50 +00:00
}
void LED_Port::off()
2016-09-22 13:46:50 +00:00
{
refPort.writeLow(pin);
2016-09-22 13:46:50 +00:00
}