GY-63_MS5611/libraries/dateTimeHelpers
2024-04-13 10:35:57 +02:00
..
.github bulk update GitHub actions 2024-04-13 10:35:57 +02:00
examples 0.1.1 dateTimeHelpers 2023-01-08 12:16:53 +01:00
test 0.1.1 dateTimeHelpers 2023-01-08 12:16:53 +01:00
.arduino-ci.yml 0.1.2 dateTimeHelpers 2023-01-18 16:09:51 +01:00
CHANGELOG.md 0.1.3 dateTimeHelpers 2023-10-24 15:24:25 +02:00
dateTimeHelpers.h 0.1.3 dateTimeHelpers 2023-10-24 15:24:25 +02:00
keywords.txt 0.1.1 dateTimeHelpers 2023-01-08 12:16:53 +01:00
library.json 0.1.3 dateTimeHelpers 2023-10-24 15:24:25 +02:00
library.properties 0.1.3 dateTimeHelpers 2023-10-24 15:24:25 +02:00
LICENSE bulk update GitHub actions 2024-04-13 10:35:57 +02:00
README.md 0.1.3 dateTimeHelpers 2023-10-24 15:24:25 +02:00

Arduino CI Arduino-lint JSON check GitHub issues

License: MIT GitHub release PlatformIO Registry

dateTimeHelpers

Arduino library with date and time helper functions.

Description

This library contains functions that have the goal to help with date and time processing. It is primary a placeholder.

Please report missing functions, open an issue or preferably a PR.

Implementation notes

  • the functions share an output buffer. This can give problems when prints are made fast after each other as the buffer is not printed completely before it is filled again. (think also RTOS)
  • math is straightforward, may be optimized? sprintf()?
  • code has repeating parts, may be optimized?

Interface

#include "dateTimeHelpers.h"

Display functions

  • void secondsSplit(uint32_t seconds, uint16_t * days, uint8_t * hours, uint8_t * minutes, uint8_t * sec) Splits the seconds into days, hours, minutes and seconds. This is the worker for the next three. Note: days is max 65535 == 179 years.
  • char * seconds2duration(uint32_t seconds, bool displaySeconds = false) returns "days 00:00:00 .. 23:59:59" or "days 00:00 .. 23:59"
  • char * seconds2clock24(uint32_t seconds, bool displaySeconds = false) returns "00:00:00 .. 23:59:59" or "00:00 .. 23:59"
  • char * seconds2clock12(uint32_t seconds, bool displaySeconds = false) returns "00:00:00 .. 12:59:59" or "00:00 .. 12:59". Note this function has no morning or afternoon indication.
  • char * seconds2clockAMPM(uint32_t seconds, bool displaySeconds = false) returns "00:00:00 AM .. 12:59:59 PM" or "00:00 AM .. 12:59 PM".
  • char * millis2duration(uint32_t millis) returns "days 00:00:00.000 .. 23:59:59.999"
  • char * millis2clock(uint32_t millis) returns "00:00:00.000 .. 23:59:59.999"

AM PM

seconds2clockAMPM has two more or less undefined moments: midnight (00:00 AM 12:00 PM) and noon (12:00 AM 12:00 PM). See https://www.npl.co.uk/resources/q-a/is-midnight-12am-or-12pm)

At night one uses 00:15 AM and after noon one uses 12:15 PM. Therefore I use in this implementation:

  • midnight == 00:00 AM
  • noon == 12:00 PM

Convertors

Note: the following functions use float math so there might occur rounding.

  • float seconds2weeks(uint32_t seconds) idem.
  • float seconds2days(uint32_t seconds) idem.
  • float seconds2hours(uint32_t seconds) idem.
  • float seconds2minutes(uint32_t seconds) idem.

Future

Must

  • improve documentation
  • test a lot

Should

  • optimize for performance
    • secondssplit() (see fast math lib)
    • seconds2clock24 => divmod10
  • merge code where possible
  • extend examples
  • add unit tests
  • create .cpp file, + move code

Could

  • date math functions
    • days=date-date or date = date + days
    • day of week
  • time math functions
  • 64 bit versions of convertors?
  • unusual time units for converters?
    • atomic time
  • micros2clock()
    • mm:ss:ttt:mmm or mm:ss.ttt.mmm ?
  • hour2angle(hh.mm.ss) = angle of the hour hand
    • 12x60x60 = 360° in 1/12th parts
    • idem radians..
  • minute2angle(mm.ss) = angle of the minute hand (mm x 6 + ss x 0.1
  • seconds2angle(ss) = angle of the seconds hand (ss x 6)
  • "classify" ?
    • extern "C" ?

Won't

Support

If you appreciate my libraries, you can support the development and maintenance. Improve the quality of the libraries by providing issues and Pull Requests, or donate through PayPal or GitHub sponsors.

Thank you,