|
enum | MblMwAccMma8452qRange { MBL_MW_ACC_MMA8452Q_RANGE_2G = 0
, MBL_MW_ACC_MMA8452Q_RANGE_4G
, MBL_MW_ACC_MMA8452Q_RANGE_8G
} |
| Available g-ranges on the MMA8452Q accelerometer. More...
|
|
enum | MblMwAccMma8452qOdr {
MBL_MW_ACC_MMA8452Q_ODR_800Hz = 0
, MBL_MW_ACC_MMA8452Q_ODR_400Hz
, MBL_MW_ACC_MMA8452Q_ODR_200Hz
, MBL_MW_ACC_MMA8452Q_ODR_100Hz
,
MBL_MW_ACC_MMA8452Q_ODR_50Hz
, MBL_MW_ACC_MMA8452Q_ODR_12_5Hz
, MBL_MW_ACC_MMA8452Q_ODR_6_25Hz
, MBL_MW_ACC_MMA8452Q_ODR_1_56Hz
} |
| Available output data rates on the MMA8452Q accelerometer.
|
|
enum | MblMwAccMma8452qCutoffFreq { MBL_MW_ACC_MMA8452Q_CUTOFF_FREQ_HIGHEST = 0
, MBL_MW_ACC_MMA8452Q_CUTOFF_FREQ_HIGH = 1
, MBL_MW_ACC_MMA8452Q_CUTOFF_FREQ_MEDIUM = 2
, MBL_MW_ACC_MMA8452Q_CUTOFF_FREQ_LOW = 3
} |
| Available cutoff frequencies for the MMA8452Q high pass filter.
|
|
|
METAWEAR_API MblMwDataSignal * | mbl_mw_acc_mma8452q_get_acceleration_data_signal (const MblMwMetaWearBoard *board) |
| Retrieves the data signal representing acceleration data for the MMA8452Q accelerometer This signal is timestamp,x,y,z acc data. More...
|
|
METAWEAR_API MblMwDataSignal * | mbl_mw_acc_mma8452q_get_high_freq_acceleration_data_signal (const MblMwMetaWearBoard *board) |
|
METAWEAR_API MblMwDataSignal * | mbl_mw_acc_mma8452q_get_packed_acceleration_data_signal (const MblMwMetaWearBoard *board) |
| Variant of acceleration data that packs multiple data samples into 1 BLE packet to increase the data throughput. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_set_odr (MblMwMetaWearBoard *board, MblMwAccMma8452qOdr odr) |
| Sets the output data rate The ODR sets the output data frequency in Hz. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_set_range (MblMwMetaWearBoard *board, MblMwAccMma8452qRange range) |
| Sets the acceleration range The range is in units of Gs. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_set_high_pass_cutoff (MblMwMetaWearBoard *board, float frequency) |
| Sets the cutoff frequency for the high-pass filter The high-pass filter cutoff frequency can be set by the user to four different frequencies which are dependent on the output data rate (ODR) Cutoff frequency is set to 16 Hz @ 800 Hz by default. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_write_acceleration_config (const MblMwMetaWearBoard *board) |
| Writes the acceleration settings to the sensor Applies the ODR and RANGE values set in set_range() and set_odr(). More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_start (const MblMwMetaWearBoard *board) |
| Switches the accelerometer to active mode. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_stop (const MblMwMetaWearBoard *board) |
| Switches the accelerometer to standby mode. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_enable_acceleration_sampling (const MblMwMetaWearBoard *board) |
| Enables acceleration sampling The board will start gathering data from the accelerometer. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_disable_acceleration_sampling (const MblMwMetaWearBoard *board) |
| Disables acceleration sampling The board will stop gathering data from the accelerometer. More...
|
|
METAWEAR_API MblMwDataSignal * | mbl_mw_acc_mma8452q_get_orientation_detection_data_signal (const MblMwMetaWearBoard *board) |
| Retrieves the data signal representing data from the orientation detection algorithm This signal is static orientation detection (portrait/landscape, up/down, left/right, back/front position) More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_set_orientation_delay (MblMwMetaWearBoard *board, uint16_t delay) |
| Set the orientation calculation mode. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_enable_orientation_detection (const MblMwMetaWearBoard *board) |
| Enables orientation detection The board will start gathering orientation data from the accelerometer. More...
|
|
METAWEAR_API void | mbl_mw_acc_mma8452q_disable_orientation_detection (const MblMwMetaWearBoard *board) |
| Disables orientation detection The board will stop gathering orientation data from the accelerometer. More...
|
|
Functions for interacting with the MMA8452Q accelerometer.
- Copyright
- MbientLab License
This sensor is only available on MetaWear R boards.
Variant of acceleration data that packs multiple data samples into 1 BLE packet to increase the data throughput.
This data signal cannot be used with data processing or logging, only with streaming. This signal is timestamp,x,y,z,x,y,z,x,y,z acc data (it packs three acc data points in one timestamp)
- Returns
- Pointer to the data singal [MblMwCartesianFloat, MblMwCartesianFloat, MblMwCartesianFloat] is return signal data type