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_ShiftReg.cpp
2016-10-30 19:14:24 -06:00

12 lines
144 B
C++

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