You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kaleidoscope/src/layers.h

45 lines
970 B

#pragma once
#include <Arduino.h>
#include "key_defs.h"
#include KALEIDOSCOPE_HARDWARE_H
class Layer_ {
7 years ago
public:
Layer_(void);
static Key lookup(byte row, byte col) {
return keyMap[row][col];
};
7 years ago
static void on(uint8_t layer);
static void off(uint8_t layer);
static void move(uint8_t layer);
7 years ago
static uint8_t top(void);
static void next(void);
static void previous(void);
7 years ago
static boolean isOn(uint8_t layer);
7 years ago
static void defaultLayer(uint8_t layer);
static uint8_t defaultLayer(void);
7 years ago
static uint32_t getLayerState(void);
7 years ago
static Key eventHandler(Key mappedKey, byte row, byte col, uint8_t keyState);
7 years ago
static Key(*getKey)(uint8_t layer, byte row, byte col);
7 years ago
static Key getKeyFromPROGMEM(uint8_t layer, byte row, byte col);
static void updateKeyCache(byte row, byte col);
7 years ago
private:
static uint8_t highestLayer;
static Key keyMap[ROWS][COLS];
};
7 years ago
Key layer_getKey(uint8_t layer, uint8_t r, uint8_t c);
extern Layer_ Layer;