2016-06-09 19:29:31 +00:00
|
|
|
#include "RowScanner_PinsArray.h"
|
2016-06-07 09:26:25 +00:00
|
|
|
|
2016-06-18 22:32:21 +00:00
|
|
|
/* constructor
|
|
|
|
*/
|
2016-06-30 10:40:39 +00:00
|
|
|
RowScanner_PinsArray::RowScanner_PinsArray(const uint8_t STROBE_PIN,
|
|
|
|
const uint8_t READ_PINS[], const uint8_t READ_PIN_COUNT)
|
|
|
|
: STROBE_PIN(STROBE_PIN), READ_PINS(READ_PINS), READ_PIN_COUNT(READ_PIN_COUNT)
|
2016-06-18 22:32:21 +00:00
|
|
|
{
|
|
|
|
uint8_t mode;
|
|
|
|
|
|
|
|
//configure row
|
2016-06-30 10:40:39 +00:00
|
|
|
pinMode(STROBE_PIN, OUTPUT);
|
2016-06-18 22:32:21 +00:00
|
|
|
|
2016-06-30 10:40:39 +00:00
|
|
|
if (ACTIVE_HIGH)
|
2016-06-18 22:32:21 +00:00
|
|
|
{
|
|
|
|
mode = INPUT; //requires external pull-down resistor
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mode = INPUT_PULLUP; //uses internal pull-up resistor
|
|
|
|
}
|
|
|
|
|
|
|
|
//configure cols
|
|
|
|
for (uint8_t i=0; i < READ_PIN_COUNT; i++)
|
|
|
|
{
|
2016-06-30 10:40:39 +00:00
|
|
|
pinMode(READ_PINS[i], mode);
|
2016-06-18 22:32:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* scan() Strobes the row and reads the columns.
|
2016-06-08 02:24:50 +00:00
|
|
|
Sets rowEnd and returns rowState.
|
|
|
|
rowEnd is a bitwise row mask, one col per bit, where active col bit is 1.
|
|
|
|
At end of function, 1 bit marks place immediatly after last key of row.
|
|
|
|
rowEnd is a larger type than portMask so that it can not overflow.
|
2016-06-18 22:32:21 +00:00
|
|
|
|
|
|
|
https://www.arduino.cc/en/Tutorial/DigitalPins
|
|
|
|
https://www.arduino.cc/en/Reference/PinMode
|
|
|
|
https://www.arduino.cc/en/Reference/DigitalWrite
|
|
|
|
https://www.arduino.cc/en/Reference/DigitalRead
|
|
|
|
https://www.arduino.cc/en/Reference/Constants > Digital Pins modes: INPUT, INPUT_PULLUP, and OUTPUT
|
2016-06-06 20:23:40 +00:00
|
|
|
*/
|
2016-06-22 02:40:35 +00:00
|
|
|
read_pins_t RowScanner_PinsArray::scan(read_pins_mask_t& rowEnd)
|
2016-06-06 20:23:40 +00:00
|
|
|
{
|
2016-06-22 02:40:35 +00:00
|
|
|
read_pins_t rowState = 0; //bitwise
|
2016-06-08 02:24:50 +00:00
|
|
|
rowEnd = 1;
|
2016-06-06 20:23:40 +00:00
|
|
|
|
|
|
|
//strobe row on
|
2016-06-30 10:40:39 +00:00
|
|
|
if (ACTIVE_HIGH)
|
2016-06-06 20:23:40 +00:00
|
|
|
{
|
2016-06-30 10:40:39 +00:00
|
|
|
digitalWrite(STROBE_PIN, HIGH);
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
|
|
|
else //activeLow
|
|
|
|
{
|
2016-06-30 10:40:39 +00:00
|
|
|
digitalWrite(STROBE_PIN, LOW);
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
2016-06-08 02:24:50 +00:00
|
|
|
delayMicroseconds(3); //time to stablize voltage
|
2016-06-07 09:26:25 +00:00
|
|
|
|
2016-06-09 19:29:31 +00:00
|
|
|
//read all the column pins
|
2016-06-07 01:37:48 +00:00
|
|
|
for (uint8_t i=0; i < READ_PIN_COUNT; i++)
|
2016-06-06 20:23:40 +00:00
|
|
|
{
|
2016-06-30 10:40:39 +00:00
|
|
|
if ( digitalRead(READ_PINS[i]) == ACTIVE_HIGH )
|
2016-06-06 20:23:40 +00:00
|
|
|
{
|
2016-06-08 02:24:50 +00:00
|
|
|
rowState |= rowEnd;
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
2016-06-08 02:24:50 +00:00
|
|
|
rowEnd <<= 1;
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//strobe row off
|
2016-06-30 10:40:39 +00:00
|
|
|
if (ACTIVE_HIGH)
|
2016-06-06 20:23:40 +00:00
|
|
|
{
|
2016-06-30 10:40:39 +00:00
|
|
|
digitalWrite(STROBE_PIN, LOW);
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
|
|
|
else //activeLow
|
|
|
|
{
|
2016-06-30 10:40:39 +00:00
|
|
|
digitalWrite(STROBE_PIN, HIGH);
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
2016-06-08 02:24:50 +00:00
|
|
|
|
2016-06-06 20:23:40 +00:00
|
|
|
return rowState;
|
|
|
|
}
|