Is it likely in 2020?
I will not persue any gyro dependnat programming if it's not likely coming out soon?
It's just one options object for all the sensors. period is a shared option.
e.g.
var sensorOptions = { :period => 1, :gyroscope => { :enabled => true, :sampleRate => 25, :accelerometer => { :enabled => true, :sampleRate => 25, :includePower => true, :includePitch => false, :includeRoll => false } } Sensor.registerSensorDataListener(method(:sensor_callback), sensorOptions);
This gives 404. I searched the api docs (https://developer.garmin.com/connect-iq/api-docs/, using built-in search capability of the page). No "Gyro" found... Was the class renamed? Removed?
This gives 404. I searched the api docs (https://developer.garmin.com/connect-iq/api-docs/, using built-in search capability of the page). No "Gyro" found... Was the class renamed? Removed?
You need to look at the doc included with the 4.1.0-beta1 SDK. The doc on the web if for 4.0.x production SDKs.
With the 4.1.0-beta1 SDK as your current SDK, in Eclipse, under the Connect IQ menu, it's API Doc. In VS Code, from the command palette, do Monkey C: View documentation, then API Doc.
I still have this feature request in 2025... registerSensorDataListener() doesn't help me because I want gyroscope data in real-time to do sensor fusion as in dawser's initial description of the request. Please add the x,y,z array to Sensor::Info so we can access it in real-time.