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