GY-63_MS5611/libraries/AnalogKeypad/AnalogKeypad.h

52 lines
1.0 KiB
C
Raw Normal View History

2020-11-27 05:10:47 -05:00
#pragma once
//
// FILE: AnalogKeypad.h
// AUTHOR: Rob Tillaart
2022-10-27 11:49:36 -04:00
// VERSION: 0.2.2
// DATE: 2019-01-31
2021-10-17 11:47:04 -04:00
// PURPOSE: Class for (Robotdyn) 4x4 and 4x3 analogue keypad
2020-11-27 05:10:47 -05:00
// URL: https://github.com/RobTillaart/AnalogKeypad
//
2021-05-28 07:19:00 -04:00
#include "Arduino.h"
2021-05-28 07:19:00 -04:00
2022-10-27 11:49:36 -04:00
#define ANALOGKEYPAD_LIB_VERSION (F("0.2.2"))
2022-10-27 11:49:36 -04:00
#define NOKEY 0x00
#define PRESSED 0x80
#define RELEASED 0x40
#define REPEATED 0x20
#define CHANGED 0x10
2021-05-28 07:19:00 -04:00
class AnalogKeypad
{
public:
2021-10-17 11:47:04 -04:00
explicit AnalogKeypad(const uint8_t pin, const uint8_t bits = 10);
2022-10-27 11:49:36 -04:00
// returns 0 if no key pressed
// otherwise returns key pressed first => ignoring fluctuations
// 2nd or more presses simultaneous are ignored
uint8_t pressed();
2022-10-27 11:49:36 -04:00
// returns 0 if no key pressed
// otherwise returns key pressed (may fluctuate)
uint8_t read();
2022-10-27 11:49:36 -04:00
// event alike approach
// switch(int e = event()) see examples
uint8_t event();
uint8_t key() { return _lastKey; } ;
private:
2021-10-17 11:47:04 -04:00
uint8_t _rawRead();
uint8_t _analogPin;
uint8_t _analogShift;
uint8_t _lastKey;
};
2021-05-28 07:19:00 -04:00
2020-11-27 05:10:47 -05:00
// -- END OF FILE --