iOS CoreMotion实现设备运动加速度计陀螺仪

用于处理加速度计,陀螺仪,计步器和与环境有关的事件。

Core Motion框架从iOS设备的板载硬件(包括加速计,陀螺仪,计步器,磁力计和气压计)报告与运动和环境有关的数据。您可以使用此框架访问硬件生成的数据,以便您可以在应用程序中使用它。例如,游戏可能使用加速度计和陀螺仪数据来控制屏幕上的游戏行为。 这个框架的许多服务都可以访问硬件记录的原始值和这些值的处理版本。处理后的值不包括第三方因素对该数据的造成不利影响的情况。例如,处理的加速度计值仅反映由用户引起的加速度,而不是由重力引起的加速度。

在iOS 10.0或之后版本的iOS应用程序必须在其Info.plist文件中包含使用说明Key的描述,以告知用户获取所需的数据类型及获取数据类型的目的。未能包含这些Key会导致应用程序崩溃。特别是访问运动和健身数据时,必须声明 NSMotionUsageDescription

设备运动

设备运动服务提供了一种简单的方法,让您获取应用程序的运动相关数据。原始的加速度计和陀螺仪数据需要处理,以消除其他因素(如重力)的偏差。设备运动服务为您处理这些数据,为您提供可以立即使用的精确数据。例如,此服务为用户启动的加速度和重力引起的加速度提供单独的值。因此,此服务可让您专注于使用数据来操纵您的内容,而不是处理该数据。 设备运动服务使用可用的硬件来生成CMDeviceMotion对象,其中包含以下信息:

  1. 设备在三维空间中相对于参考框架的方向(或姿态)
  2. 无偏的旋转速度
  3. 当前重力矢量
  4. 用户生成的加速度矢量(无重力)
  5. 当前的磁场矢量

加速计

该图为,加速度计沿x,y和z轴的速度变化

加速度计测量沿一个轴的速度变化。 所有的iOS设备都有一个三轴加速度计,它在图1所示的三个轴中的每一个轴上提供加速度值。加速度计报告的值以重力加速度的增量进行测量,值1.0代表9.8米的加速度 每秒(每秒)在给定的方向。 取决于加速度的方向,加速度值可能是正值或负值。

陀螺仪

该图为,旋转反向速率对陀螺仪绕x,y和z轴的影响变化

陀螺仪测量设备围绕空间轴旋转的速率。 许多iOS设备都有一个三轴陀螺仪,它可以在图1所示的三个轴中的每一个轴上提供旋转值。旋转值以给定轴每秒的弧度为单位进行测量。 根据旋转的方向,旋转值可以是正值或负值。

代码示例

Push方式获取数据

加速度计

CMMotionManager *manager = [[CMMotionManager alloc] init];
if ([manager isAccelerometerAvailable] && ![manager isAccelerometerActive]){
  NSOperationQueue *queue = [[NSOperationQueue alloc] init];
  manager.accelerometerUpdateInterval = 0.1;//设置信息更新频率(0.1s获取一次)
  [manager startAccelerometerUpdatesToQueue:queue
                 withHandler:^(CMAccelerometerData *accelerometerData, NSError *error)
   {
     CMAcceleration acceleration = accelerometerData.acceleration;

     NSLog(@"x = %.04f", acceleration.x);
     NSLog(@"y = %.04f", acceleration.y);
     NSLog(@"z = %.04f", acceleration.z);

   }];
}

陀螺仪

CMMotionManager *manager = [[CMMotionManager alloc] init];
  if ([manager isGyroAvailable] && ![manager isGyroActive]){
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    manager.gyroUpdateInterval = 0.1;//设置信息更新频率(0.1s获取一次)
    [manager startGyroUpdatesToQueue:queue
               withHandler:^(CMGyroData *gyroData, NSError *error)
     {
      CMRotationRate rotationrate = gyroData.rotationRate;
      NSLog(@"x = %.04f", rotationRate.x);
      NSLog(@"y = %.04f", rotationRate.y);
      NSLog(@"z = %.04f", rotationRate.z);
     }];
  }

Pull方式获取数据

#define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
@interface ViewController ()
@property (strong, nonatomic) CMMotionManager *motionManager;
//UI
@property (strong, nonatomic) UIButton *starButton;       //启动 MotionManager
@property (strong, nonatomic) UIButton *pullButton;       //拉取数据
@property (strong, nonatomic) UIButton *stopButton;       //停止 MotionManager
@end

@implementation ViewController
#pragma mark - 懒加载
- (CMMotionManager *)motionManager{
  if (!_motionManager) {
    _motionManager = [[CMMotionManager alloc] init];
    _motionManager.accelerometerUpdateInterval = 0.1;
    _motionManager.gyroUpdateInterval = 0.1;
  }
  return _motionManager;
}

- (UIButton *)starButton{
  if (!_starButton) {
    _starButton = [[UIButton alloc]initWithFrame:CGRectMake(50, 100, 50, 50)];
    [_starButton setTitle:@"启动" forState:UIControlStateNormal];
    [_starButton addTarget:self action:@selector(startMotion) forControlEvents:UIControlEventTouchUpInside];
  }
  return _starButton;
}

