32 lines
945 B
C++
32 lines
945 B
C++
#include "PortRead_PCA9655E.h"
|
|
|
|
/*
|
|
configures column port's configuration, input, and pins.
|
|
*/
|
|
PortRead_PCA9655E::PortRead_PCA9655E (PortIOE& port, const uint8_t readPins)
|
|
: PortRead(readPins), port(port),
|
|
configurationByteCommand(port.num + 6), inputByteCommand(port.num)
|
|
{}
|
|
|
|
void PortRead_PCA9655E::begin()
|
|
{
|
|
Wire.beginTransmission(port.ADDR);
|
|
Wire.write(configurationByteCommand);
|
|
Wire.write(readPins); //0=configure as output (for LED), 1=configure as input (for read)
|
|
Wire.endTransmission();
|
|
}
|
|
|
|
/*
|
|
returns port value
|
|
*/
|
|
uint8_t PortRead_PCA9655E::read()
|
|
{
|
|
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();
|
|
}
|