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.
16 lines
267 B
16 lines
267 B
9 years ago
|
#pragma once
|
||
|
|
||
9 years ago
|
#include <Arduino.h>
|
||
|
#include <EEPROM.h>
|
||
9 years ago
|
|
||
|
#define EEPROM_KEYMAP_LOCATION 0
|
||
9 years ago
|
|
||
9 years ago
|
class Storage_ {
|
||
9 years ago
|
public:
|
||
9 years ago
|
Storage_(void);
|
||
9 years ago
|
uint8_t load_primary_keymap(uint8_t keymap_count);
|
||
9 years ago
|
void save_primary_keymap(uint8_t keymap);
|
||
9 years ago
|
};
|
||
9 years ago
|
|
||
|
extern Storage_ Storage;
|