mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* cleanup * brightness control and app * cleanup * persistant storage of display settings * fix for missing include * header cleanup * fix pc build * add docs * move display app to tactility project
15 lines
203 B
C
15 lines
203 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool twodotfour_backlight_init();
|
|
void twodotfour_backlight_set(uint8_t duty);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |