Archivado
1
0
Este repositorio está archivado. Usted puede ver los archivos y clonarlos, pero no puede hace push o abrir incidencias o pull requests.
keybrd/src/Key_LayeredKeys.h

20 líneas
580 B
C
Original Vista normal Histórico

#ifndef KEY_LAYEREDKEYS_H
#define KEY_LAYEREDKEYS_H
2016-05-09 14:05:08 +00:00
#include <Arduino.h>
#include <inttypes.h>
#include "LayerStateInterface.h"
#include "Key.h"
#include "Key_LayeredKeysBase.h"
2016-05-09 14:05:08 +00:00
/* Most of the Key_LayeredKeys functionality is in Key_LayeredKeysBase.
2016-05-09 14:05:08 +00:00
*/
class Key_LayeredKeys : public Key_LayeredKeysBase
2016-05-09 14:05:08 +00:00
{
private:
2016-05-28 21:16:32 +00:00
static LayerStateInterface& refLayerState;
2016-05-09 14:05:08 +00:00
public:
Key_LayeredKeys(Key* const ptrsKeys[]) : Key_LayeredKeysBase(ptrsKeys) {}
virtual uint8_t getActiveLayer(); //get active layer from refLayerState
2016-05-09 14:05:08 +00:00
};
#endif