Mercurial > code > home > repos > homeauto
view service/busyboxArduino/DFR_Key.h @ 997:b24885725f59
support for pwm board
Ignore-this: 4bf59699c590c75c79e6ae72d719343a
darcs-hash:20150830081929-312f9-45f7134e807c5de2bb0dad13a5a9d1fa032bf471
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sun, 30 Aug 2015 01:19:29 -0700 |
parents | 70fd4c07a326 |
children |
line wrap: on
line source
#ifndef DFR_Key_h #define DFR_Key_h #include "Arduino.h" #define SAMPLE_WAIT -1 #define NO_KEY 0 #define UP_KEY 3 #define DOWN_KEY 4 #define LEFT_KEY 2 #define RIGHT_KEY 5 #define SELECT_KEY 1 class DFR_Key { public: DFR_Key(); int getKey(); void setRate(int); private: int _refreshRate; int _keyPin; int _threshold; int _keyIn; int _curInput; int _curKey; int _prevInput; int _prevKey; boolean _change; unsigned long _oldTime; }; #endif