Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
temp_lm75.h
Go to the documentation of this file.
1 #ifndef TEMP_LM75_H
2 #define TEMP_LM75_H
3 
4 #include "std.h"
5 
6 #define LM75_TEMP_REG 0x00
7 #define LM75_CONF_REG 0x01
8 #define LM75_T_HYST_REG 0x02
9 #define LM75_T_OS_REG 0x03
10 #define LM75_PROD_REG 0x07
11 
12 
13 void lm75_init(void);
14 void lm75_periodic(void);
15 void lm75_event(void);
16 
17 #endif
lm75_event
void lm75_event(void)
Definition: temp_lm75.c:63
std.h
lm75_periodic
void lm75_periodic(void)
Definition: temp_lm75.c:57
lm75_init
void lm75_init(void)
Definition: temp_lm75.c:52