view service/busyboxArduino/DFR_Key.h @ 1262:a2e3a342315c

build updates. turn off output speed override for now Ignore-this: 81c155e3c11cbad6ec28d22df255d6d5 darcs-hash:061b99e423450ef596bc3e3826c983f973f9f00d
author drewp <drewp@bigasterisk.com>
date Sat, 20 Apr 2019 23:31:16 -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