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

69 lines
1.9 KiB
C++
Raw Normal View History

2016-07-12 13:23:24 +00:00
#include "Scanner_uC.h"
2016-07-14 23:28:16 +00:00
/* Scanner_uC functions call Arduino's Digital Pins functions
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
*/
/* constructor
*/
Scanner_uC::Scanner_uC(const bool strobeOn, const uint8_t readPins[], const uint8_t readPinCount)
: strobeOn(strobeOn), strobeOff(!strobeOn), readPins(readPins), readPinCount(readPinCount)
{
uint8_t mode;
//configure read pins
if (strobeOn == LOW) //if active low
{
mode = INPUT_PULLUP; //use internal pull-up resistor
}
else //if active high
{
mode = INPUT; //requires external pull-down resistor
}
2016-07-15 05:15:38 +00:00
for (uint8_t i=0; i < readPinCount; i++)
{
2016-07-15 05:15:38 +00:00
pinMode(readPins[i], mode);
}
}
/*
Configure row-strobe pin to output.
*/
void Scanner_uC::begin(const uint8_t strobePin)
{
pinMode(strobePin, OUTPUT);
}
2016-07-15 05:15:38 +00:00
/* scan() strobes the row's strobePin and retuns state of readPins.
2016-07-14 23:28:16 +00:00
Bitwise variables are 1 bit per key.
*/
read_pins_t Scanner_uC::scan(const uint8_t strobePin)
{
2016-07-14 23:28:16 +00:00
read_pins_t readState = 0; //bitwise, 1 means key is pressed, 0 means released
read_pins_t readMask = 1; //bitwise, active bit is 1
2016-07-12 13:23:24 +00:00
//strobe row on
digitalWrite(strobePin, strobeOn);
2016-06-08 02:24:50 +00:00
delayMicroseconds(3); //time to stablize voltage
2016-07-12 13:23:24 +00:00
//read all the read pins
2016-07-15 05:15:38 +00:00
for (uint8_t i=0; i < readPinCount; i++)
{
if ( digitalRead(readPins[i]) == strobeOn )
{
2016-07-13 21:49:56 +00:00
readState |= readMask;
}
2016-07-12 13:23:24 +00:00
readMask <<= 1;
}
2016-07-12 13:23:24 +00:00
//strobe row off
digitalWrite(strobePin, strobeOff);
2016-06-08 02:24:50 +00:00
2016-07-13 21:49:56 +00:00
return readState;
}