12 lines
128 B
C++
12 lines
128 B
C++
#include "LED_Port.h"
|
|
|
|
void LED_Port::on()
|
|
{
|
|
refPort.writeHigh(pin);
|
|
}
|
|
|
|
void LED_Port::off()
|
|
{
|
|
refPort.writeLow(pin);
|
|
}
|