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