I2C_device_Arduino 0.2
An I²C utility class for Arduino
Loading...
Searching...
No Matches
test_LM75B.h
Go to the documentation of this file.
1
10#ifndef ARDUINO_TEMP_SENSOR_H
11#define ARDUINO_TEMP_SENSOR_H
12
13#include <Arduino.h>
14#include <stdint.h>
15
16#include "I2C_device.h"
17
28class test_LM75B : public I2C_device
29{
30public:
31 enum mode {
34 };
35
37 enum reg_num {
42 };
43
48 test_LM75B( uint8_t i2c_address = (0x90 >> 1) );
49
53
58 float read( void );
59
68 void thresholds( float v0, float v1 );
69
74 void os_mode( mode flag );
75};
76
77#endif // ARDUINO_TEMP_SENSOR_H
void thresholds(float v0, float v1)
Definition: test_LM75B.cpp:20
float read(void)
Definition: test_LM75B.cpp:15
void os_mode(mode flag)
Definition: test_LM75B.cpp:29