timed-remote

Flipper Zero app for sending delayed IR commands
git clone git://src.adamsgaard.dk/timed-remote # fast
git clone https://src.adamsgaard.dk/timed-remote.git # slow
Log | Files | Refs | README | LICENSE Back to index

time_helper.h (287B)


      1 #pragma once
      2 
      3 #include <stddef.h>
      4 #include <stdint.h>
      5 
      6 uint32_t time_hms_sec(uint8_t, uint8_t, uint8_t);
      7 void time_sec_hms(uint32_t, uint8_t *, uint8_t *, uint8_t *);
      8 
      9 #ifndef TIMED_REMOTE_TEST_BUILD
     10 uint32_t time_until(uint8_t, uint8_t, uint8_t);
     11 void time_name(char *, size_t);
     12 #endif