Core Motion is a framework within Apple's iOS SDK used to access all kind of motion sensor data. Introduced in version 4.0 it is the recommended way of accessing gyroscope or accelerometer data, and since version 5.0 magnetometer (compass) data as well.

learn more… | top users | synonyms

0
votes
0answers
12 views

How to use deviceMotion attitude values (roll,pitch and yaw) to detect a motion

i a using coreMotion in my app to detect a motion of iOS device. i know how to get the different sensor's data from coreMotion, I am getting roll,pitch And Yaw data as follows from the deviceMotion ...
0
votes
0answers
11 views

Can anyone confirm the value of CoreMotion CMAttitude.rotationMatrix?

I believe that the CMRotationMatrix one gets from the CMMotionManager corresponds to this: where: c -> Cos, s -> Sin, and 1 -> Pitch, 2 -> Yaw, 3 -> Roll (e.g., c1c3 -> Cos(Pitch)*Cos(Roll)). It ...
1
vote
0answers
17 views

Attitude change - angles and axis issue - quaternion math

I have an app that records angles as user is walking around an object, while pointing device (preferably) at the center of the object. Angle gets reset on user's command - so reference attitude gets ...
0
votes
1answer
23 views

CMDeviceMotion userAcceleration is upside down?

I'm seeing some unexpected readings from the userAcceleration field in CMDeviceMotion. When I look at the raw accelerometer data from CMAccelerometerData, I see that if the iPhone is flat on a table ...
0
votes
0answers
44 views

IOS autoresizing flags corrupting rotation transformation

I am executing a rotation transformation on a UIImageView of a compass using the reading from the CMDeviceMotion manager. This rotates the compass as the user faces different directions. Seems to ...
0
votes
0answers
32 views

iOS Core Motion attitude with magnetometer jumping

I have an augmented reality application. It gets device attitude using north reference frame: CMAttitudeReferenceFrameXMagneticNorthZVertical and then projects objects on screen using rotation matrix. ...
0
votes
0answers
71 views

Detect iPhone movement up/down left/right with CMDeviceMotion

I'm developing an app that needs to be notified when the device is moved swiftly up, down, left or right on a 3-dimensional plane. Obviously, you would turn right to the Core Motion framework and the ...
0
votes
3answers
50 views

Stop gyro updates

