Sfoglia il codice sorgente

move debouncer.debounce() to Row::process()

tags/v0.5.0
wolfv6 8 anni fa
parent
commit
11f20376b7
3 ha cambiato i file con 2 aggiunte e 8 eliminazioni
  1. 2
    6
      src/Row.cpp
  2. 0
    1
      src/Row.h
  3. 0
    1
      src/RowBase.h

+ 2
- 6
src/Row.cpp Vedi File

wait(); wait();
scan(activeHigh); //save column-port-pin values to portState scan(activeHigh); //save column-port-pin values to portState
rowState = getRowState(rowEnd, activeHigh); rowState = getRowState(rowEnd, activeHigh);
debouncedChanged = debounce(rowState);
//debouncedChanged = debounce(rowState);
debouncedChanged = debouncer.debounce(rowState, debounced);
pressRelease(rowEnd, debouncedChanged); pressRelease(rowEnd, debouncedChanged);
} }

uint8_t Row::debounce(const uint8_t rowState)
{
return debouncer.debounce(rowState, debounced);
}

+ 0
- 1
src/Row.h Vedi File

{ {
private: private:
Debouncer_4Samples debouncer; Debouncer_4Samples debouncer;
virtual uint8_t debounce(const uint8_t rowState);
public: public:
Row( RowPort &refRowPort, const uint8_t rowPin, Row( RowPort &refRowPort, const uint8_t rowPin,
ColPort *const ptrsColPorts[], const uint8_t colPortCount, Key *const ptrsKeys[]) ColPort *const ptrsColPorts[], const uint8_t colPortCount, Key *const ptrsKeys[])

+ 0
- 1
src/RowBase.h Vedi File

void wait(); void wait();
void scan(const bool activeHigh); void scan(const bool activeHigh);
uint8_t getRowState(uint16_t& rowEnd, const bool activeHigh); uint8_t getRowState(uint16_t& rowEnd, const bool activeHigh);
virtual uint8_t debounce(const uint8_t rowState)=0;
void pressRelease(const uint16_t rowEnd, const uint8_t debouncedChanged); void pressRelease(const uint16_t rowEnd, const uint8_t debouncedChanged);
public: public:
RowBase( RowPort &refRowPort, const uint8_t rowPin, RowBase( RowPort &refRowPort, const uint8_t rowPin,