2018-03-13 22:26:15 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* include/nuttx/sensors/sht21.h
|
|
|
|
*
|
2021-11-15 14:59:10 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2018-03-13 22:26:15 +08:00
|
|
|
*
|
2021-11-15 14:59:10 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-13 22:26:15 +08:00
|
|
|
*
|
2021-11-15 14:59:10 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2018-03-13 22:26:15 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-15 10:44:35 +08:00
|
|
|
#ifndef __INCLUDE_NUTTX_SENSORS_SHT21_H
|
|
|
|
#define __INCLUDE_NUTTX_SENSORS_SHT21_H
|
2018-03-13 22:26:15 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/sensors/ioctl.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define CONFIG_SHT21_ADDR 0x40
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
struct i2c_master_s; /* Forward reference */
|
|
|
|
|
|
|
|
struct sht21_conv_data_s
|
|
|
|
{
|
|
|
|
int temperature;
|
|
|
|
int humidity;
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sht21_register
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Register the SHT2x character device as 'devpath'
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* devpath - The full path to the driver to register. E.g., "/dev/temp0"
|
|
|
|
* i2c - An instance of the I2C interface to use to communicate with
|
|
|
|
* the SHT2x
|
|
|
|
* addr - The I2C address of the SHT2x. The I2C address of both SHT20
|
|
|
|
* and SHT21 is always 0x40.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int sht21_register(FAR const char *devpath, FAR struct i2c_master_s *i2c,
|
|
|
|
uint8_t addr);
|
|
|
|
|
2022-01-15 10:44:35 +08:00
|
|
|
#endif /* __INCLUDE_NUTTX_SENSORS_SHT21_H */
|