Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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
13void lm75_init(void);
14void lm75_periodic(void);
15void lm75_event(void);
16
17#endif
void lm75_event(void)
Definition temp_lm75.c:63
void lm75_init(void)
Definition temp_lm75.c:52
void lm75_periodic(void)
Definition temp_lm75.c:57