- (UIButton *)pullButton{
  if (!_pullButton) {
    _pullButton = [[UIButton alloc]initWithFrame:CGRectMake(SCREEN_WIDTH/2-50, 100, 100, 50)];
    [_pullButton setTitle:@"拉取数据" forState:UIControlStateNormal];
    [_pullButton addTarget:self action:@selector(pullMotionData) forControlEvents:UIControlEventTouchUpInside];
  }
  return _pullButton;
}

- (UIButton *)stopButton{
  if (!_stopButton) {
    _stopButton = [[UIButton alloc]initWithFrame:CGRectMake(SCREEN_WIDTH-100, 100, 50, 50)];
    [_stopButton setTitle:@"停止" forState:UIControlStateNormal];
    [_stopButton addTarget:self action:@selector(stopMotion) forControlEvents:UIControlEventTouchUpInside];
  }
  return _stopButton;
}

#pragma mark - 生命周期处理
- (void)viewDidLoad {
  [self.view addSubview:self.starButton];
  [self.view addSubview:self.pullButton];
  [self.view addSubview:self.stopButton];
}

#pragma mark - Pull
- (void)startMotion{
  if (self.motionManager.isAccelerometerActive == NO) {
    [self.motionManager startAccelerometerUpdates];
  }
  if (self.motionManager.isGyroActive == NO){
    [self.motionManager startGyroUpdates];
  }
}

- (void)pullMotionData{
  //陀螺仪拉取数据
  CMGyroData *gyroData = [self.motionManager gyroData];
  CMRotationRate rotationrate = gyroData.rotationRate;
  NSLog(@"x = %.04f", rotationRate.x);
  NSLog(@"y = %.04f", rotationRate.y);
  NSLog(@"z = %.04f", rotationRate.z);

  //加速度计拉取数据
  CMAccelerometerData *data = [self.motionManager accelerometerData];
  CMAcceleration acceleration = data.acceleration;
  NSLog(@"x = %.04f", acceleration.x);
  NSLog(@"y = %.04f", acceleration.y);
  NSLog(@"z = %.04f", acceleration.z);
}

- (void)stopMotion{
  //陀螺仪
  if (self.motionManager.isGyroActive == YES) {
    [self.motionManager stopGyroUpdates];
  }
  //加速度计
  if (self.motionManager.isAccelerometerActive == YES) {
    [self.motionManager stopAccelerometerUpdates];
  }
}
@end

Device Motion 拓展功能

CMMotionManager *manager = [[CMMotionManager alloc] init];

if ([manager isDeviceMotionAvailable] && ![manager isDeviceMotionActive]){

  manager.deviceMotionUpdateInterval = 0.01f;
  [manager startDeviceMotionUpdatesToQueue:[NSOperationQueue mainQueue]
               withHandler:^(CMDeviceMotion *data, NSError *error) {
                 double rotation = atan2(data.gravity.x, data.gravity.y) - M_PI;
                 self.imageView.transform = CGAffineTransformMakeRotation(rotation);
               }];
}

加速度计拓展功能

CMMotionManager *manager = [[CMMotionManager alloc] init];
manager.accelerometerUpdateInterval = 0.1;

if ([manager isAccelerometerAvailable] && ![manager isAccelerometerActive]){

  NSOperationQueue *queue = [[NSOperationQueue alloc] init];
  [manager startAccelerometerUpdatesToQueue:queue
                 withHandler:^(CMAccelerometerData *accelerometerData, NSError *error)
   {
     CMAcceleration acceleration = accelerometerData.acceleration;

     if (acceleration.x < -2.0) {
       dispatch_async(dispatch_get_main_queue(), ^{
         [self.navigationController popViewControllerAnimated:YES];
       });
     }
   }];
}

上述代码, Demo地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

您可能感兴趣的文章:

  • IOS 陀螺仪开发(CoreMotion框架)实例详解
(0)

