This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2016-09-28 19:56:10 +00:00
|
|
|
#include "LED_Port.h"
|
2016-09-22 13:46:50 +00:00
|
|
|
|
2016-09-28 19:56:10 +00:00
|
|
|
void LED_Port::on()
|
2016-09-22 13:46:50 +00:00
|
|
|
{
|
|
|
|
refPort.write(pin, HIGH);
|
|
|
|
}
|
|
|
|
|
2016-09-28 19:56:10 +00:00
|
|
|
void LED_Port::off()
|
2016-09-22 13:46:50 +00:00
|
|
|
{
|
|
|
|
refPort.write(pin, LOW);
|
|
|
|
}
|