mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-18 07:55:06 +00:00
18 lines
237 B
C
18 lines
237 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
struct TdeckKeyboardBacklightConfig {
|
|
uint8_t address;
|
|
uint8_t brightness_default;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|