I cant work out to stop the Gyro updates in my Cocos2D game, I have got the following code in my init: ` //gyro motionManager = [[CMMotionManager alloc] init]; referenceAttitude = ...
1
vote
2answers
45 views

Excessive “flickering” in CMMotionManager deviceMotion attitude values

I'm logging the "attitude" value I get from CMMotionManager deviceMotion in a CADisplayLink callback (I have a need to perform an animation based on device rotation). The values seem to "twitch" by a ...
0
votes
0answers
34 views

iOS CoreMotion: measuring roll and pitch, how to control for movement around the room?

At the motion manager's device motion update interval, I calculate dPitch and dRoll from the quaternion and from the previous quaternion, and thereby I move a figure around the screen (change in pitch ...
1
vote
1answer
116 views

Using accelerometer and gyrometer to track the phone movement independently from the orientation

I have been experimenting with the Coremotion APIS, with the goal of transforming the coordinates from the phone reference system to the "earth" reference system as the one that is stored in the ...
1
vote
1answer
50 views

How to determine the age of CMDeviceMotion in seconds

I want to be able to turn device motion updates on and off during my game. But after I turn them off and then back again, .deviceMotion property of CMMotionManager returns the last know deviceMotion ...
1
vote
1answer
175 views

How to start and stop CMMotionManager startAccelerating and stopAccelerating while iphone in accelerate mode or in idel mode?

I am developing app related to accelerating. I'm using CMMtionManager object. but when I call startaccelerating method its working and continuously calling that method even iphone in idle mode. How to ...
0
votes
0answers
32 views

Need help replicating iOS Music.app volume slider reflections

I am trying to replicate the Music.app volume slider reflections just for fun and introducing myself to CoreMotion.framework. Here is my demo project. The problem is, when you tilt the device about ...
1
vote
1answer
47 views

How to display an alert when user shake the iPhone?(This should be work even user is not using the app)

I want to fire a method(Display alert) in my app when user is shaking the iphone.This should be work even if user is not using the app.How can I do it ?
3
votes
2answers
57 views

How to store coordinates effectively if they are being generated every 10 ms

I have an iPad app that gets X,Y and Z coordinates from the gyros every 10 ms. What I need to do is store these in the ram until they can be persisted at a convenient time. What is an efficient way of ...
0
votes
0answers
112 views

Create app for Pedometer using CoreMotion [closed]

I want to create the app for Pedometer using CoreMotion. But I've heard that Apple will not let pedometers get approved anymore using accelerometers. I've also heard that the apple restrict ...
0
votes
1answer
150 views

CoreMotion wont give me roll, pitch and yaw

sBefore UIAccelerometer was depricated from iOS I used the data from x, y and z from this class to calculate pitch, roll and yaw. I also had to do some filtering, but now I see that with the ...
11
votes
3answers
385 views

In iOS, what is the difference between the Magnetic Field values from the Core Location and Core Motion frameworks?

I have two ways of getting the magnetic fields (strength, x, y, and z) using the iOS device's magnetometer. 1) Core Location Used the CLHeading from CLLocationManagerDelegate method ...
0
votes
0answers
27 views

How to judge about the action between two devices

Firstly, I think two devices(iphone) when I handle it to hit each other could be viewed as two devices' action is from motion to motionless. And a moment of stoping could trigger two devices to ...
2
votes
1answer
108 views

Gyroscope CMAttitude setting custom reference frame

I'm using pitch and roll from CMAttitude to control the position of a point in an iPhone Game. As I start the level, I register the reference attitude and during the game I use [attitude ...
0
votes
1answer
68 views

How to implement the function of “bump”? [closed]

Firstly, I think bump should use accelerator sensor to recognise the device from motion to stop suddenly. So I look up the document , which point out three apis that include of motionBegan, motionEnd ...
0
votes
2answers
185 views

Accelerometer didAccelerate delegate method not getting called in iOS sdk 6.0

I am developing application to get threshold how forcefully user shook iOS device. I am using iOS sdk 6.0. I tried UIResponder delegate method motionEnded:: It get called when device is shaken but do ...
1
vote
0answers
75 views

cmdevicemotion stops providing update

I have some weird issue in my code that I can't figure out and need some help. I have defined a CMMotionManager in my AppDelegate. In my view controller, I define a property: @property ...
0
votes
0answers
312 views

Strange behavior of Core Motion's accelerometer implemented in the background mode

I'm implementing a pedometer on iOS. An important requirement is it must work even if the app were to put in the background mode (e.g., a device is locked or a user presses the home button). You can ...
0
votes
1answer
209 views

What replaces the iOS 5 deprecated accelerometer:didAccelerate? [closed]

Hmmm ... I am behind the times and trying to port over some old code to a new application and the accelerator delegation is deprecated. There must be a replacement. Please point me to the docs and ...
2
votes
1answer
76 views

MonoTouch - Accelerometer with MotionManager stop sending updates

I'm trying to use the accelerometer with Monotouch but a got an issue with MotionManager. Updates stop to be sent after 2-3 sec. Here is the code. (Everything is created in the constructor of my main ...
1
vote
1answer
158 views

How multiplyByInverseOfAttitude (CMAttitude Class ) is implemented?

I need to implement the same behaviour used by multiplyByInverseOfAttitude from the CMAttitude iOS class. Please note that I cannot directly use it but I have the right CMAttitude objects. Anyone can ...
1
vote
1answer
168 views

Reverse the rotation of one single axis of CMRotationMatrix

Please bear with me, I'm really awful at matrix math. I have a layer that I want to remain "stationary" with gravity at the referenceAttitude while the phone rotates to other attitudes. I have a ...
2
votes
1answer
348 views

iOS detect movement of user

I want to create a simple app that draws a simple line on screen when I move my phone on the Y-axis from a start point to end point, for example from point a(0,0) to point b(0, 10) please help demo : ...
0
votes
1answer
120 views

Need assistance regarding Core Motion

Using core motion I get 3 values of yaw, pitch, roll, Now using these values I need to create a custom loader, when user moves device right, forward, left, backward this loader will fill. So I draw a ...
0
votes
0answers
242 views

Inaccurate accelerometer update interval

I'm using the CoreMotion API and I would like to save the accelerometer's values every 10ms (100hz). The update intervals I obtained so far aren't accurate. Here's an example of update intervals I got ...
1
vote
1answer
68 views

How can i use the accererometer to check whether the device is stable?

I know how to get the accel data but was wondering if anyone knows of any code samples that would determine whether the ios device is stable (swaying or shaking) Thanks is advance. V
1
vote
3answers
135 views

What does Core Motion error 102 mean?

I use Core Motion's sensor fusing to get north oriented motion updates: [motionManager startDeviceMotionUpdatesUsingReferenceFrame:CMAttitudeReferenceFrameXTrueNorthZVertical toQueue:motionQueue ...
0
votes
2answers
106 views

Do I need to use NSTimer to get data from gyroscope iOS?

Right now I'm using the following code to get Euler values from the device's gyroscope. Is this how it's supposed to be used? Or is there a better way without using NSTimer? - (void)viewDidLoad { ...
3
votes
1answer
335 views

Is it possible to use core motion for distance measurement [duplicate]

Possible Duplicate: Getting displacement from accelerometer data with Core Motion Android accelerometer accuracy (Inertial navigation) I am trying to use core motion user acceleration ...
1
vote
2answers
114 views

CoreMotion-DeviceMotion not available on iPad 3

I have this strange problem. In my app I'm asking the device, if DeviceMotion is available: if (coreMotionManager.isDeviceMotionAvailable) { coreMotionManager.deviceMotionUpdateInterval = 1.0 / ...
1
vote
0answers
109 views

What exactly is Z axis in CMAttitudeReferenceFrameXArbitraryZVertical, and does X axis change as per the motion of the user?

I am using core motion to get device motions running the project on an iPod touch 3. The CMAttitudeReferenceFrame used in my method - ...
3
votes
2answers
489 views

Drifting yaw angle after moving fast

In my current project I ran into trouble regarding the quaternion provided by Core Motion's CMAttitude. I put the iPhone 5 (iOS 6.0.1) at a well defined start position. Then I start to move the device ...
0
votes
0answers
103 views

CoreMotion pitch - not quite 90 degrees

I've been noticing that the below code fails to show the pitch of my iPhone anything over 86-88 degrees. It does vary from time to time, but i've never seemed to get it at 90 degrees. I'm aware that ...
1
vote
1answer
249 views

Using Core Motion in landscape mode

I am currently working on augmented reality and for that purpose I'd like to use the gyroscope and Core Motion. I've studied the Apple pARk sample code, I understand most of the maths I've spend time ...
0
votes
1answer
110 views

CoreMotion crash: CLMotion core, CLGeomagneticModelProvider_Type

Application crashes when CLGeomagneticModelProvider_Type notification is received. Cmmotionmanager object would be listening to notification. < Crash log: Exception Type: EXC_BAD_ACCESS ...
1
vote
1answer
198 views

Add CoreMotion Framework With Theos

I am trying to use the CoreMotion framework and am compiling with theos on my jailbroken iphone4. I noticed in Add Twitter.framework to Theos on iPhone that the makefile needed to be modified to ...
1
vote
1answer
96 views

CMCalibratedMagneticField doesn't update

CMCalibratedMagneticField returns 0 all the time. CMAcceleration returns values, CMMagnetometerData returns values too. Only CMCalibratedMagneticField doesn't, I need it because it is the ...
1
vote
1answer
382 views

Not getting the correct accelerometer data in background using core motion

I am implementing accelerometer data in background using coremotion. I am getting the data in the background but value of x,y,z coordinates are not correct. Here is my code. - ...
2
votes
0answers
640 views

How to get the Accelerometer data in background using core motion?

My requirement in the application is that I have to detect the steps counting from the application and this should be continue even the application running in the background. I have studied on this; ...
-1
votes
1answer
220 views

How to get the Accelerometer data in the background?

My requirement in the application is that I have to detect the steps counting from the application and this should be continue even the application running in the background. I have studied on this ...
2
votes
2answers
165 views

iPhone orientation — how do I figure out which way is up?

I'm trying to draw a 2D image on the screen that is always facing "up". If the user is rotating their phone, I want to ensure my 2D object does not rotate with the device; it should always "stand ...
0
votes
0answers
120 views

Detect orientation while using picker.cameraOverlayView, iPhone

I am using cameraOverlayView to add custom controls to the camera picker in my app. The view is locked in portrait orientation, from what I gather, and cannot detect orientation via the ...
0
votes
2answers
537 views

Core Motion accelerometer shows strange data

Short question: acceleration from CoreMotion values get rather large drift even device laying on table. Is it ok or what am I doing wrong? Long question: I am using CoreMotion accelerometer like ...

1 2 3 4