Library I2C pins modification to fit nucleo 32 pins modules

Dependencies:   ST_INTERFACES X_NUCLEO_COMMON

Dependents:   STM32_MagneticLight

Fork of X_NUCLEO_IKS01A1 by ST

Committer:
Wolfgang Betz
Date:
Mon Apr 13 14:44:02 2015 +0200
Revision:
3:088aa5839e0d
Child:
4:566f2c41dc1d
Provide first skeleton for abstract classes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Wolfgang Betz 3:088aa5839e0d 1 /**
Wolfgang Betz 3:088aa5839e0d 2 ******************************************************************************
Wolfgang Betz 3:088aa5839e0d 3 * @file x_cube_mems_hts221.h
Wolfgang Betz 3:088aa5839e0d 4 * @author AST / EST
Wolfgang Betz 3:088aa5839e0d 5 * @version V0.0.1
Wolfgang Betz 3:088aa5839e0d 6 * @date 1-December-2014
Wolfgang Betz 3:088aa5839e0d 7 * @brief Header file for component HTS221
Wolfgang Betz 3:088aa5839e0d 8 ******************************************************************************
Wolfgang Betz 3:088aa5839e0d 9 * @attention
Wolfgang Betz 3:088aa5839e0d 10 *
Wolfgang Betz 3:088aa5839e0d 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Wolfgang Betz 3:088aa5839e0d 12 *
Wolfgang Betz 3:088aa5839e0d 13 * Redistribution and use in source and binary forms, with or without modification,
Wolfgang Betz 3:088aa5839e0d 14 * are permitted provided that the following conditions are met:
Wolfgang Betz 3:088aa5839e0d 15 * 1. Redistributions of source code must retain the above copyright notice,
Wolfgang Betz 3:088aa5839e0d 16 * this list of conditions and the following disclaimer.
Wolfgang Betz 3:088aa5839e0d 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Wolfgang Betz 3:088aa5839e0d 18 * this list of conditions and the following disclaimer in the documentation
Wolfgang Betz 3:088aa5839e0d 19 * and/or other materials provided with the distribution.
Wolfgang Betz 3:088aa5839e0d 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Wolfgang Betz 3:088aa5839e0d 21 * may be used to endorse or promote products derived from this software
Wolfgang Betz 3:088aa5839e0d 22 * without specific prior written permission.
Wolfgang Betz 3:088aa5839e0d 23 *
Wolfgang Betz 3:088aa5839e0d 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Wolfgang Betz 3:088aa5839e0d 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Wolfgang Betz 3:088aa5839e0d 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Wolfgang Betz 3:088aa5839e0d 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Wolfgang Betz 3:088aa5839e0d 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Wolfgang Betz 3:088aa5839e0d 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Wolfgang Betz 3:088aa5839e0d 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Wolfgang Betz 3:088aa5839e0d 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Wolfgang Betz 3:088aa5839e0d 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Wolfgang Betz 3:088aa5839e0d 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Wolfgang Betz 3:088aa5839e0d 34 *
Wolfgang Betz 3:088aa5839e0d 35 ******************************************************************************
Wolfgang Betz 3:088aa5839e0d 36 */
Wolfgang Betz 3:088aa5839e0d 37
Wolfgang Betz 3:088aa5839e0d 38 #ifndef __X_CUBE_MEMS_HTS221_H
Wolfgang Betz 3:088aa5839e0d 39 #define __X_CUBE_MEMS_HTS221_H
Wolfgang Betz 3:088aa5839e0d 40
Wolfgang Betz 3:088aa5839e0d 41 /* Includes ------------------------------------------------------------------*/
Wolfgang Betz 3:088aa5839e0d 42 #include "mbed.h"
Wolfgang Betz 3:088aa5839e0d 43 #include "x_cube_mems_i2c.h"
Wolfgang Betz 3:088aa5839e0d 44
Wolfgang Betz 3:088aa5839e0d 45 /* Classes -------------------------------------------------------------------*/
Wolfgang Betz 3:088aa5839e0d 46 /** Class representing a HTS221 sensor component
Wolfgang Betz 3:088aa5839e0d 47 */
Wolfgang Betz 3:088aa5839e0d 48 class HTS221
Wolfgang Betz 3:088aa5839e0d 49 {
Wolfgang Betz 3:088aa5839e0d 50 public:
Wolfgang Betz 3:088aa5839e0d 51 /** Constructor
Wolfgang Betz 3:088aa5839e0d 52 * @param
Wolfgang Betz 3:088aa5839e0d 53 */
Wolfgang Betz 3:088aa5839e0d 54 HTS221(DevI2C &i2c) : dev_i2c(i2c) {
Wolfgang Betz 3:088aa5839e0d 55 HumTempInitialized = 0;
Wolfgang Betz 3:088aa5839e0d 56 Init();
Wolfgang Betz 3:088aa5839e0d 57 };
Wolfgang Betz 3:088aa5839e0d 58
Wolfgang Betz 3:088aa5839e0d 59 int GetTemperature(float* pfData);
Wolfgang Betz 3:088aa5839e0d 60 int GetHumidity(float* pfData);
Wolfgang Betz 3:088aa5839e0d 61 void Init(/*HUM_TEMP_InitTypeDef *HTS221_Init*/);
Wolfgang Betz 3:088aa5839e0d 62 uint8_t ReadID(void);
Wolfgang Betz 3:088aa5839e0d 63 void RebootCmd(void);
Wolfgang Betz 3:088aa5839e0d 64 int Power_OFF(void);
Wolfgang Betz 3:088aa5839e0d 65 int Power_ON(void);
Wolfgang Betz 3:088aa5839e0d 66 int HTS221_Calibration();
Wolfgang Betz 3:088aa5839e0d 67 private:
Wolfgang Betz 3:088aa5839e0d 68
Wolfgang Betz 3:088aa5839e0d 69 uint8_t isInitialized(void)
Wolfgang Betz 3:088aa5839e0d 70 {
Wolfgang Betz 3:088aa5839e0d 71 return HumTempInitialized;
Wolfgang Betz 3:088aa5839e0d 72 }
Wolfgang Betz 3:088aa5839e0d 73
Wolfgang Betz 3:088aa5839e0d 74 DevI2C &dev_i2c;
Wolfgang Betz 3:088aa5839e0d 75 uint8_t HumTempInitialized;
Wolfgang Betz 3:088aa5839e0d 76 };
Wolfgang Betz 3:088aa5839e0d 77
Wolfgang Betz 3:088aa5839e0d 78 #endif // __X_CUBE_MEMS_HTS221_H