有没有办法从Apple Watch访问加速度计?

时间:2014-11-18 19:58:36

标签: ios watchkit accelerometer

今天发布的WatchKit看起来并没有包含这样的API。

4 个答案:

答案 0 :(得分:25)

Watchkit for watchOS 2.0中的传感器数据信息现已可用

您可以在以下会话中查看此信息,总共30分钟的演示文稿。如果您不想观看整个会话,那么您可以直接跳转到所在的CoreMotionHealthKit功能22-28分钟之间:

WatchKit for watchOS 2.0 Session in WWDC 2015

心率实施

https://developer.apple.com/documentation/healthkit/hkworkout

加速度计实施

以下是WatchKit Extension中加速度计的实现,这是reference:

import WatchKit
import Foundation
import CoreMotion

class InterfaceController: WKInterfaceController {


    @IBOutlet weak var labelX: WKInterfaceLabel!
    @IBOutlet weak var labelY: WKInterfaceLabel!
    @IBOutlet weak var labelZ: WKInterfaceLabel!
    let motionManager = CMMotionManager()


    override func awakeWithContext(context: AnyObject?) {
        super.awakeWithContext(context)

        motionManager.accelerometerUpdateInterval = 0.1
    }

    override func willActivate() {
        super.willActivate()

        if (motionManager.accelerometerAvailable == true) {
            let handler:CMAccelerometerHandler = {(data: CMAccelerometerData?, error: NSError?) -> Void in
                self.labelX.setText(String(format: "%.2f", data!.acceleration.x))
                self.labelY.setText(String(format: "%.2f", data!.acceleration.y))
                self.labelZ.setText(String(format: "%.2f", data!.acceleration.z))
            }
            motionManager.startAccelerometerUpdatesToQueue(NSOperationQueue.currentQueue()!, withHandler: handler)
        }
        else {
            self.labelX.setText("not available")
            self.labelY.setText("not available")
            self.labelZ.setText("not available")
        }
    }

    override func didDeactivate() {
        super.didDeactivate()

        motionManager.stopAccelerometerUpdates()
    }
}

答案 1 :(得分:9)

没有。无法直接访问Apple Watch传感器(包括加速度计)。

与往常一样,如果这是您想要的,请在https://bugreport.apple.com提交申请。

答案 2 :(得分:4)

watchOS 4&更新iOS 11:现在还可以使用陀螺仪数据(旋转速率),并且可以通过更新的CoreMotion界面访问手表中的所有传感器数据。

更具体地说CMDeviceMotion让你:

  • 态度&转速
  • 重力&用户加速
  • 校准磁场
  • ...

使用CMDeviceMotion实施加速度计:

class InterfaceController: WKInterfaceController {

let motionManager = CMMotionManager()

override func awake(withContext context: Any?) {
    super.awake(withContext: context)
    motionManager.deviceMotionUpdateInterval = 0.1
}

override func willActivate() {
    super.willActivate()
    if motionManager.isDeviceMotionAvailable {
        let coreMotionHandler : CMDeviceMotionHandler = {(data: CMDeviceMotion?, error: Error?) -> Void in
            // do something with data!.userAcceleration
            // data!. can be used to access all the other properties mentioned above. Have a look in Xcode for the suggested variables or follow the link to CMDeviceMotion I have provided
        }
        motionManager.startDeviceMotionUpdates(to: OperationQueue.current!, withHandler: coreMotionHandler)
    } else {
        //notify user that no data is available
    }
}

override func didDeactivate() {
    super.didDeactivate()
    motionManager.stopDeviceMotionUpdates()
}
}

有关上述实施的说明:

虽然这种方法可以让你从A到B从Apple Watch获得一些实时数据,但是在这个official Apple tutorial中有一个更好的,绝对更多的生产就绪版本,这解释了如何分离来自InterfaceController的传感器逻辑在一个单独的模型中等等 - 在我看来非常有用。

答案 3 :(得分:2)

明年我们最有可能获得它,届时Apple将允许我们构建完整的应用程序。到目前为止,它只是UI,Glances和Notifications。

更新 :Apple现在已经为它提供了开发人员API。检查卡西利亚斯的回答。