提交 389bd055 编写于 作者: C cff-gite

修改sensor的on、once、off用例

Signed-off-by: Ncff-gite <chenfeifei8@huawei.com>
上级 bfb4f92e
...@@ -494,9 +494,9 @@ on(type: sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback&lt;Ori ...@@ -494,9 +494,9 @@ on(type: sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback&lt;Ori
- 示例: - 示例:
``` ```
sensor.on(sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION,function(data){ sensor.on(sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION,function(data){
console.info('X-coordinate component: ' + data.x); console.info('The device rotates at an angle around the X axis: ' + data.beta);
console.info('Y-coordinate component: ' + data.y); console.info('The device rotates at an angle around the Y axis: ' + data.gamma);
console.info('Z-coordinate component: ' + data.z); console.info('The device rotates at an angle around the Z axis: ' + data.alpha);
}, },
{interval: 10000000} {interval: 10000000}
); );
...@@ -550,6 +550,7 @@ on(type:sensor.SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR,callback: Callback&lt;R ...@@ -550,6 +550,7 @@ on(type:sensor.SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR,callback: Callback&lt;R
console.info('X-coordinate component: ' + data.x); console.info('X-coordinate component: ' + data.x);
console.info('Y-coordinate component: ' + data.y); console.info('Y-coordinate component: ' + data.y);
console.info('Z-coordinate component: ' + data.z); console.info('Z-coordinate component: ' + data.z);
console.info('Scalar quantity: ' + data.w);
}, },
{interval: 10000000} {interval: 10000000}
); );
...@@ -1032,9 +1033,9 @@ once(type: sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback&lt;O ...@@ -1032,9 +1033,9 @@ once(type: sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, callback: Callback&lt;O
- 示例: - 示例:
``` ```
sensor.once(sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, function(data) { sensor.once(sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, function(data) {
console.info('X-coordinate component: ' + data.x); console.info('The device rotates at an angle around the X axis: ' + data.beta);
console.info('Y-coordinate component: ' + data.y); console.info('The device rotates at an angle around the Y axis: ' + data.gamma);
console.info('Z-coordinate component: ' + data.z); console.info('The device rotates at an angle around the Z axis: ' + data.alpha);
} }
); );
``` ```
...@@ -1060,6 +1061,7 @@ once(type: sensor.SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback& ...@@ -1060,6 +1061,7 @@ once(type: sensor.SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback: Callback&
console.info('X-coordinate component: ' + data.x); console.info('X-coordinate component: ' + data.x);
console.info('Y-coordinate component: ' + data.y); console.info('Y-coordinate component: ' + data.y);
console.info('Z-coordinate component: ' + data.z); console.info('Z-coordinate component: ' + data.z);
console.info('Scalar quantity: ' + data.w);
} }
); );
``` ```
...@@ -1505,9 +1507,9 @@ sensor.off(sensor.SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callbac ...@@ -1505,9 +1507,9 @@ sensor.off(sensor.SensorType.SENSOR_TYPE_ID_MAGNETIC_FIELD_UNCALIBRATED, callbac
``` ```
function callback(data) { function callback(data) {
console.info('X-coordinate component: ' + data.x); console.info('The device rotates at an angle around the X axis: ' + data.beta);
console.info('Y-coordinate component: ' + data.y); console.info('The device rotates at an angle around the Y axis: ' + data.gamma);
console.info('Z-coordinate component: ' + data.z); console.info('The device rotates at an angle around the Z axis: ' + data.alpha);
} }
sensor.off(sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, callback); sensor.off(sensor.SensorType.SENSOR_TYPE_ID_ORIENTATION, callback);
``` ```
...@@ -1608,6 +1610,7 @@ function callback(data) { ...@@ -1608,6 +1610,7 @@ function callback(data) {
console.info('X-coordinate component: ' + data.x); console.info('X-coordinate component: ' + data.x);
console.info('Y-coordinate component: ' + data.y); console.info('Y-coordinate component: ' + data.y);
console.info('Z-coordinate component: ' + data.z); console.info('Z-coordinate component: ' + data.z);
console.info('Scalar quantity: ' + data.w);
} }
sensor.off(sensor.SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback); sensor.off(sensor.SensorType.SENSOR_TYPE_ID_ROTATION_VECTOR, callback);
``` ```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册