N4 Flight Software N4
Flight software used for the N4 flight computers
Loading...
Searching...
No Matches
custom_time.h
Go to the documentation of this file.
1/*!****************************************************************************
2 * @file custom_time.h
3 * @brief This file defines functions needed for human readable time conversion for data logging
4 *******************************************************************************/
5
6#ifndef CUSTOM_TIME_H
7#define CUSTOM_TIME_H
8
9#include <Arduino.h>
10
11extern char tstamp[];
12void convertTimestamp(unsigned long);
13
14#endif
void convertTimestamp(unsigned long)
convert time in milliseconds to minutes, seconds and time that are human readable,...
Definition custom_time.cpp:20
char tstamp[]
Definition custom_time.cpp:10