Hello everyone,
I'm a beginner with the CC2650 and I'm trying to get the movement data in my app Previously I worked with the old sensorTag(CC2541) we had a different service for every movement sensor (accelerometer, gyro, magneto) but now it seem to be all in one service : movement service (AA81, AA82, AA83)
The problem is when I try to manager the configuration (AA82), with the help of the wiki : processors.wiki.ti.com/.../CC2650_SensorTag_Usxer's_Guide#Configuration
I just dont understand this : One bit for each gyro and accelerometer axis (6), magnetometer (1), wake-on-motion enable (1), accelerometer range (2). Write any bit combination top enable the desired features. Writing 0x0000 powers the unit off.
For exemple, for the tempetature's configuration I just have my byte array with 0x01 to enable the data collection
byte[] enableSensor = new byte[1];
enableSensor[0] = 0x01;
So my question is : what's the format of the configuration, for example, get the x y z axis accelerometer and then get the data
Thank you all in advance !
Regards