Arkiverade
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/Row.cpp

64 rader
2.2 KiB
C++
Permalänk Normal vy Historik

2016-07-12 13:23:24 +00:00
#include "Row.h"
/* constructor
2016-09-12 06:28:27 +00:00
init() is called once for each row, to set scanner's uC strobePin to output.
*/
Row::Row(ScannerInterface& refScanner, const uint8_t strobePin,
2016-09-28 20:37:40 +00:00
Key* const ptrsKeys[], const uint8_t keyCount)
: refScanner(refScanner), strobePin(strobePin),
2016-09-28 20:37:40 +00:00
ptrsKeys(ptrsKeys), keyCount(keyCount), debounced(0)
{
refScanner.init(strobePin);
}
/* process() scans the row and calls any newly pressed or released keys.
Bit pattern variables are 1 bit per key.
*/
void Row::process()
{
read_pins_t readState; //bits, 1 means key is pressed, 0 means released
read_pins_t debouncedChanged; //bits, 1 means debounced changed
readState = refScanner.scan(strobePin);
debouncedChanged = debouncer.debounce(readState, debounced);
2016-09-12 06:28:27 +00:00
send(keyCount, debouncedChanged);
}
2016-07-12 13:23:24 +00:00
/*
2016-07-14 23:28:16 +00:00
send() calls key's press() or release() function if key was pressed or released.
Parameter debouncedChanged is bit a pattern.
2016-07-12 13:23:24 +00:00
*/
2016-09-12 06:28:27 +00:00
void Row::send(const uint8_t keyCount, const read_pins_t debouncedChanged)
2016-07-12 13:23:24 +00:00
{
read_pins_t isFallingEdge; //bits, 1 means falling edge
read_pins_t isRisingEdge; //bits, 1 means rising edge
read_pins_t readPosition; //bits, active bit is 1
2016-07-12 13:23:24 +00:00
uint8_t i; //index for ptrsKeys[i] array
//bit=1 if last debounced changed from 1 to 0, else bit=0
isFallingEdge = debouncedChanged & ~debounced;
//bit=1 if last debounced changed from 0 to 1, else bit=0
isRisingEdge = debouncedChanged & debounced;
for (readPosition=1, i=0; i < keyCount; readPosition<<=1, i++) //for each key in row
2016-07-12 13:23:24 +00:00
{
//release before press avoids impossible key sequence
if (readPosition & isFallingEdge) //if key was released
2016-07-12 13:23:24 +00:00
{
ptrsKeys[i]->release();
}
if (readPosition & isRisingEdge) //if key was pressed
2016-07-12 13:23:24 +00:00
{
ptrsKeys[i]->press();
keyWasPressed();
}
}
}
2016-07-18 02:26:00 +00:00
2016-07-12 13:23:24 +00:00
void Row::keyWasPressed()
{
2016-07-14 23:28:16 +00:00
//empty in Row class. To unstick sticky keys, override keyWasPressed() in derived Row class.
2016-07-12 13:23:24 +00:00
}