1
0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2024-06-02 02:38:09 +02:00
CovidBracelet/src/display_pinetime.h

10 lines
270 B
C
Raw Permalink Normal View History

2021-02-08 20:50:53 +01:00
#pragma once
#include <stdint.h>
2021-02-08 21:03:52 +01:00
#include <stdbool.h>
2021-02-08 20:50:53 +01:00
int pinetime_display_init();
void pinetime_display_set_brightness(uint8_t brightness);
2021-02-08 21:03:52 +01:00
void pinetime_display_draw_string(uint8_t x, uint8_t y, const char *str);
void pinetime_display_set_powersave(bool powersave);