You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
357 B
C
16 lines
357 B
C
#ifndef HTU21D_H
|
|
#define HTU21D_H
|
|
|
|
// I2C Address
|
|
#define HTU21D_I2C_ADDR 0x40
|
|
// Commands
|
|
#define HTU21D_TEMP 0xE3
|
|
#define HTU21D_HUMID 0xE5
|
|
#define HTU21D_RESET 0xFE
|
|
|
|
// --- DECLARACIÓN DE MÉTODOS PARA htu21d.c ---
|
|
int getTemperature(int fd, double *temperature); // Temperatura
|
|
int getHumidity(int fd, double *humidity); // Humedad
|
|
|
|
#endif // HTU21D_H
|