2016-07-12 13:23:24 +00:00
|
|
|
#include "Scanner_uC.h"
|
2016-06-07 09:26:25 +00:00
|
|
|
|
2016-06-18 22:32:21 +00:00
|
|
|
/* constructor
|
|
|
|
*/
|
2016-07-12 13:23:24 +00:00
|
|
|
Scanner_uC::Scanner_uC(const uint8_t STROBE_PIN,
|
2016-06-30 10:40:39 +00:00
|
|
|
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-07-09 16:47:22 +00:00
|
|
|
if (STROBE_ON == LOW) //if active low
|
2016-06-18 22:32:21 +00:00
|
|
|
{
|
2016-07-09 16:47:22 +00:00
|
|
|
mode = INPUT_PULLUP; //uses internal pull-up resistor
|
2016-06-18 22:32:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-09 16:47:22 +00:00
|
|
|
mode = INPUT; //requires external pull-down resistor
|
2016-06-18 22:32:21 +00:00
|
|
|
}
|
|
|
|
|
2016-07-12 13:23:24 +00:00
|
|
|
//configure read pins
|
2016-06-18 22:32:21 +00:00
|
|
|
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-07-12 13:23:24 +00:00
|
|
|
Sets READ_PIN_COUNT and returns rowState.
|
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-07-12 14:31:17 +00:00
|
|
|
read_pins_t Scanner_uC::scan()
|
2016-06-06 20:23:40 +00:00
|
|
|
{
|
2016-07-09 09:59:28 +00:00
|
|
|
read_pins_t rowState = 0; //bitwise, one col per bit, 1 means key is pressed
|
2016-07-12 13:23:24 +00:00
|
|
|
read_pins_t readMask = 1; //bitwise, one col per bit, active col bit is 1
|
2016-06-06 20:23:40 +00:00
|
|
|
|
2016-07-12 13:23:24 +00:00
|
|
|
//strobe row on
|
2016-07-09 16:47:22 +00:00
|
|
|
digitalWrite(STROBE_PIN, STROBE_ON);
|
2016-06-08 02:24:50 +00:00
|
|
|
delayMicroseconds(3); //time to stablize voltage
|
2016-06-07 09:26:25 +00:00
|
|
|
|
2016-07-12 13:23:24 +00:00
|
|
|
//read all the read 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-07-09 16:47:22 +00:00
|
|
|
if ( digitalRead(READ_PINS[i]) == STROBE_ON )
|
2016-06-06 20:23:40 +00:00
|
|
|
{
|
2016-07-12 13:23:24 +00:00
|
|
|
rowState |= readMask;
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
2016-07-12 13:23:24 +00:00
|
|
|
readMask <<= 1;
|
2016-06-06 20:23:40 +00:00
|
|
|
}
|
|
|
|
|
2016-07-12 13:23:24 +00:00
|
|
|
//strobe row off
|
2016-07-09 16:47:22 +00:00
|
|
|
digitalWrite(STROBE_PIN, STROBE_OFF);
|
2016-06-08 02:24:50 +00:00
|
|
|
|
2016-07-12 14:31:17 +00:00
|
|
|
// readPinCount = READ_PIN_COUNT;
|
2016-06-06 20:23:40 +00:00
|
|
|
return rowState;
|
|
|
|
}
|