• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (c) 2021 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16/**
17 * @addtogroup HdiSensor
18 * @{
19 *
20 * @brief Provides unified APIs for sensor services to access sensor drivers.
21 *
22 * A sensor service can obtain a sensor driver object or agent and then call APIs provided by this object or agent to
23 * access different types of sensor devices based on the sensor IDs, thereby obtaining sensor information,
24 * subscribing to or unsubscribing from sensor data, enabling or disabling a sensor,
25 * setting the sensor data reporting mode, and setting sensor options such as the accuracy and measurement range.
26 *
27 * @version 1.0
28 */
29
30/**
31 * @file SensorTypes.idl
32 *
33 * @brief Defines the data used by the sensor module, including the sensor information,
34 * and reported sensor data.
35 *
36 * @since 2.2
37 * @version 1.0
38 */
39
40package ohos.hdi.sensor.v1_0;
41
42/**
43 * @brief Defines basic sensor information.
44 *
45 * Information about a sensor includes the sensor name, vendor, firmware version, hardware version, sensor type ID,
46 * sensor ID, maximum measurement range, accuracy, and power.
47 *
48 * @since 2.2
49 */
50struct HdfSensorInformation {
51    String sensorName; /**< Sensor name */
52    String vendorName; /**< Sensor vendor */
53    String firmwareVersion; /**< Sensor firmware version */
54    String hardwareVersion; /**< Sensor hardware version */
55    int sensorTypeId; /**< Sensor type ID (described in {@link SensorTypeTag}) */
56    int sensorId;     /**< Sensor ID, defined by the sensor driver developer */
57    float maxRange;   /**< Maximum measurement range of the sensor */
58    float accuracy;   /**< Sensor accuracy */
59    float power;      /**< Sensor power */
60    long minDelay; /**< Minimum sample period allowed in microseconds */
61    long maxDelay; /**< Maxmum sample period allowed in microseconds */
62};
63
64/**
65 * @brief Defines the data reported by the sensor.
66 *
67 * The reported sensor data includes the sensor ID, sensor algorithm version, data generation time,
68 * data options (such as the measurement range and accuracy), data reporting mode, data address, and data length.
69 *
70 * @since 2.2
71 */
72struct HdfSensorEvents {
73    int sensorId;            /**< Sensor ID */
74    int version;             /**< Sensor algorithm version */
75    long timestamp;           /**< Time when sensor data was generated */
76    unsigned int option;     /**< Sensor data options, including the measurement range and accuracy */
77    int mode;                /**< Sensor data reporting mode */
78    unsigned char[] data;    /**< Sensor data vector */
79    unsigned int dataLen;    /**< Sensor data length */
80};
81
82/**
83 * @brief Enumerates sensor types.
84 *
85 * @since 2.2
86 */
87enum HdfSensorTypeTag {
88    HDF_SENSOR_TYPE_NONE                = 0,   /**< None, for testing only */
89    HDF_SENSOR_TYPE_ACCELEROMETER       = 1,   /**< Acceleration sensor */
90    HDF_SENSOR_TYPE_GYROSCOPE           = 2,   /**< Gyroscope sensor */
91    HDF_SENSOR_TYPE_PHOTOPLETHYSMOGRAPH = 3,   /**< Photoplethysmography sensor */
92    HDF_SENSOR_TYPE_ELECTROCARDIOGRAPH  = 4,   /**< Electrocardiogram (ECG) sensor */
93    HDF_SENSOR_TYPE_AMBIENT_LIGHT       = 5,   /**< Ambient light sensor */
94    HDF_SENSOR_TYPE_MAGNETIC_FIELD      = 6,   /**< Magnetic field sensor */
95    HDF_SENSOR_TYPE_CAPACITIVE          = 7,   /**< Capacitive sensor */
96    HDF_SENSOR_TYPE_BAROMETER           = 8,   /**< Barometric pressure sensor */
97    HDF_SENSOR_TYPE_TEMPERATURE         = 9,   /**< Temperature sensor */
98    HDF_SENSOR_TYPE_HALL                = 10,  /**< Hall effect sensor */
99    HDF_SENSOR_TYPE_GESTURE             = 11,  /**< Gesture sensor */
100    HDF_SENSOR_TYPE_PROXIMITY           = 12,  /**< Proximity sensor */
101    HDF_SENSOR_TYPE_HUMIDITY            = 13,  /**< Humidity sensor */
102    HDF_SENSOR_TYPE_MEDICAL_BEGIN       = 128, /**< The begin of medical sensorId enumeration value range */
103    HDF_SENSOR_TYPE_MEDICAL_END         = 160, /**< The end of medical sensorId enumeration value range */
104    HDF_SENSOR_TYPE_PHYSICAL_MAX        = 255, /**< Maximum type of a physical sensor */
105    HDF_SENSOR_TYPE_ORIENTATION         = 256, /**< Orientation sensor */
106    HDF_SENSOR_TYPE_GRAVITY             = 257, /**< Gravity sensor */
107    HDF_SENSOR_TYPE_LINEAR_ACCELERATION = 258, /**< Linear acceleration sensor */
108    HDF_SENSOR_TYPE_ROTATION_VECTOR     = 259, /**< Rotation vector sensor */
109    HDF_SENSOR_TYPE_AMBIENT_TEMPERATURE = 260, /**< Ambient temperature sensor */
110    HDF_SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED = 261,   /**< Uncalibrated magnetic field sensor */
111    HDF_SENSOR_TYPE_GAME_ROTATION_VECTOR        = 262,   /**< Game rotation vector sensor */
112    HDF_SENSOR_TYPE_GYROSCOPE_UNCALIBRATED      = 263,   /**< Uncalibrated gyroscope sensor */
113    HDF_SENSOR_TYPE_SIGNIFICANT_MOTION          = 264,   /**< Significant motion sensor */
114    HDF_SENSOR_TYPE_PEDOMETER_DETECTION         = 265,   /**< Pedometer detection sensor */
115    HDF_SENSOR_TYPE_PEDOMETER                   = 266,   /**< Pedometer sensor */
116    HDF_SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR = 277,   /**< Geomagnetic rotation vector sensor */
117    HDF_SENSOR_TYPE_HEART_RATE                  = 278,   /**< Heart rate sensor */
118    HDF_SENSOR_TYPE_DEVICE_ORIENTATION          = 279,   /**< Device orientation sensor */
119    HDF_SENSOR_TYPE_WEAR_DETECTION              = 280,   /**< Wear detection sensor */
120    HDF_SENSOR_TYPE_ACCELEROMETER_UNCALIBRATED  = 281,   /**< Uncalibrated acceleration sensor */
121    HDF_SENSOR_TYPE_MAX,                                 /**< Maximum number of sensor types */
122};
123
124/**
125 * @brief Enumerates hardware service group for sensors
126 *
127 * @since 2.2
128 */
129enum HdfSensorGroupType {
130    HDF_TRADITIONAL_SENSOR_TYPE = 0, /**< traditional sensor type, the sensorId enumeration value range is 128-160 */
131    HDF_MEDICAL_SENSOR_TYPE = 1,  /**< medical sensor type, the sensorId enumeration value range is not within 128-160 */
132    HDF_SENSOR_GROUP_TYPE_MAX,          /**< Maximum sensor group type*/
133};
134