Example of tilt detection for LSM6DSL in X-NUCLEO-IKS01A2

Dependencies:   X_NUCLEO_IKS01A2 mbed

Fork of Tilt_IKS01A2 by ST Expansion SW Team

Tilt Detection Demo Application based on sensor expansion board X-NUCLEO-IKS01A2

Main function is to show how to detect the tilt event using the sensor expansion board and send a notification using UART to a connected PC or Desktop and display it on terminal applications like TeraTerm.
After connection has been established:
- the user can try to tilt the board and then view the notification using an hyper terminal. When the tilt event is detected, the LED is switched on for a while.
- the user button can be used to enable/disable the tilt detection feature.

Committer:
cparata
Date:
Fri Aug 12 13:42:49 2016 +0000
Revision:
0:489965565a0d
First release of Tilt Detection for LSM6DSL in IKS01A2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cparata 0:489965565a0d 1 /**
cparata 0:489965565a0d 2 ******************************************************************************
cparata 0:489965565a0d 3 * @file LPS22HBSensor.h
cparata 0:489965565a0d 4 * @author AST
cparata 0:489965565a0d 5 * @version V1.0.0
cparata 0:489965565a0d 6 * @date 5 August 2016
cparata 0:489965565a0d 7 * @brief Abstract Class of an LPS22HB Pressure sensor.
cparata 0:489965565a0d 8 ******************************************************************************
cparata 0:489965565a0d 9 * @attention
cparata 0:489965565a0d 10 *
cparata 0:489965565a0d 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
cparata 0:489965565a0d 12 *
cparata 0:489965565a0d 13 * Redistribution and use in source and binary forms, with or without modification,
cparata 0:489965565a0d 14 * are permitted provided that the following conditions are met:
cparata 0:489965565a0d 15 * 1. Redistributions of source code must retain the above copyright notice,
cparata 0:489965565a0d 16 * this list of conditions and the following disclaimer.
cparata 0:489965565a0d 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
cparata 0:489965565a0d 18 * this list of conditions and the following disclaimer in the documentation
cparata 0:489965565a0d 19 * and/or other materials provided with the distribution.
cparata 0:489965565a0d 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
cparata 0:489965565a0d 21 * may be used to endorse or promote products derived from this software
cparata 0:489965565a0d 22 * without specific prior written permission.
cparata 0:489965565a0d 23 *
cparata 0:489965565a0d 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
cparata 0:489965565a0d 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
cparata 0:489965565a0d 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
cparata 0:489965565a0d 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
cparata 0:489965565a0d 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
cparata 0:489965565a0d 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
cparata 0:489965565a0d 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
cparata 0:489965565a0d 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
cparata 0:489965565a0d 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
cparata 0:489965565a0d 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
cparata 0:489965565a0d 34 *
cparata 0:489965565a0d 35 ******************************************************************************
cparata 0:489965565a0d 36 */
cparata 0:489965565a0d 37
cparata 0:489965565a0d 38
cparata 0:489965565a0d 39 /* Prevent recursive inclusion -----------------------------------------------*/
cparata 0:489965565a0d 40
cparata 0:489965565a0d 41 #ifndef __LPS22HBSensor_H__
cparata 0:489965565a0d 42 #define __LPS22HBSensor_H__
cparata 0:489965565a0d 43
cparata 0:489965565a0d 44
cparata 0:489965565a0d 45 /* Includes ------------------------------------------------------------------*/
cparata 0:489965565a0d 46
cparata 0:489965565a0d 47 #include "DevI2C.h"
cparata 0:489965565a0d 48 #include "LPS22HB_Driver.h"
cparata 0:489965565a0d 49
cparata 0:489965565a0d 50 /* Typedefs ------------------------------------------------------------------*/
cparata 0:489965565a0d 51 typedef enum
cparata 0:489965565a0d 52 {
cparata 0:489965565a0d 53 LPS22HB_STATUS_OK = 0,
cparata 0:489965565a0d 54 LPS22HB_STATUS_ERROR,
cparata 0:489965565a0d 55 LPS22HB_STATUS_TIMEOUT,
cparata 0:489965565a0d 56 LPS22HB_STATUS_NOT_IMPLEMENTED
cparata 0:489965565a0d 57 } LPS22HBStatusTypeDef;
cparata 0:489965565a0d 58
cparata 0:489965565a0d 59
cparata 0:489965565a0d 60 /* Class Declaration ---------------------------------------------------------*/
cparata 0:489965565a0d 61
cparata 0:489965565a0d 62 /**
cparata 0:489965565a0d 63 * Abstract class of an LPS22HB Pressure sensor.
cparata 0:489965565a0d 64 */
cparata 0:489965565a0d 65 class LPS22HBSensor
cparata 0:489965565a0d 66 {
cparata 0:489965565a0d 67 public:
cparata 0:489965565a0d 68 LPS22HBSensor (DevI2C &i2c);
cparata 0:489965565a0d 69 LPS22HBSensor (DevI2C &i2c, uint8_t address);
cparata 0:489965565a0d 70 LPS22HBStatusTypeDef Enable (void);
cparata 0:489965565a0d 71 LPS22HBStatusTypeDef Disable (void);
cparata 0:489965565a0d 72 LPS22HBStatusTypeDef ReadID (uint8_t *ht_id);
cparata 0:489965565a0d 73 LPS22HBStatusTypeDef Reset (void);
cparata 0:489965565a0d 74 LPS22HBStatusTypeDef GetPressure (float *pfData);
cparata 0:489965565a0d 75 LPS22HBStatusTypeDef GetTemperature (float *pfData);
cparata 0:489965565a0d 76 LPS22HBStatusTypeDef GetODR (float *odr);
cparata 0:489965565a0d 77 LPS22HBStatusTypeDef SetODR (float odr);
cparata 0:489965565a0d 78 LPS22HBStatusTypeDef ReadReg (uint8_t reg, uint8_t *data);
cparata 0:489965565a0d 79 LPS22HBStatusTypeDef WriteReg (uint8_t reg, uint8_t data);
cparata 0:489965565a0d 80
cparata 0:489965565a0d 81 /**
cparata 0:489965565a0d 82 * @brief Utility function to read data.
cparata 0:489965565a0d 83 * @param pBuffer: pointer to data to be read.
cparata 0:489965565a0d 84 * @param RegisterAddr: specifies internal address register to be read.
cparata 0:489965565a0d 85 * @param NumByteToRead: number of bytes to be read.
cparata 0:489965565a0d 86 * @retval 0 if ok, an error code otherwise.
cparata 0:489965565a0d 87 */
cparata 0:489965565a0d 88 uint8_t IO_Read(uint8_t* pBuffer, uint8_t RegisterAddr, uint16_t NumByteToRead)
cparata 0:489965565a0d 89 {
cparata 0:489965565a0d 90 return (uint8_t) dev_i2c.i2c_read(pBuffer, address, RegisterAddr, NumByteToRead);
cparata 0:489965565a0d 91 }
cparata 0:489965565a0d 92
cparata 0:489965565a0d 93 /**
cparata 0:489965565a0d 94 * @brief Utility function to write data.
cparata 0:489965565a0d 95 * @param pBuffer: pointer to data to be written.
cparata 0:489965565a0d 96 * @param RegisterAddr: specifies internal address register to be written.
cparata 0:489965565a0d 97 * @param NumByteToWrite: number of bytes to write.
cparata 0:489965565a0d 98 * @retval 0 if ok, an error code otherwise.
cparata 0:489965565a0d 99 */
cparata 0:489965565a0d 100 uint8_t IO_Write(uint8_t* pBuffer, uint8_t RegisterAddr, uint16_t NumByteToWrite)
cparata 0:489965565a0d 101 {
cparata 0:489965565a0d 102 return (uint8_t) dev_i2c.i2c_write(pBuffer, address, RegisterAddr, NumByteToWrite);
cparata 0:489965565a0d 103 }
cparata 0:489965565a0d 104
cparata 0:489965565a0d 105 private:
cparata 0:489965565a0d 106 LPS22HBStatusTypeDef SetODR_When_Enabled(float odr);
cparata 0:489965565a0d 107 LPS22HBStatusTypeDef SetODR_When_Disabled(float odr);
cparata 0:489965565a0d 108
cparata 0:489965565a0d 109 /* Helper classes. */
cparata 0:489965565a0d 110 DevI2C &dev_i2c;
cparata 0:489965565a0d 111
cparata 0:489965565a0d 112 /* Configuration */
cparata 0:489965565a0d 113 uint8_t address;
cparata 0:489965565a0d 114
cparata 0:489965565a0d 115 uint8_t isEnabled;
cparata 0:489965565a0d 116 float Last_ODR;
cparata 0:489965565a0d 117 };
cparata 0:489965565a0d 118
cparata 0:489965565a0d 119 #ifdef __cplusplus
cparata 0:489965565a0d 120 extern "C" {
cparata 0:489965565a0d 121 #endif
cparata 0:489965565a0d 122 uint8_t LPS22HB_IO_Write( void *handle, uint8_t WriteAddr, uint8_t *pBuffer, uint16_t nBytesToWrite );
cparata 0:489965565a0d 123 uint8_t LPS22HB_IO_Read( void *handle, uint8_t ReadAddr, uint8_t *pBuffer, uint16_t nBytesToRead );
cparata 0:489965565a0d 124 #ifdef __cplusplus
cparata 0:489965565a0d 125 }
cparata 0:489965565a0d 126 #endif
cparata 0:489965565a0d 127
cparata 0:489965565a0d 128 #endif