Example of multiple event detection for LSM6DSL in X-NUCLEO-IKS01A2
Dependencies: X_NUCLEO_IKS01A2 mbed
Fork of MultiEvent_IKS01A2 by
Multi Event Demo Application based on sensor expansion board X-NUCLEO-IKS01A2
Main function is to show how to detect the free fall, tap, double tap, tilt, wake up, 6D Orientation and step events 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 simulate all the events and then view the notification using an hyper terminal.
- the user button can be used to enable/disable all hardware features.
X_NUCLEO_IKS01A2/Components/HTS221Sensor/HTS221Sensor.h@0:763b80993db4, 2016-11-24 (annotated)
- Committer:
- cparata
- Date:
- Thu Nov 24 15:42:24 2016 +0000
- Revision:
- 0:763b80993db4
Add multi event example
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| cparata | 0:763b80993db4 | 1 | /** |
| cparata | 0:763b80993db4 | 2 | ****************************************************************************** |
| cparata | 0:763b80993db4 | 3 | * @file HTS221Sensor.h |
| cparata | 0:763b80993db4 | 4 | * @author AST |
| cparata | 0:763b80993db4 | 5 | * @version V1.0.0 |
| cparata | 0:763b80993db4 | 6 | * @date 5 August 2016 |
| cparata | 0:763b80993db4 | 7 | * @brief Abstract class of an HTS221 Humidity and Temperature sensor. |
| cparata | 0:763b80993db4 | 8 | ****************************************************************************** |
| cparata | 0:763b80993db4 | 9 | * @attention |
| cparata | 0:763b80993db4 | 10 | * |
| cparata | 0:763b80993db4 | 11 | * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> |
| cparata | 0:763b80993db4 | 12 | * |
| cparata | 0:763b80993db4 | 13 | * Redistribution and use in source and binary forms, with or without modification, |
| cparata | 0:763b80993db4 | 14 | * are permitted provided that the following conditions are met: |
| cparata | 0:763b80993db4 | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
| cparata | 0:763b80993db4 | 16 | * this list of conditions and the following disclaimer. |
| cparata | 0:763b80993db4 | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| cparata | 0:763b80993db4 | 18 | * this list of conditions and the following disclaimer in the documentation |
| cparata | 0:763b80993db4 | 19 | * and/or other materials provided with the distribution. |
| cparata | 0:763b80993db4 | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
| cparata | 0:763b80993db4 | 21 | * may be used to endorse or promote products derived from this software |
| cparata | 0:763b80993db4 | 22 | * without specific prior written permission. |
| cparata | 0:763b80993db4 | 23 | * |
| cparata | 0:763b80993db4 | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| cparata | 0:763b80993db4 | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| cparata | 0:763b80993db4 | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| cparata | 0:763b80993db4 | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| cparata | 0:763b80993db4 | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| cparata | 0:763b80993db4 | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| cparata | 0:763b80993db4 | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| cparata | 0:763b80993db4 | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| cparata | 0:763b80993db4 | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| cparata | 0:763b80993db4 | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| cparata | 0:763b80993db4 | 34 | * |
| cparata | 0:763b80993db4 | 35 | ****************************************************************************** |
| cparata | 0:763b80993db4 | 36 | */ |
| cparata | 0:763b80993db4 | 37 | |
| cparata | 0:763b80993db4 | 38 | |
| cparata | 0:763b80993db4 | 39 | /* Prevent recursive inclusion -----------------------------------------------*/ |
| cparata | 0:763b80993db4 | 40 | |
| cparata | 0:763b80993db4 | 41 | #ifndef __HTS221Sensor_H__ |
| cparata | 0:763b80993db4 | 42 | #define __HTS221Sensor_H__ |
| cparata | 0:763b80993db4 | 43 | |
| cparata | 0:763b80993db4 | 44 | |
| cparata | 0:763b80993db4 | 45 | /* Includes ------------------------------------------------------------------*/ |
| cparata | 0:763b80993db4 | 46 | |
| cparata | 0:763b80993db4 | 47 | #include "DevI2C.h" |
| cparata | 0:763b80993db4 | 48 | #include "HTS221_Driver.h" |
| cparata | 0:763b80993db4 | 49 | #include "HumiditySensor.h" |
| cparata | 0:763b80993db4 | 50 | #include "TempSensor.h" |
| cparata | 0:763b80993db4 | 51 | |
| cparata | 0:763b80993db4 | 52 | |
| cparata | 0:763b80993db4 | 53 | /* Class Declaration ---------------------------------------------------------*/ |
| cparata | 0:763b80993db4 | 54 | |
| cparata | 0:763b80993db4 | 55 | /** |
| cparata | 0:763b80993db4 | 56 | * Abstract class of an HTS221 Humidity and Temperature sensor. |
| cparata | 0:763b80993db4 | 57 | */ |
| cparata | 0:763b80993db4 | 58 | class HTS221Sensor : public HumiditySensor, public TempSensor |
| cparata | 0:763b80993db4 | 59 | { |
| cparata | 0:763b80993db4 | 60 | public: |
| cparata | 0:763b80993db4 | 61 | |
| cparata | 0:763b80993db4 | 62 | HTS221Sensor(DevI2C &i2c); |
| cparata | 0:763b80993db4 | 63 | HTS221Sensor(DevI2C &i2c, uint8_t address); |
| cparata | 0:763b80993db4 | 64 | virtual int Init(void *init); |
| cparata | 0:763b80993db4 | 65 | virtual int ReadID(uint8_t *id); |
| cparata | 0:763b80993db4 | 66 | virtual int GetHumidity(float *pfData); |
| cparata | 0:763b80993db4 | 67 | virtual int GetTemperature(float *pfData); |
| cparata | 0:763b80993db4 | 68 | int Enable(void); |
| cparata | 0:763b80993db4 | 69 | int Disable(void); |
| cparata | 0:763b80993db4 | 70 | int Reset(void); |
| cparata | 0:763b80993db4 | 71 | int Get_ODR(float *odr); |
| cparata | 0:763b80993db4 | 72 | int Set_ODR(float odr); |
| cparata | 0:763b80993db4 | 73 | int ReadReg(uint8_t reg, uint8_t *data); |
| cparata | 0:763b80993db4 | 74 | int WriteReg(uint8_t reg, uint8_t data); |
| cparata | 0:763b80993db4 | 75 | /** |
| cparata | 0:763b80993db4 | 76 | * @brief Utility function to read data. |
| cparata | 0:763b80993db4 | 77 | * @param pBuffer: pointer to data to be read. |
| cparata | 0:763b80993db4 | 78 | * @param RegisterAddr: specifies internal address register to be read. |
| cparata | 0:763b80993db4 | 79 | * @param NumByteToRead: number of bytes to be read. |
| cparata | 0:763b80993db4 | 80 | * @retval 0 if ok, an error code otherwise. |
| cparata | 0:763b80993db4 | 81 | */ |
| cparata | 0:763b80993db4 | 82 | uint8_t IO_Read(uint8_t* pBuffer, uint8_t RegisterAddr, uint16_t NumByteToRead) |
| cparata | 0:763b80993db4 | 83 | { |
| cparata | 0:763b80993db4 | 84 | return (uint8_t) dev_i2c.i2c_read(pBuffer, address, RegisterAddr, NumByteToRead); |
| cparata | 0:763b80993db4 | 85 | } |
| cparata | 0:763b80993db4 | 86 | |
| cparata | 0:763b80993db4 | 87 | /** |
| cparata | 0:763b80993db4 | 88 | * @brief Utility function to write data. |
| cparata | 0:763b80993db4 | 89 | * @param pBuffer: pointer to data to be written. |
| cparata | 0:763b80993db4 | 90 | * @param RegisterAddr: specifies internal address register to be written. |
| cparata | 0:763b80993db4 | 91 | * @param NumByteToWrite: number of bytes to write. |
| cparata | 0:763b80993db4 | 92 | * @retval 0 if ok, an error code otherwise. |
| cparata | 0:763b80993db4 | 93 | */ |
| cparata | 0:763b80993db4 | 94 | uint8_t IO_Write(uint8_t* pBuffer, uint8_t RegisterAddr, uint16_t NumByteToWrite) |
| cparata | 0:763b80993db4 | 95 | { |
| cparata | 0:763b80993db4 | 96 | return (uint8_t) dev_i2c.i2c_write(pBuffer, address, RegisterAddr, NumByteToWrite); |
| cparata | 0:763b80993db4 | 97 | } |
| cparata | 0:763b80993db4 | 98 | |
| cparata | 0:763b80993db4 | 99 | private: |
| cparata | 0:763b80993db4 | 100 | |
| cparata | 0:763b80993db4 | 101 | /* Helper classes. */ |
| cparata | 0:763b80993db4 | 102 | DevI2C &dev_i2c; |
| cparata | 0:763b80993db4 | 103 | |
| cparata | 0:763b80993db4 | 104 | /* Configuration */ |
| cparata | 0:763b80993db4 | 105 | uint8_t address; |
| cparata | 0:763b80993db4 | 106 | |
| cparata | 0:763b80993db4 | 107 | }; |
| cparata | 0:763b80993db4 | 108 | |
| cparata | 0:763b80993db4 | 109 | #ifdef __cplusplus |
| cparata | 0:763b80993db4 | 110 | extern "C" { |
| cparata | 0:763b80993db4 | 111 | #endif |
| cparata | 0:763b80993db4 | 112 | uint8_t HTS221_IO_Write( void *handle, uint8_t WriteAddr, uint8_t *pBuffer, uint16_t nBytesToWrite ); |
| cparata | 0:763b80993db4 | 113 | uint8_t HTS221_IO_Read( void *handle, uint8_t ReadAddr, uint8_t *pBuffer, uint16_t nBytesToRead ); |
| cparata | 0:763b80993db4 | 114 | #ifdef __cplusplus |
| cparata | 0:763b80993db4 | 115 | } |
| cparata | 0:763b80993db4 | 116 | #endif |
| cparata | 0:763b80993db4 | 117 | |
| cparata | 0:763b80993db4 | 118 | #endif |
