Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: ST_INTERFACES X_NUCLEO_COMMON
Fork of X_NUCLEO_IKS01A1 by
Components/HTS221/hts221.h@1:591d1746019c, 2015-04-13 (annotated)
- Committer:
- Wolfgang Betz
- Date:
- Mon Apr 13 11:47:26 2015 +0200
- Revision:
- 1:591d1746019c
- Child:
- 2:5f95b745eedb
Merge commit '0f910ecdacb98aed2f4ea01a79e371be1cf84345' into betzw_wb
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Wolfgang Betz |
1:591d1746019c | 1 | /** |
| Wolfgang Betz |
1:591d1746019c | 2 | ****************************************************************************** |
| Wolfgang Betz |
1:591d1746019c | 3 | * @file x_cube_mems_hts221.h |
| Wolfgang Betz |
1:591d1746019c | 4 | * @author AST / EST |
| Wolfgang Betz |
1:591d1746019c | 5 | * @version V0.0.1 |
| Wolfgang Betz |
1:591d1746019c | 6 | * @date 1-December-2014 |
| Wolfgang Betz |
1:591d1746019c | 7 | * @brief Header file for component HTS221 |
| Wolfgang Betz |
1:591d1746019c | 8 | ****************************************************************************** |
| Wolfgang Betz |
1:591d1746019c | 9 | * @attention |
| Wolfgang Betz |
1:591d1746019c | 10 | * |
| Wolfgang Betz |
1:591d1746019c | 11 | * <h2><center>© COPYRIGHT(c) 2014 STMicroelectronics</center></h2> |
| Wolfgang Betz |
1:591d1746019c | 12 | * |
| Wolfgang Betz |
1:591d1746019c | 13 | * Redistribution and use in source and binary forms, with or without modification, |
| Wolfgang Betz |
1:591d1746019c | 14 | * are permitted provided that the following conditions are met: |
| Wolfgang Betz |
1:591d1746019c | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
| Wolfgang Betz |
1:591d1746019c | 16 | * this list of conditions and the following disclaimer. |
| Wolfgang Betz |
1:591d1746019c | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| Wolfgang Betz |
1:591d1746019c | 18 | * this list of conditions and the following disclaimer in the documentation |
| Wolfgang Betz |
1:591d1746019c | 19 | * and/or other materials provided with the distribution. |
| Wolfgang Betz |
1:591d1746019c | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
| Wolfgang Betz |
1:591d1746019c | 21 | * may be used to endorse or promote products derived from this software |
| Wolfgang Betz |
1:591d1746019c | 22 | * without specific prior written permission. |
| Wolfgang Betz |
1:591d1746019c | 23 | * |
| Wolfgang Betz |
1:591d1746019c | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| Wolfgang Betz |
1:591d1746019c | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| Wolfgang Betz |
1:591d1746019c | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| Wolfgang Betz |
1:591d1746019c | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| Wolfgang Betz |
1:591d1746019c | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| Wolfgang Betz |
1:591d1746019c | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| Wolfgang Betz |
1:591d1746019c | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| Wolfgang Betz |
1:591d1746019c | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| Wolfgang Betz |
1:591d1746019c | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| Wolfgang Betz |
1:591d1746019c | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| Wolfgang Betz |
1:591d1746019c | 34 | * |
| Wolfgang Betz |
1:591d1746019c | 35 | ****************************************************************************** |
| Wolfgang Betz |
1:591d1746019c | 36 | */ |
| Wolfgang Betz |
1:591d1746019c | 37 | |
| Wolfgang Betz |
1:591d1746019c | 38 | #ifndef __X_CUBE_MEMS_HTS221_H |
| Wolfgang Betz |
1:591d1746019c | 39 | #define __X_CUBE_MEMS_HTS221_H |
| Wolfgang Betz |
1:591d1746019c | 40 | |
| Wolfgang Betz |
1:591d1746019c | 41 | /* Includes ------------------------------------------------------------------*/ |
| Wolfgang Betz |
1:591d1746019c | 42 | #include "mbed.h" |
| Wolfgang Betz |
1:591d1746019c | 43 | #include "x_cube_mems_i2c.h" |
| Wolfgang Betz |
1:591d1746019c | 44 | |
| Wolfgang Betz |
1:591d1746019c | 45 | /* Classes -------------------------------------------------------------------*/ |
| Wolfgang Betz |
1:591d1746019c | 46 | /** Class representing a HTS221 sensor component |
| Wolfgang Betz |
1:591d1746019c | 47 | */ |
| Wolfgang Betz |
1:591d1746019c | 48 | class HTS221 |
| Wolfgang Betz |
1:591d1746019c | 49 | { |
| Wolfgang Betz |
1:591d1746019c | 50 | public: |
| Wolfgang Betz |
1:591d1746019c | 51 | /** Constructor |
| Wolfgang Betz |
1:591d1746019c | 52 | * @param |
| Wolfgang Betz |
1:591d1746019c | 53 | */ |
| Wolfgang Betz |
1:591d1746019c | 54 | HTS221(DevI2C &i2c) : dev_i2c(i2c) { |
| Wolfgang Betz |
1:591d1746019c | 55 | HumTempInitialized = 0; |
| Wolfgang Betz |
1:591d1746019c | 56 | Init(); |
| Wolfgang Betz |
1:591d1746019c | 57 | }; |
| Wolfgang Betz |
1:591d1746019c | 58 | |
| Wolfgang Betz |
1:591d1746019c | 59 | int GetTemperature(float* pfData); |
| Wolfgang Betz |
1:591d1746019c | 60 | int GetHumidity(float* pfData); |
| Wolfgang Betz |
1:591d1746019c | 61 | void Init(/*HUM_TEMP_InitTypeDef *HTS221_Init*/); |
| Wolfgang Betz |
1:591d1746019c | 62 | uint8_t ReadID(void); |
| Wolfgang Betz |
1:591d1746019c | 63 | void RebootCmd(void); |
| Wolfgang Betz |
1:591d1746019c | 64 | int Power_OFF(void); |
| Wolfgang Betz |
1:591d1746019c | 65 | int Power_ON(void); |
| Wolfgang Betz |
1:591d1746019c | 66 | int HTS221_Calibration(); |
| Wolfgang Betz |
1:591d1746019c | 67 | private: |
| Wolfgang Betz |
1:591d1746019c | 68 | |
| Wolfgang Betz |
1:591d1746019c | 69 | uint8_t isInitialized(void) |
| Wolfgang Betz |
1:591d1746019c | 70 | { |
| Wolfgang Betz |
1:591d1746019c | 71 | return HumTempInitialized; |
| Wolfgang Betz |
1:591d1746019c | 72 | } |
| Wolfgang Betz |
1:591d1746019c | 73 | |
| Wolfgang Betz |
1:591d1746019c | 74 | DevI2C &dev_i2c; |
| Wolfgang Betz |
1:591d1746019c | 75 | uint8_t HumTempInitialized; |
| Wolfgang Betz |
1:591d1746019c | 76 | }; |
| Wolfgang Betz |
1:591d1746019c | 77 | |
| Wolfgang Betz |
1:591d1746019c | 78 | #endif // __X_CUBE_MEMS_HTS221_H |
