mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 16:37:58 +06:00
7 lines
148 B
C
7 lines
148 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void ds1307_set_time(uint8_t h, uint8_t m, uint8_t s);
|
||
|
void ds1307_get_time(uint8_t *h, uint8_t *m, uint8_t *s);
|