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/ReadPort_PCA9655E.cpp

31 lines
964 B
C++
Raw Normal View History

2016-07-12 13:23:24 +00:00
#include "ReadPort_PCA9655E.h"
2016-05-09 14:05:08 +00:00
/*
configures column port's configuration, input, and pins.
*/
2016-07-13 21:49:56 +00:00
ReadPort_PCA9655E::ReadPort_PCA9655E (IOEPort& port, const uint8_t READ_PINS)
: ReadPort(READ_PINS), port(port), configurationByteCommand(port.num + 6), inputByteCommand(port.num)
2016-05-09 14:05:08 +00:00
{}
2016-07-12 13:23:24 +00:00
void ReadPort_PCA9655E::begin()
2016-05-09 14:05:08 +00:00
{
Wire.beginTransmission(port.ADDR);
Wire.write(configurationByteCommand);
2016-07-13 21:49:56 +00:00
Wire.write(READ_PINS); //0=configure as output (for LED), 1=configure as input (for read)
2016-05-09 14:05:08 +00:00
Wire.endTransmission();
}
/*
Saves all port-pin values to portState.
*/
uint8_t ReadPort_PCA9655E::read()
2016-05-09 14:05:08 +00:00
{
Wire.beginTransmission(port.ADDR);
Wire.write(inputByteCommand); //input immediately before requestFrom
Wire.endTransmission(false); //PCA9655E needs false to send a restart
Wire.requestFrom(port.ADDR, 1u); //request one byte from input port
return Wire.read();
2016-05-09 14:05:08 +00:00
}