Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Game.m

#import "Game.h"
#import "CoreMotion.h"

@implementation Game

- (id) init 
{
    self = [super init];

    self.stopButtonPressed = NO;

    return self;
}
-(void) play
{
     CMMotionManager *motionManager;
     motionManager = [[CMMotionManager alloc] init];
     motionManager.deviceMotionUpdateInterval = 1.f/10.f;
     [motionManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue]
                                        withHandler:^(CMDeviceMotion *motion, NSError *error)
                                        {
                                          NSLog(@"--------------> %i %i", motionManager.deviceMotionActive , motionManager.deviceMotionAvailable);

                                          NSLog(@"Degrees : %F",atan(motion.magneticField.field.y/fabs(motion.magneticField.field.x)) * 180.0 / M_PI);
                                        }
     ];
}

MyViewController.m

#import "MyViewController.h"
#import "Game.h"

@interface MyViewController()
{
    Game *game;
}
@end

@implementation MyViewController

-(void) viewDidLoad
{
    game = [[Game alloc] init];
}

- (IBAction)playPressed:(UIButton *)sender 
{
    // using a separate thread
    //[game performSelectorInBackground:@selector(play) withObject:nil];

    // not using a separate thread
    [game play] ;
}

- (IBAction)stopPressed:(UIButton *)sender 
{
    game.stopButtonPressed = YES;
}

@end
share|improve this question

3 Answers

up vote 1 down vote accepted

the magnetic field value is not available immediately after you call the method startDeviceMotionUpdates. You need to try to retrive the value in a later point (i.e. using a NSTimer and checking for updates.

Although this should work it isn't a good practice. If you only need the magnetic field value you should take a look at the documentation of CMMotionManager and use the method startMagnetometerUpdatesToQueue:withHandler: like the following:

[motionManager startMagnetometerUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMMagnetometerData *magnetometerData, NSError *error) {
  CMMagneticField field = magnetometerData.magneticField;
  NSLog(@"x: %f  y:%f  z:%f", field.x, field.y, field.z);
}];

cheers, anka

share|improve this answer
I will try that but I don't want to use the magnetometerData's raw values but rather the deviceMotion's processed calibrated data, as in : NSOperationQueue *myQueue = [[NSOperationQueue alloc] init]; CMMotionManager *motionManager; motionManager = [[CMMotionManager alloc] init]; [motionManager startDeviceMotionUpdatesToQueue:myQueue withHandler:^(CMDeviceMotion *motion, NSError *error){NSLog(@"Value of X : %F",motion.magneticField.field.x)} will this code work? – user1073400 Jul 31 '12 at 1:01
Hi, yes this code should work too. – anka Jul 31 '12 at 10:25
I tried that (I've edited my original post as well to reflect the changes I made), the app doesn't crash, but I get nothing. Not even a log output on the console. – user1073400 Jul 31 '12 at 11:50
Hi, use the following operation queue [NSOperationQueue currentQueue] and do not forget to set the update rate with motionManager.deviceMotionUpdateInterval = 1.f/10.f;. – anka Jul 31 '12 at 12:10
I've re-edited my post to the current code I'm using but I still get nothing. Sorry but I'm fairly new to Obj-C.. :) – user1073400 Jul 31 '12 at 12:21
show 8 more comments

BTW One possibility is that the device you are running may not even have a magnetometer. See magnetometer-for-compass-on-ipod-touch-4g Where I point to apple-devices-with-magnetometer

share|improve this answer
I'm running everything on an iPhone 4S.. – user1073400 Jul 31 '12 at 12:31
Just checking! Its been missed before. – Peter M Jul 31 '12 at 12:34
cool..no worries :) – user1073400 Jul 31 '12 at 12:48

You need to hold onto the CMMotionManager. So make an instance variable for it. For example:

Game.m

#import "Game.h"
#import "CoreMotion.h"

@interface Game ()
@property (nonatomic, strong) CMMotionManager *motionManager;
@end

@implementation Game

@synthesize motionManager = _motionManager;

- (id) init 
{
    self = [super init];

    self.stopButtonPressed = NO;

    return self;
}
-(void) play
{
     self.motionManager = [[CMMotionManager alloc] init];
     self.motionManager.deviceMotionUpdateInterval = 1.f/10.f;
     [self.motionManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue]
                                             withHandler:^(CMDeviceMotion *motion, NSError *error)
                                             {
         NSLog(@"--------------> %i %i", self.motionManager.deviceMotionActive , self.motionManager.deviceMotionAvailable);
         NSLog(@"Degrees : %F",atan(motion.magneticField.field.y/fabs(motion.magneticField.field.x)) * 180.0 / M_PI);
                                             }
     ];
}

The problem is that your CMMotionManager that you're creating is being deallocated at the end of the play method since nothing is holding onto it. So the handler never gets called back because your motion manager has gone away.

share|improve this answer
I tried that but I still get Degrees : NAN – user1073400 Jul 31 '12 at 21:52
Have you tried looking at startMagnetometerUpdatesToQueue:withHandler:? – mattjgalloway Jul 31 '12 at 22:07
No because it is supposed to return raw biased magnetic field values where as the DeviceMotion class (or the CLLocationManager) returns already processed unbiased values, according to documentation.. – user1073400 Jul 31 '12 at 22:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.