mirror of
https://github.com/MatMoul/g810-led.git
synced 2025-04-05 07:41:45 +00:00
24 lines
765 B
C++
24 lines
765 B
C++
#ifndef UTILS_HELPER
|
|
#define UTILS_HELPER
|
|
|
|
#include <iostream>
|
|
#include "Keyboard.h"
|
|
|
|
namespace utils {
|
|
|
|
std::string getCmdName(std::string cmd);
|
|
|
|
bool parseStartupMode(std::string val, LedKeyboard::StartupMode &startupMode);
|
|
bool parseNativeEffect(std::string val, LedKeyboard::NativeEffect &nativeEffect);
|
|
bool parseNativeEffectPart(std::string val, LedKeyboard::NativeEffectPart &nativeEffectPart);
|
|
bool parseKey(std::string val, LedKeyboard::Key &key);
|
|
bool parseKeyGroup(std::string val, LedKeyboard::KeyGroup &keyGroup);
|
|
bool parseColor(std::string val, LedKeyboard::Color &color);
|
|
bool parseSpeed(std::string val, uint8_t &speed);
|
|
bool parseUInt8(std::string val, uint8_t &uint8);
|
|
bool parseUInt16(std::string val, uint16_t &uint16);
|
|
|
|
}
|
|
|
|
#endif
|