AceTime  3.0.0
Date and time classes for Arduino that support timezones from the TZ Database.
DateConv.h
1 /*
2  * MIT License
3  * Copyright (c) 2024 Brian T. Park
4  *
5  * Low-level date conversion routines.
6  */
7 
8 #ifndef ACE_TIME_COMMON_DATE_CONV_H
9 #define ACE_TIME_COMMON_DATE_CONV_H
10 
11 #include <stdint.h>
12 
13 namespace ace_time {
14 
16 void secondsToHms(uint32_t secs, uint16_t* hh, uint16_t* mm, uint16_t* ss);
17 
18 }
19 
20 #endif