mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2024-10-05 20:47:50 -04:00
15 lines
350 B
C
15 lines
350 B
C
#ifndef __LM75_H__
|
|
#define __LM75_H__
|
|
|
|
#define LM75_CHIP_ID (0x07)
|
|
#define LM75_I2C_ADDRESS1 (0x49)
|
|
#define BME280_I2C_ADDRESS2 (0x49)
|
|
#define BME280_TEMPERATURE_REGISTER (0x00)
|
|
|
|
#define BME280_TEMPERATURE_DATA_SIZE (1)
|
|
#define BME280_TEMPERATURE_DATA_LENGTH (1)
|
|
|
|
#endif
|
|
|
|
|