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.
22 lines
363 B
22 lines
363 B
8 years ago
|
#pragma once
|
||
|
|
||
8 years ago
|
#include <Kaleidoscope.h>
|
||
8 years ago
|
|
||
|
#include "MacroKeyDefs.h"
|
||
|
#include "MacroSteps.h"
|
||
|
|
||
8 years ago
|
const macro_t *macroAction(uint8_t macroIndex, uint8_t keyState);
|
||
8 years ago
|
|
||
8 years ago
|
class Macros_ : public KaleidoscopePlugin {
|
||
8 years ago
|
public:
|
||
|
Macros_(void);
|
||
|
|
||
|
virtual void begin(void) final;
|
||
|
|
||
|
void play(const macro_t *macro_p);
|
||
8 years ago
|
|
||
|
static byte row, col;
|
||
8 years ago
|
};
|
||
|
|
||
|
extern Macros_ Macros;
|