diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-02-04 11:04:04 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-02-04 12:55:37 +0530 |
| commit | cc9d915435a61d71f11cffa264cf941de58fe444 (patch) | |
| tree | dc190a76b952e26942c298745f5321c5fb0d95ac /src/display.h | |
| parent | f0423ae9af947512f5200da1ffd3c5adf81d5d7f (diff) | |
| download | daft-watch-cc9d915435a61d71f11cffa264cf941de58fe444.tar.gz daft-watch-cc9d915435a61d71f11cffa264cf941de58fe444.zip | |
Switch from internal clock to crystal + button
Diffstat (limited to '')
| -rw-r--r-- | src/display.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/display.h b/src/display.h new file mode 100644 index 0000000..a2bbc79 --- /dev/null +++ b/src/display.h @@ -0,0 +1,9 @@ +#ifndef _LOADED_DISPLAY +#define _LOADED_DISPLAY +#include <stdint.h> + +void write_digit(uint8_t digit); + +void write_time(uint16_t hour, uint16_t minute); + +#endif |
