This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2016-05-09 14:05:08 +00:00
|
|
|
#include "ColPort.h"
|
|
|
|
|
|
|
|
uint8_t ColPort::getColPins()
|
|
|
|
{
|
|
|
|
return colPins;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t ColPort::getPortState()
|
|
|
|
{
|
2016-06-05 20:43:53 +00:00
|
|
|
//todo Keyboard.print(" portState=");
|
|
|
|
//Keyboard.print(portState);
|
2016-05-09 14:05:08 +00:00
|
|
|
return portState;
|
|
|
|
}
|