Ask questions and find answers on ST MEMS sensors, such as the LSM6DSV and the LSM6DSL. Learn how to use the SensorTile.Box, and STEVAL kits.
I'm using the STEVAL-MKI153V1 evalulation board together with a Nucleo F443RE board and the STM reference driver implementation from github.The code is basically the read_simple.c example provided by STM adapted to mbed.I've checked the I²C communica...
Hi everyone,we are using an M41T80 RTC on our custom linux board. This RTC has a CLK-OUT feature which is per default to ON and 32kHz. We have another chip wired and depending to that clock signal.On kernel version 4.1.15 there was no feature to enab...
Hello,I try run accelerometer LIS3DHH on Nucleo F411RE. I want check register WHO_AM_I value. I set address on 0x8F (0x0F address register and 0x10 value as set accelerometer to read data from register.) I always receive value 0x00 from register. I r...
Hello all,We have interfaced LSM6DS3 with a wireless microcontroller by I2C for .I want to know how do I select the best ODR value?Is there any standard methods for selecting ODR?According to datasheet I found that if ODR is high the current consumpt...
Hi,Can some one explain what is low power mode. It is mentioned in page 45 in the data sheet. But no where it is explained. I would like it to work in low power mode and wake up on certain condition (also cause INTERRUPT) and go back to low power mod...
Hello there,I have a question about this sensor. I'll be using it as a low-power device on a PIC, which is most of the time in sleep mode, and will wake up on interrupts from various devices. I want to configure this sensor so it will notify the PIC ...
Hi, I am following the guide "Getting started with the STMicroelectronics X-CUBE-MEMS1 software package for STM32CubeMX" to try the example "DataLog" with the X-NUCLEO-IKS01A2 and the NUCLEO-L4R5ZI-P. I am using a MacBook Pro with STMCubeMX 4.26.1 an...
LIS2DH12 is Configured with BDU=1, Normal Mode, FS=2G. While doing the below step after collecting the data, in non-selftest mode and self mode. We followed the steps detailed in the Application Note AN-5005 and each axis has to be checked as below|M...
CTRL_REG2=00; CTRL_REG3=00; CTRL_REG4=0x80;CTRL_REG1=0x47 with this BDU =1, FS=2G, Normal.ReadData(0x80|OUT_X_L_REG, data_raw_acceleration.u8bit, 6);ax = (((float)data_raw_acceleration.i16bit[0] / 64.0f) * 4.0f)ay = (((float)data_raw_acceleration.i16...