Sensor Data Logger v1.0
ESP32 Data Logger
Loading...
Searching...
No Matches
timer.h
Go to the documentation of this file.
1#ifndef _TIMER_H_
2#define _TIMER_H_
3
4/* ESP timer period is set by us */
5#define HALF_SECOND 500000
6#define ONE_SECOND 1000000
7#define FIVE_SECOND 5000000
8#define THIRTY_SECOND 30000000
9#define ONE_MINUTE 60000000
10#define FIVE_MINUTE 300000000
11#define TEN_MINUTE 600000000
12
13extern void timer_callback(void *arg);
14
15#endif
void timer_callback(void *arg)
Definition: main.c:338