harmony 鸿蒙Sensor Development (ArkTS)

  • 2025-06-06
  • 浏览 (4)

Sensor Development (ArkTS)

When to Use

With the sensor module, a device can obtain sensor data. For example, the device can subscribe to data of the orientation sensor to detect its own orientation, and data of the pedometer sensor to learn the number of steps the user walks every day.

For details about the APIs, see Sensor.

Available APIs

Name Description
sensor.on(sensorId, callback:AsyncCallback<Response>): void Subscribes to data changes of a type of sensor.
sensor.once(sensorId, callback:AsyncCallback<Response>): void Subscribes to only one data change of a type of sensor.
sensor.off(sensorId, callback?:AsyncCallback<void>): void Unsubscribes from sensor data changes.
sensor.getSensorList(callback: AsyncCallback<Array<Sensor>>): void Obtains information about all sensors on the device. This API uses an asynchronous callback to return the result.

How to Develop

The acceleration sensor is used as an example.

  1. Import the module.
   import { sensor } from '@kit.SensorServiceKit';
   import { BusinessError } from '@kit.BasicServicesKit';
  1. Obtain information about all sensors on the device.

    sensor.getSensorList((error: BusinessError, data: Array<sensor.Sensor>) => {
        if (error) {
            console.info('getSensorList failed');
        } else {
            console.info('getSensorList success');
            for (let i = 0; i < data.length; i++) {
                console.info(JSON.stringify(data[i]));
            }
        }
    });
    

    The minimum and the maximum sampling periods supported by the sensor are 5000000 ns and 200000000 ns, respectively. The sampling interval may vary depending on the sensor type. The specified sampling interval must be within this range. If the configured value is smaller than the minimum sampling interval of the sensor, the minimum sampling interval is used. If the configured value is larger than the maximum sampling interval of the sensor, the maximum sampling interval is used. A smaller value means a higher reporting frequency and a higher power consumption.

  2. Check whether the corresponding permission has been configured. For details, see Declaring Permissions.

  3. Register a listener. You can call on() or once() to listen for sensor data changes.

The on() API is used to continuously listen for data changes of the sensor. The sensor reporting interval is set to 100000000 ns.

   sensor.on(sensor.SensorId.ACCELEROMETER, (data: sensor.AccelerometerResponse) => {
        console.info("Succeeded in obtaining data. x: " + data.x + " y: " + data.y + " z: " + data.z);
   }, { interval: 100000000 });
![](figures/002.png)

The once() API is used to listen for only one data change of the sensor.

   sensor.once(sensor.SensorId.ACCELEROMETER, (data: sensor.AccelerometerResponse) => {
       console.info("Succeeded in obtaining data. x: " + data.x + " y: " + data.y + " z: " + data.z);
   });

  1. Cancel continuous listening.

    sensor.off(sensor.SensorId.ACCELEROMETER);
    

你可能感兴趣的鸿蒙文章

harmony 鸿蒙Sensor Service Kit

harmony 鸿蒙Sensor Development

harmony 鸿蒙Sensor Development (C/C++)

harmony 鸿蒙Sensor Overview

harmony 鸿蒙Sensor Overview

harmony 鸿蒙Introduction to Sensor Service Kit

harmony 鸿蒙Vibrator Development

harmony 鸿蒙Vibrator Development (C/C++)

harmony 鸿蒙Vibrator Development (ArkTS)

harmony 鸿蒙Vibrator Overview

0  赞