#ifndef _SAVE_H
#define _SAVE_H

//根据实际需求更改
//Save
struct Config_Keyboard
{
  char user[512] = {};       //用于自定义的LED灯光程序配置 512字节
  uint8_t L_color = 0;   //灯光颜色
  uint8_t K_mode = 0;        //开机固定模式 默认为1 OFF睡眠(0) usb(1) ble(2)
  uint8_t L_brgightness = 0; //灯光亮度 默认为40 0 ~ LIGHT_BRGIGHTNESS_MAX
  uint8_t L_mode = 0;        //灯光模式 默认为2
  uint8_t Bluetooth_channel = 0; //蓝牙通道 默认为0 0 ~ 2
  uint8_t Switch_system = 0; //键盘系统模式   0：windows  1：mac os
  uint8_t L_speed = 0;       //灯光速度
  uint8_t Version = 0;       //版本
};
Config_Keyboard Keyboard_Config;

//Config
void load_config();
void save_config();

#endif
