-
Notifications
You must be signed in to change notification settings - Fork 0
/
vumetre.h
31 lines (19 loc) · 843 Bytes
/
vumetre.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef VUMETRE_H
#define VUMETRE_H
//============================================================================================================//
// ___________________________________________ VUMETRES __________________________________________________
#define MAX_NB_VUMETRE 6
#define NB_CPU_SMOOTH 10
#define TIME_BTW_TWO_READ 10 //temps entre deux lectures sonde en secondes
typedef struct Vumetre{
int pin_out;
char *name;
} Vumetre;
extern Vumetre vu_tec;
void create_vumetre(struct Vumetre &vumetre, int pin_out, char *name);
void init_vumetres();
void handle_cpu_mem();
void screenSaver();
// ___________________________________________ VUMETRES __________________________________________________
//============================================================================================================//
#endif