Example of single tap and double tap detection for LSM6DSL in X-NUCLEO-IKS01A2
Dependencies: X_NUCLEO_IKS01A2 mbed
Fork of SingleDoubleTap_IKS01A2 by
Single and Double Tap Demo Application based on sensor expansion board X-NUCLEO-IKS01A2
Main function is to show how to detect the single and double tap 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 try to tap the board and then view the notification using an hyper terminal. When the single tap is detected,
the LED is switched on for a while.
- the user can press the user button to pass from the single tap detection to the double tap detection feature. The user can try to double tap the board and then view the notification using an hyper terminal. When the double tap is detected, the LED is switched on twice for a while.
- the user can press again the user button to disable the single and double tap detection feature.
- the user can press the user button to enable again the single tap detection feature and so on.
Diff: X_NUCLEO_IKS01A2/Components/LPS22HBSensor/LPS22HBSensor.cpp
- Revision:
- 9:3cca185e654c
- Parent:
- 8:0e76b8668551
- Child:
- 10:fb7cc2385781
--- a/X_NUCLEO_IKS01A2/Components/LPS22HBSensor/LPS22HBSensor.cpp Mon Nov 28 13:14:55 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,399 +0,0 @@
-/**
- ******************************************************************************
- * @file LPS22HBSensor.cpp
- * @author AST
- * @version V1.0.0
- * @date 5 August 2016
- * @brief Implementation of an LPS22HB Pressure sensor.
- ******************************************************************************
- * @attention
- *
- * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * 3. Neither the name of STMicroelectronics nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- ******************************************************************************
- */
-
-
-/* Includes ------------------------------------------------------------------*/
-
-#include "mbed.h"
-#include "DevI2C.h"
-#include "LPS22HBSensor.h"
-#include "LPS22HB_Driver.h"
-
-
-/* Class Implementation ------------------------------------------------------*/
-
-/** Constructor
- * @param i2c object of an helper class which handles the I2C peripheral
- * @param address the address of the component's instance
- */
-LPS22HBSensor::LPS22HBSensor(DevI2C &i2c) : dev_i2c(i2c)
-{
- address = LPS22HB_ADDRESS_HIGH;
-};
-
-
-/** Constructor
- * @param i2c object of an helper class which handles the I2C peripheral
- * @param address the address of the component's instance
- */
-LPS22HBSensor::LPS22HBSensor(DevI2C &i2c, uint8_t address) : dev_i2c(i2c), address(address)
-{
-
-};
-
-/**
- * @brief Initializing the component.
- * @param[in] init pointer to device specific initalization structure.
- * @retval "0" in case of success, an error code otherwise.
- */
-int LPS22HBSensor::Init(void *init)
-{
- if ( LPS22HB_Set_PowerMode( (void *)this, LPS22HB_LowPower) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- /* Power down the device */
- if ( LPS22HB_Set_Odr( (void *)this, LPS22HB_ODR_ONE_SHOT ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- /* Disable low-pass filter on LPS22HB pressure data */
- if( LPS22HB_Set_LowPassFilter( (void *)this, LPS22HB_DISABLE) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- /* Set low-pass filter cutoff configuration*/
- if( LPS22HB_Set_LowPassFilterCutoff( (void *)this, LPS22HB_ODR_9) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- /* Set block data update mode */
- if ( LPS22HB_Set_Bdu( (void *)this, LPS22HB_BDU_NO_UPDATE ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- /* Set automatic increment for multi-byte read/write */
- if( LPS22HB_Set_AutomaticIncrementRegAddress( (void *)this, LPS22HB_ENABLE) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- isEnabled = 0;
- Last_ODR = 25.0f;
-
- return 0;
-}
-
-
-/**
- * @brief Enable LPS22HB
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::Enable(void)
-{
- /* Check if the component is already enabled */
- if ( isEnabled == 1 )
- {
- return 0;
- }
-
- if(Set_ODR_When_Enabled(Last_ODR) == 1)
- {
- return 1;
- }
-
- isEnabled = 1;
-
- return 0;
-}
-
-/**
- * @brief Disable LPS22HB
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::Disable(void)
-{
- /* Check if the component is already disabled */
- if ( isEnabled == 0 )
- {
- return 0;
- }
-
- /* Power down the device */
- if ( LPS22HB_Set_Odr( (void *)this, LPS22HB_ODR_ONE_SHOT ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- isEnabled = 0;
-
- return 0;
-}
-
-/**
- * @brief Read ID address of LPS22HB
- * @param id the pointer where the ID of the device is stored
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::ReadID(uint8_t *id)
-{
- if(!id)
- {
- return 1;
- }
-
- /* Read WHO AM I register */
- if ( LPS22HB_Get_DeviceID( (void *)this, id ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- return 0;
-}
-
-/**
- * @brief Reboot memory content of LPS22HB
- * @param None
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::Reset(void)
-{
- /* Read WHO AM I register */
- if ( LPS22HB_MemoryBoot((void *)this) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- return 0;
-}
-
-/**
- * @brief Read LPS22HB output register, and calculate the pressure in mbar
- * @param pfData the pressure value in mbar
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::GetPressure(float* pfData)
-{
- int32_t int32data = 0;
-
- /* Read data from LPS22HB. */
- if ( LPS22HB_Get_Pressure( (void *)this, &int32data ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- *pfData = ( float )int32data / 100.0f;
-
- return 0;
-}
-
-/**
- * @brief Read LPS22HB output register, and calculate the temperature
- * @param pfData the temperature value
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::GetTemperature(float *pfData)
-{
- int16_t int16data = 0;
-
- /* Read data from LPS22HB. */
- if ( LPS22HB_Get_Temperature( (void *)this, &int16data ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- *pfData = ( float )int16data / 10.0f;
-
- return 0;
-}
-
-/**
- * @brief Read LPS22HB output data rate
- * @param odr the pointer to the output data rate
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::Get_ODR(float* odr)
-{
- LPS22HB_Odr_et odr_low_level;
-
- if ( LPS22HB_Get_Odr( (void *)this, &odr_low_level ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- switch( odr_low_level )
- {
- case LPS22HB_ODR_ONE_SHOT:
- *odr = 0.0f;
- break;
- case LPS22HB_ODR_1HZ:
- *odr = 1.0f;
- break;
- case LPS22HB_ODR_10HZ:
- *odr = 10.0f;
- break;
- case LPS22HB_ODR_25HZ:
- *odr = 25.0f;
- break;
- case LPS22HB_ODR_50HZ:
- *odr = 50.0f;
- break;
- case LPS22HB_ODR_75HZ:
- *odr = 75.0f;
- break;
- default:
- *odr = -1.0f;
- return 1;
- }
-
- return 0;
-}
-
-/**
- * @brief Set ODR
- * @param odr the output data rate to be set
- * @retval 0 in case of success, an error code otherwise
- */
-int LPS22HBSensor::Set_ODR(float odr)
-{
- if(isEnabled == 1)
- {
- if(Set_ODR_When_Enabled(odr) == 1)
- {
- return 1;
- }
- }
- else
- {
- if(Set_ODR_When_Disabled(odr) == 1)
- {
- return 1;
- }
- }
-
- return 0;
-}
-
-
-/**
- * @brief Set the LPS22HB sensor output data rate when enabled
- * @param odr the functional output data rate to be set
- * @retval 0 in case of success
- * @retval 1 in case of failure
- */
-int LPS22HBSensor::Set_ODR_When_Enabled( float odr )
-{
- LPS22HB_Odr_et new_odr;
-
- new_odr = ( odr <= 1.0f ) ? LPS22HB_ODR_1HZ
- : ( odr <= 10.0f ) ? LPS22HB_ODR_10HZ
- : ( odr <= 25.0f ) ? LPS22HB_ODR_25HZ
- : ( odr <= 50.0f ) ? LPS22HB_ODR_50HZ
- : LPS22HB_ODR_75HZ;
-
- if ( LPS22HB_Set_Odr( (void *)this, new_odr ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- if ( Get_ODR( &Last_ODR ) == 1 )
- {
- return 1;
- }
-
- return 0;
-}
-
-/**
- * @brief Set the LPS22HB sensor output data rate when disabled
- * @param odr the functional output data rate to be set
- * @retval 0 in case of success
- * @retval 1 in case of failure
- */
-int LPS22HBSensor::Set_ODR_When_Disabled( float odr )
-{
- Last_ODR = ( odr <= 1.0f ) ? 1.0f
- : ( odr <= 10.0f ) ? 10.0f
- : ( odr <= 25.0f ) ? 25.0f
- : ( odr <= 50.0f ) ? 50.0f
- : 75.0f;
-
- return 0;
-}
-
-
-/**
- * @brief Read the data from register
- * @param reg register address
- * @param data register data
- * @retval 0 in case of success
- * @retval 1 in case of failure
- */
-int LPS22HBSensor::ReadReg( uint8_t reg, uint8_t *data )
-{
-
- if ( LPS22HB_ReadReg( (void *)this, reg, 1, data ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- return 0;
-}
-
-/**
- * @brief Write the data to register
- * @param reg register address
- * @param data register data
- * @retval 0 in case of success
- * @retval 1 in case of failure
- */
-int LPS22HBSensor::WriteReg( uint8_t reg, uint8_t data )
-{
-
- if ( LPS22HB_WriteReg( (void *)this, reg, 1, &data ) == LPS22HB_ERROR )
- {
- return 1;
- }
-
- return 0;
-}
-
-
-uint8_t LPS22HB_IO_Write( void *handle, uint8_t WriteAddr, uint8_t *pBuffer, uint16_t nBytesToWrite )
-{
- return ((LPS22HBSensor *)handle)->IO_Write(pBuffer, WriteAddr, nBytesToWrite);
-}
-
-uint8_t LPS22HB_IO_Read( void *handle, uint8_t ReadAddr, uint8_t *pBuffer, uint16_t nBytesToRead )
-{
- return ((LPS22HBSensor *)handle)->IO_Read(pBuffer, ReadAddr, nBytesToRead);
-}