相关推荐

  • IOS 陀螺仪开发(CoreMotion框架)实例详解

    iOS陀螺仪 参数意义 self.mManager = [[CMMotionManager alloc]init]; self.mManager.deviceMotionUpdateInterval = 0.5; if (self.mManager.gyroAvailable) { [self.mManager startDeviceMotionUpdatesToQueue:[NSOperationQueue currentQueue] withHandler:^(CMDeviceMotion

  • iOS CoreMotion实现设备运动加速度计陀螺仪

    用于处理加速度计,陀螺仪,计步器和与环境有关的事件. Core Motion框架从iOS设备的板载硬件(包括加速计,陀螺仪,计步器,磁力计和气压计)报告与运动和环境有关的数据.您可以使用此框架访问硬件生成的数据,以便您可以在应用程序中使用它.例如,游戏可能使用加速度计和陀螺仪数据来控制屏幕上的游戏行为. 这个框架的许多服务都可以访问硬件记录的原始值和这些值的处理版本.处理后的值不包括第三方因素对该数据的造成不利影响的情况.例如,处理的加速度计值仅反映由用户引起的加速度,而不是由重力引起的加速度.

  • iOS获取当前设备型号等信息(全)包含iPhone7和iPhone7P

    #include <sys/types.h> #include <sys/sysctl.h> //获得设备型号 + (NSString *)getCurrentDeviceModel { int mib[2]; size_t len; charchar *machine; mib[0] = CTL_HW; mib[1] = HW_MACHINE; sysctl(mib, 2, NULL, &len, NULL, 0); machine = malloc(len); sysc

  • iOS如何获取设备型号的最新方法总结

    在开发中,我们经常需要获取设备的型号(如 iPhone X , iPhone 8 Plus 等)以进行数据统计,或者做不同的适配.但苹果并没有提供相应的系统 API 让我们直接取得当前设备的型号. 其中, UIDevice 有一个属性 model 只是用于获取 iOS 设备的类型,如 iPhone , iPod touch , iPad 等:而其另一个属性 name 表示当前设备的名称,由用户在设置>通用>关于>名称中设定,如 My iPhone , xxx 的 iPhone 等.然而,

  • iOS获取当前设备WiFi信息的方法

    前言 最近项目有个需求,获取当前连接的wifi的信息,通过努力终于实现了,现在分享给大家,有需要的可以一起来看. 注意:本文是以Swift代码为例 1.添加模块引用 首先我们在需要获取 WiFi 信息的地方引用需要的模块: import SystemConfiguration.CaptiveNetwork 2.添加获取代码 接下来编写获取 WiFi 信息的代码,如下: //获取 WiFi 信息 func getWifiInfo() -> (ssid: String, mac: String) {

  • iOS 获取设备唯一标示符的方法详解

    在开发中会遇到应用需要记录设备标示,即使应用卸载后再安装也可重新识别的情况,在这写一种实现方式--读取设备的UUID(Universally Unique Identifier)并通过KeyChain记录. 首先iOS中获取设备唯一标示符的方法一直随版本的更新而变化.iOS 2.0版本以后UIDevice提供一个获取设备唯一标识符的方法uniqueIdentifier,通过该方法我们可以获取设备的序列号,这个也是目前为止唯一可以确认唯一的标示符.好景不长,因为该唯一标识符与手机一一对应,苹果觉得

  • iOS如何保持程序在后台长时间运行

    iOS 为了让设备尽量省电,减少不必要的开销,保持系统流畅,因而对后台机制采用墓碑式的"假后台".除了系统官方极少数程序可以真后台,一般开发者开发出来的应用程序后台受到以下限制: 1.用户按Home之后,App转入后台进行运行,此时拥有180s后台时间(iOS7)或者600s(iOS6)运行时间可以处理后台操作 2.当180S或者600S时间过去之后,可以告知系统未完成任务,需要申请继续完成,系统批准申请之后,可以继续运行,但总时间不会超过10分钟. 3.当10分钟时间到之后,无论怎么

  • iOS App中调用iPhone各种感应器的方法总结

    CoreMotion框架的使用 CoreMotion框架十分强大,它不仅将加速度传感器和螺旋仪传感器进行了统一配置和管理,还为我们封装了许多算法,我们可以直接获取到设备的运动状态信息. 1.CoreMotion负责处理的数据 CoreMotion负责处理四种数据,一种是加速度数据,一种是螺旋仪数据,一种是磁感应数据,还有一种是前三种数据通过复杂运算得到的设备的运动数据.几个主要的类如下: CMAccelerommterData:设备的加速度数据 typedef struct {     doub

  • IOS 打包静态库详细介绍

    IOS 打包静态库详细介绍 一.前言 前段时间看的一本书上说:"隔着一段距离看,很多有趣的知识看起来都很唬人."比如说这篇我要总结的"静态库知识",在我初出茅庐的时候着实觉得那些后缀名为".frameworke".".a".".dylib"的文件很神秘,很高冷.那时我虽然知道只要导入一个库就能引用库里面很多封装好的东西,但对这个"库"究竟是什么"鬼",一直都是云里雾里

  • IOS 创建彩色二维码实例详解

    IOS 创建彩色二维码 因为系统创建的二维码默认都是黑色的,所以突然想改变一下二维码颜色,具体操作有点复杂,而且其中用到了好多C语言的语法,Swift不好写,所以默认用了OC.只贴了.m文件的代码,.h文件就是几个类函数的声明. #import "UIImage+CreateQRCode.h" @implementation UIImage (CreateQRCode) + (UIImage *)createQRCode:(NSString *)string andSize:(CGSi

  • Cisco路由交换设备之IOS故障排除

    IOS是路由器交换机设备的核心,IOS全称internet operate system,中文是网络操作系统的意思.他就好比计算机的操作系统windows一样,虽然是软件但出现问题就无法进行任何软件的运行了.所以如果IOS出现问题的话路由交换设备将无法正常运行,配置命令都将荡然无存.我们只能通过重新安装IOS来解决. 本文将以cisco 3550为例介绍IOS的恢复方法: 第一步:用控制线连接交换机console口与计算机串口1,用带有xmodem功能的终端软件连接(微软操作系统自带的超级终端软

随机推荐