From: kibak.yoon Date: Mon, 12 Jun 2017 09:19:14 +0000 (+0900) Subject: sensor: csapi: modify api reference according to guidelines X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0077d3611cf89df8422f238fe5254a0aa57a7b8;p=platform%2Fcore%2Fcsapi%2Fsensor.git sensor: csapi: modify api reference according to guidelines Change-Id: I5d7ddff2f12f1bb68f5c596d77183abcf8e97acb Signed-off-by: kibak.yoon --- diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/AccelerometerDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/AccelerometerDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index ba45b41..f87f24e --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/AccelerometerDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/AccelerometerDataUpdatedEventArgs.cs @@ -33,16 +33,22 @@ namespace Tizen.Sensor /// /// Gets the X component of the acceleration. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the acceleration. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the acceleration. /// + /// 3 + /// Z public float Z { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/FaceDownGestureDetectorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/FaceDownGestureDetectorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index ac1a3ef..b92bb6f --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/FaceDownGestureDetectorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/FaceDownGestureDetectorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the face down state. /// + /// 3 + /// Face down state public DetectorState FaceDown { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/GravitySensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/GravitySensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index ba47f62..b7812a9 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/GravitySensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/GravitySensorDataUpdatedEventArgs.cs @@ -33,16 +33,22 @@ namespace Tizen.Sensor /// /// Gets the X component of the gravity. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the gravity. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the gravity. /// + /// 3 + /// Z public float Z { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index dcb758e..58724c1 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeDataUpdatedEventArgs.cs @@ -33,16 +33,22 @@ namespace Tizen.Sensor /// /// Gets the X component of the gyroscope data. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the gyroscope data. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the gyroscope data. /// + /// 3 + /// Z public float Z { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeRotationVectorSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeRotationVectorSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 1100c46..48c0238 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeRotationVectorSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/GyroscopeRotationVectorSensorDataUpdatedEventArgs.cs @@ -35,26 +35,36 @@ namespace Tizen.Sensor /// /// Gets the X component of the gyroscope rotation vector. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the gyroscope rotation vector. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the gyroscope rotation vector. /// + /// 3 + /// Z public float Z { get; private set; } /// /// Gets the W component of the gyroscope rotation vector. /// + /// 3 + /// W public float W { get; private set; } /// /// Gets the accuracy of the gyroscope rotation vector data. /// + /// 3 + /// Accuracy public SensorDataAccuracy Accuracy { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/HeartRateMonitorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/HeartRateMonitorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 846b3d4..68b9fe7 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/HeartRateMonitorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/HeartRateMonitorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the value of the heartRate. /// + /// 3 + /// Heart rate public int HeartRate { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/HumiditySensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/HumiditySensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index f981b04..c8e7c32 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/HumiditySensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/HumiditySensorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the value of the humidity. /// + /// 3 + /// Humidity public float Humidity { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/InVehicleActivityDetectorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/InVehicleActivityDetectorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 67b5e63..4e6e8f0 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/InVehicleActivityDetectorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/InVehicleActivityDetectorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the in-vehicle state. /// + /// 3 + /// In-vehicle state public DetectorState InVehicle { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/LightSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/LightSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 5404fdf..dfcc8de --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/LightSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/LightSensorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the level of the light. /// + /// 3 + /// Light level public float Level { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/LinearAccelerationSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/LinearAccelerationSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 5e23cd0..273c0a2 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/LinearAccelerationSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/LinearAccelerationSensorDataUpdatedEventArgs.cs @@ -33,16 +33,22 @@ namespace Tizen.Sensor /// /// Gets the X component of the linear acceleration. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the linear acceleration. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the linear acceleration. /// + /// 3 + /// Z public float Z { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 48b0297..eb1803d --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerDataUpdatedEventArgs.cs @@ -33,16 +33,22 @@ namespace Tizen.Sensor /// /// Gets the X component of the magnetometer. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the magnetometer. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the magnetometer. /// + /// 3 + /// Z public float Z { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerRotationVectorSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerRotationVectorSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 06b1715..7ac6ba3 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerRotationVectorSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/MagnetometerRotationVectorSensorDataUpdatedEventArgs.cs @@ -35,26 +35,36 @@ namespace Tizen.Sensor /// /// Gets the X component of the magnetometer rotation vector. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the magnetometer rotation vector. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the magnetometer rotation vector. /// + /// 3 + /// Z public float Z { get; private set; } /// /// Gets the W component of the magnetometer rotation vector. /// + /// 3 + /// W public float W { get; private set; } /// /// Gets the accuracy of the magnetometer rotation vector data. /// + /// 3 + /// Accuracy public SensorDataAccuracy Accuracy { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/OrientationSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/OrientationSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 0d15413..4fc4b6a --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/OrientationSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/OrientationSensorDataUpdatedEventArgs.cs @@ -33,16 +33,22 @@ namespace Tizen.Sensor /// /// Gets the azimuth component of the orientation. /// + /// 3 + /// Azimuth public float Azimuth { get; private set; } /// /// Gets the pitch component of the orientation. /// + /// 3 + /// Pitch public float Pitch { get; private set; } /// /// Gets the roll component of the orientation. /// + /// 3 + /// Roll public float Roll { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/PedometerDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/PedometerDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 2bc7847..f4865ac --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/PedometerDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/PedometerDataUpdatedEventArgs.cs @@ -38,41 +38,57 @@ namespace Tizen.Sensor /// /// Gets the step count /// + /// 3 + /// Step count public uint StepCount { get; private set; } /// /// Gets the walking step count /// + /// 3 + /// Walk step count public uint WalkStepCount { get; private set; } /// /// Gets the running step count /// + /// 3 + /// Run step count public uint RunStepCount { get; private set; } /// /// Gets the moving distance /// + /// 3 + /// Moving distance public float MovingDistance { get; private set; } /// /// Gets the calorie burned /// + /// 3 + /// Calorie burned public float CalorieBurned { get; private set; } /// /// Gets the last speed /// + /// 3 + /// Last speed public float LastSpeed { get; private set; } /// /// Gets the last stepping frequency /// + /// 3 + /// Last stepping frequency public float LastSteppingFrequency { get; private set; } /// /// Gets the last step status /// + /// 3 + /// Last stepping status public PedometerState LastStepStatus { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/PickUpGestureDetectorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/PickUpGestureDetectorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 45e3054..a5fee58 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/PickUpGestureDetectorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/PickUpGestureDetectorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the pick up state. /// + /// 3 + /// Pick up state public DetectorState PickUp { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/PressureSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/PressureSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 4d12def..0cf7b73 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/PressureSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/PressureSensorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the value of the pressure. /// + /// 3 + /// Pressure public float Pressure { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/ProximitySensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/ProximitySensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index da5519f..2dc8847 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/ProximitySensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/ProximitySensorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the proximity state. /// + /// 3 + /// Proximity state public ProximitySensorState Proximity { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/RotationVectorSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/RotationVectorSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 9b1437c..29ddccd --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/RotationVectorSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/RotationVectorSensorDataUpdatedEventArgs.cs @@ -35,26 +35,36 @@ namespace Tizen.Sensor /// /// Gets the X component of the rotation vector. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the rotation vector. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the rotation vector. /// + /// 3 + /// Z public float Z { get; private set; } /// /// Gets the W component of the rotation vector. /// + /// 3 + /// W public float W { get; private set;} /// /// Gets the accuracy of the rotation vector data. /// + /// 3 + /// Accuracy public SensorDataAccuracy Accuracy { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/RunningActivityDetectorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/RunningActivityDetectorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 1586b9f..309ad7d --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/RunningActivityDetectorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/RunningActivityDetectorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the running state. /// + /// 3 + /// Running state public DetectorState Running { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/SensorAccuracyChangedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/SensorAccuracyChangedEventArgs.cs old mode 100644 new mode 100755 index 679f305..8479600 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/SensorAccuracyChangedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/SensorAccuracyChangedEventArgs.cs @@ -32,11 +32,15 @@ namespace Tizen.Sensor /// /// Gets the time stamp. /// + /// 3 + /// Time span public TimeSpan TimeSpan { get; private set; } /// /// Gets the accuracy. /// + /// 3 + /// Accuracy public SensorDataAccuracy Accuracy { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/SleepMonitorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/SleepMonitorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index ac7c1af..fe631ed --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/SleepMonitorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/SleepMonitorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the value of the sleep state. /// + /// 3 + /// Sleep state public SleepMonitorState SleepState { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/StationaryActivityDetectorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/StationaryActivityDetectorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 2b21610..2ad9a1d --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/StationaryActivityDetectorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/StationaryActivityDetectorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the stationary state. /// + /// 3 + /// Stationary state public DetectorState Stationary { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/TemperatureSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/TemperatureSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 4e9e090..127c725 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/TemperatureSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/TemperatureSensorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the value of the temperature. /// + /// 3 + /// Temperature public float Temperature { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/UltravioletSensorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/UltravioletSensorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index b1b90a8..1a025f9 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/UltravioletSensorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/UltravioletSensorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the value of the ultraviolet index. /// + /// 3 + /// Ultraviolet index public float UltravioletIndex { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedGyroscopeDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedGyroscopeDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 7b7e136..9475bc0 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedGyroscopeDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedGyroscopeDataUpdatedEventArgs.cs @@ -36,31 +36,43 @@ namespace Tizen.Sensor /// /// Gets the X component of the uncalibrated gyroscope data. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the uncalibrated gyroscope data. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the uncalibrated gyroscope data. /// + /// 3 + /// Z public float Z { get; private set; } /// /// Gets the BiasX component of the uncalibrated gyroscope data. /// + /// 3 + /// X bias public float BiasX { get; private set; } /// /// Gets the BiasY component of the uncalibrated gyroscope data. /// + /// 3 + /// Y bias public float BiasY { get; private set; } /// /// Gets the BiasZ component of the uncalibrated gyroscope data. /// + /// 3 + /// Z bias public float BiasZ { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedMagnetometerDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedMagnetometerDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 81e91dd..b9cfc9c --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedMagnetometerDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/UncalibratedMagnetometerDataUpdatedEventArgs.cs @@ -36,31 +36,43 @@ namespace Tizen.Sensor /// /// Gets the X component of the uncalibrated magnetometer data. /// + /// 3 + /// X public float X { get; private set; } /// /// Gets the Y component of the uncalibrated magnetometer data. /// + /// 3 + /// Y public float Y { get; private set; } /// /// Gets the Z component of the uncalibrated magnetometer data. /// + /// 3 + /// Z public float Z { get; private set; } /// /// Gets the BiasX component of the uncalibrated magnetometer data. /// + /// 3 + /// X bias public float BiasX { get; private set; } /// /// Gets the BiasY component of the uncalibrated magnetometer data. /// + /// 3 + /// Y bias public float BiasY { get; private set; } /// /// Gets the BiasZ component of the uncalibrated magnetometer data. /// + /// 3 + /// Z bias public float BiasZ { get; private set; } } } \ No newline at end of file diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/WalkingActivityDetectorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/WalkingActivityDetectorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index d0a96e8..0de9fc7 --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/WalkingActivityDetectorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/WalkingActivityDetectorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the walking state. /// + /// 3 + /// Walking state public DetectorState Walking { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/EventArgs/WristUpGestureDetectorDataUpdatedEventArgs.cs b/Tizen.Sensor/Tizen.Sensor/EventArgs/WristUpGestureDetectorDataUpdatedEventArgs.cs old mode 100644 new mode 100755 index 17af932..811862f --- a/Tizen.Sensor/Tizen.Sensor/EventArgs/WristUpGestureDetectorDataUpdatedEventArgs.cs +++ b/Tizen.Sensor/Tizen.Sensor/EventArgs/WristUpGestureDetectorDataUpdatedEventArgs.cs @@ -31,6 +31,8 @@ namespace Tizen.Sensor /// /// Gets the wrist up state. /// + /// 3 + /// Wrist up state public DetectorState WristUp { get; private set; } } } diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/Accelerometer.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/Accelerometer.cs old mode 100644 new mode 100755 index 0bf9aa4..1651eb2 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/Accelerometer.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/Accelerometer.cs @@ -27,21 +27,29 @@ namespace Tizen.Sensor /// /// Gets the X component of the acceleration. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the acceleration. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the acceleration. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Returns true or false based on whether accelerometer sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -54,6 +62,8 @@ namespace Tizen.Sensor /// /// Returns the number of accelerometer sensors available on the device. /// + /// 3 + /// The count of accelerometer sensors /// Thrown when the operation is invalid for the current state public static int Count { @@ -67,6 +77,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.accelerometer /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -87,6 +98,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in accelerometer sensor data. /// + /// 3 public event EventHandler DataUpdated; private static int GetCount() diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/ActivityDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/ActivityDetector.cs old mode 100644 new mode 100755 index 6eed104..e9eff3b --- a/Tizen.Sensor/Tizen.Sensor/Plugins/ActivityDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/ActivityDetector.cs @@ -38,6 +38,8 @@ namespace Tizen.Sensor /// /// Gets the activity accuracy of activity detector /// + /// 3 + /// Activity accuracy public SensorDataAccuracy ActivityAccuracy { get; protected set; } internal ActivityDetector(uint index) : base(index) diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/FaceDownGestureDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/FaceDownGestureDetector.cs old mode 100644 new mode 100755 index 49bb2cf..40362d2 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/FaceDownGestureDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/FaceDownGestureDetector.cs @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the state of the face down gesture. /// + /// 3 + /// Face down state public DetectorState FaceDown { get; private set; } = DetectorState.Unknown; /// /// Returns true or false based on whether face down gesture detector is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -43,8 +47,10 @@ namespace Tizen.Sensor } /// - /// Returns the number of face down gesture detector available on the device. + /// Returns the number of face down gesture detectors available on the device. /// + /// 3 + /// The count of face down gesture detectors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.gesture_recognition /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -92,6 +99,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in face down gesture detector data. /// + /// 3 public event EventHandler DataUpdated; private static Interop.SensorListener.SensorEventCallback _callback; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/GravitySensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/GravitySensor.cs old mode 100644 new mode 100755 index 71f2301..c2a38c0 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/GravitySensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/GravitySensor.cs @@ -29,21 +29,29 @@ namespace Tizen.Sensor /// /// Gets the X component of the gravity. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the gravity. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the gravity. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Returns true or false based on whether gravity sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -56,6 +64,8 @@ namespace Tizen.Sensor /// /// Returns the number of gravity sensors available on the device. /// + /// 3 + /// The count of gravity sensors public static int Count { get @@ -68,6 +78,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.gravity /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,12 +99,14 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in gravity sensor data. /// + /// 3 public event EventHandler DataUpdated; /// /// Event handler for accuracy changed events. /// + /// 3 public event EventHandler AccuracyChanged { add diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/Gyroscope.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/Gyroscope.cs old mode 100644 new mode 100755 index 5eda227..192f076 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/Gyroscope.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/Gyroscope.cs @@ -28,21 +28,29 @@ namespace Tizen.Sensor /// /// Gets the X component of the acceleration. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the acceleration. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the acceleration. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Returns true or false based on whether gyroscope sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -55,6 +63,8 @@ namespace Tizen.Sensor /// /// Returns the number of gyroscope sensors available on the device. /// + /// 3 + /// The count of gyroscope sensors public static int Count { get @@ -67,6 +77,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.gyroscope /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -87,6 +98,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in gyroscope sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/GyroscopeRotationVectorSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/GyroscopeRotationVectorSensor.cs old mode 100644 new mode 100755 index 486d9b9..2f52a1d --- a/Tizen.Sensor/Tizen.Sensor/Plugins/GyroscopeRotationVectorSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/GyroscopeRotationVectorSensor.cs @@ -28,31 +28,43 @@ namespace Tizen.Sensor /// /// Gets the X component of the gyroscope rotation vector. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the gyroscope rotation vector. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the gyroscope rotation vector. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Gets the W component of the gyroscope rotation vector. /// + /// 3 + /// W public float W { get; private set; } = float.MinValue; /// /// Gets the Accuracy of the gyroscope rotation vector data. /// + /// 3 + /// Accuracy public SensorDataAccuracy Accuracy { get; private set; } /// /// Returns true or false based on whether gyroscope rotation vector sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -65,6 +77,8 @@ namespace Tizen.Sensor /// /// Returns the number of gyroscope rotation vector sensors available on the device. /// + /// 3 + /// The count of accelerometer rotation vector sensors public static int Count { get @@ -77,6 +91,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.gyroscope_rotation_vector /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -97,6 +112,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in gyroscope rotation vector sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/HeartRateMonitor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/HeartRateMonitor.cs old mode 100644 new mode 100755 index e695a37..0e254ea --- a/Tizen.Sensor/Tizen.Sensor/Plugins/HeartRateMonitor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/HeartRateMonitor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// HeartRateMonitor Class. Used for registering callbacks for heart rate monitor and getting heart rate data - /// /// + /// public sealed class HeartRateMonitor : Sensor { private const string HRMKey = "http://tizen.org/feature/sensor.heart_rate_monitor"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the value of the heart rate monitor. /// + /// 3 + /// Heart rate public int HeartRate { get; private set; } = int.MinValue; /// /// Returns true or false based on whether heart rate monitor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of heart rate monitors available on the device. /// + /// 3 + /// The count of heart rate monitors public static int Count { get @@ -57,7 +63,9 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/privilege/healthinfo + /// public /// http://tizen.org/feature/sensor.heart_rate_monitor /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -79,6 +87,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in heart rate monitor data. /// + /// 3 public event EventHandler DataUpdated; private static int GetCount() diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs old mode 100644 new mode 100755 index 0cb6101..3ef6def --- a/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/HumiditySensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// HumiditySensor Class. Used for registering callbacks for humidity sensor and getting humidity data - /// /// + /// public sealed class HumiditySensor : Sensor { private const string HumiditySensorKey = "http://tizen.org/feature/sensor.humidity"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the value of the humidity sensor. /// + /// 3 + /// Humidity public float Humidity { get; private set; } = float.MinValue; /// /// Returns true or false based on whether humidity sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of humidity sensors available on the device. /// + /// 3 + /// The count of humidity sensors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.humidity /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -77,6 +84,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in humidity sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/InVehicleActivityDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/InVehicleActivityDetector.cs old mode 100644 new mode 100755 index 162d32f..0d6aa55 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/InVehicleActivityDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/InVehicleActivityDetector.cs @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the state of in-vehicle activity detector /// + /// 3 + /// In-vehicle state public DetectorState InVehicle { get; private set; } = DetectorState.Unknown; /// /// Returns true or false based on whether in-vehicle activity detector is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -43,8 +47,10 @@ namespace Tizen.Sensor } /// - /// Returns the number of in-vehicle activity detector available on the device. + /// Returns the number of in-vehicle activity detectors available on the device. /// + /// 3 + /// The count of in-vehicle activity detectors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.activity_recognition /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,6 +95,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in in-vehicle activity detector data. /// + /// 3 public event EventHandler DataUpdated; private static Interop.SensorListener.SensorEventCallback _callback; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/LightSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/LightSensor.cs old mode 100644 new mode 100755 index 32db23c..2ec7c43 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/LightSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/LightSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// LightSensor Class. Used for registering callbacks for light sensor and getting light data - /// /// + /// public sealed class LightSensor : Sensor { private const string LightSensorKey = "http://tizen.org/feature/sensor.photometer"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the Level of the light. /// + /// 3 + /// Light level public float Level { get; private set; } = float.MinValue; /// /// Returns true or false based on whether light sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of light sensors available on the device. /// + /// 3 + /// The count of light sensors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.photometer /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -77,6 +84,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in light sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/LinearAccelerationSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/LinearAccelerationSensor.cs old mode 100644 new mode 100755 index 4303f68..6fbf056 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/LinearAccelerationSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/LinearAccelerationSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// LinearAccelerationSensor Class. Used for registering callbacks for linear acceleration sensor and getting linear acceleration data - /// /// + /// public sealed class LinearAccelerationSensor : Sensor { private const string LinearAccelerationSensorKey = "http://tizen.org/feature/sensor.linear_acceleration"; @@ -29,21 +29,29 @@ namespace Tizen.Sensor /// /// Gets the X component of the linear acceleration. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the linear acceleration. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the linear acceleration. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Returns true or false based on whether linear acceleration sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -56,6 +64,8 @@ namespace Tizen.Sensor /// /// Returns the number of linear acceleration sensors available on the device. /// + /// 3 + /// The count of linear acceleration sensors public static int Count { get @@ -68,6 +78,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.linear_acceleration /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,12 +99,14 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in linear acceleration sensor data. /// + /// 3 public event EventHandler DataUpdated; /// /// Event handler for accuracy changed events. /// + /// 3 public event EventHandler AccuracyChanged { add diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/Magnetometer.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/Magnetometer.cs old mode 100644 new mode 100755 index 712b0f0..83dd226 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/Magnetometer.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/Magnetometer.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// Magnetometer Class. Used for registering callbacks for magnetometer and getting magnetometer data - /// /// + /// public sealed class Magnetometer : Sensor { private static string MagnetometerKey = "http://tizen.org/feature/sensor.magnetometer"; @@ -29,21 +29,29 @@ namespace Tizen.Sensor /// /// Gets the X component of the magnetometer. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the magnetometer. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the magnetometer. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Returns true or false based on whether magnetometer is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -56,6 +64,8 @@ namespace Tizen.Sensor /// /// Returns the number of magnetometers available on the device. /// + /// 3 + /// The count of magnetometers public static int Count { get @@ -68,6 +78,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.magnetometer /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,12 +99,14 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in magnetometer data. /// + /// 3 public event EventHandler DataUpdated; /// /// Event handler for accuracy changed events. /// + /// 3 public event EventHandler AccuracyChanged { add diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/MagnetometerRotationVectorSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/MagnetometerRotationVectorSensor.cs old mode 100644 new mode 100755 index 63feec8..02afa13 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/MagnetometerRotationVectorSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/MagnetometerRotationVectorSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// MagnetometerRotationVectorSensor Class. Used for registering callbacks for magnetometer rotation vector sensor and getting magnetometer rotation vector data - /// /// + /// public sealed class MagnetometerRotationVectorSensor : Sensor { private static string MagnetometerRVKey = "http://tizen.org/feature/sensor.geomagnetic_rotation_vector"; @@ -29,31 +29,43 @@ namespace Tizen.Sensor /// /// Gets the X component of the magnetometer rotation vector. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the magnetometer rotation vector. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the magnetometer rotation vector. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Gets the W component of the magnetometer rotation vector. /// + /// 3 + /// W public float W { get; private set; } = float.MinValue; /// /// Gets the Accuracy of the magnetometer rotation vector data. /// + /// 3 + /// Accuracy public SensorDataAccuracy Accuracy { get; private set; } /// /// Returns true or false based on whether magnetometer rotation vector sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -66,6 +78,8 @@ namespace Tizen.Sensor /// /// Returns the number of magnetometer rotation vector sensors available on the device. /// + /// 3 + /// The count of magnetometer rotation vector sensors public static int Count { get @@ -78,6 +92,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.geomagnetic_rotation_vector /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -98,12 +113,14 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in magnetometer rotation vector sensor data. /// + /// 3 public event EventHandler DataUpdated; /// /// Event handler for accuracy changed events. /// + /// 3 public event EventHandler AccuracyChanged { add diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/OrientationSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/OrientationSensor.cs old mode 100644 new mode 100755 index 6e26e7b..2bba50a --- a/Tizen.Sensor/Tizen.Sensor/Plugins/OrientationSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/OrientationSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// OrientationSensor Class. Used for registering callbacks for orientation sensor and getting orientation data - /// /// + /// public sealed class OrientationSensor : Sensor { private static string OrientationSensorKey = "http://tizen.org/feature/sensor.tiltmeter"; @@ -29,21 +29,29 @@ namespace Tizen.Sensor /// /// Gets the Azimuth component of the orientation. /// + /// 3 + /// Azimuth public float Azimuth { get; private set; } = float.MinValue; /// /// Gets the Pitch component of the orientation. /// + /// 3 + /// Pitch public float Pitch { get; private set; } = float.MinValue; /// /// Gets the Roll component of the orientation. /// + /// 3 + /// Roll public float Roll { get; private set; } = float.MinValue; /// /// Returns true or false based on whether orientation sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -56,6 +64,8 @@ namespace Tizen.Sensor /// /// Returns the number of orientation sensors available on the device. /// + /// 3 + /// The count of orientation sensors public static int Count { get @@ -68,6 +78,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.tiltmeter /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,12 +99,14 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in orientation sensor data. /// + /// 3 public event EventHandler DataUpdated; /// /// Event handler for accuracy changed events. /// + /// 3 public event EventHandler AccuracyChanged { add diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/Pedometer.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/Pedometer.cs old mode 100644 new mode 100755 index 4821e33..8f39050 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/Pedometer.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/Pedometer.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// Pedometer Sensor Class. Used for registering callbacks for pedometer and getting pedometer data - /// /// + /// public sealed class Pedometer : Sensor { private static string PedometerKey = "http://tizen.org/feature/sensor.pedometer"; @@ -28,46 +28,64 @@ namespace Tizen.Sensor /// /// Gets the step count /// + /// 3 + /// Step count public uint StepCount { get; private set; } = 0; /// /// Gets the walking step count /// + /// 3 + /// Walk step count public uint WalkStepCount { get; private set; } = 0; /// /// Gets the running step count /// + /// 3 + /// Run step count public uint RunStepCount { get; private set; } = 0; /// /// Gets the moving distance /// + /// 3 + /// Moving distance public float MovingDistance { get; private set; } = 0; /// /// Gets the calorie burned /// + /// 3 + /// Calorie Burned public float CalorieBurned { get; private set; } = 0; /// /// Gets the last speed /// + /// 3 + /// Last speed public float LastSpeed { get; private set; } = 0; /// /// Gets the last stepping frequency /// + /// 3 + /// Last stepping frequency public float LastSteppingFrequency { get; private set; } = 0; /// /// Gets the last step status /// + /// 3 + /// Last step status public PedometerState LastStepStatus { get; private set; } = PedometerState.Unknown; /// /// Returns true or false based on whether pedometer sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -80,6 +98,8 @@ namespace Tizen.Sensor /// /// Returns the number of pedometer sensors available on the device. /// + /// 3 + /// The count of pedometer sensors public static int Count { get @@ -92,7 +112,9 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/privilege/healthinfo + /// public /// http://tizen.org/feature/sensor.pedometer /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -114,6 +136,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in pedometer sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/PickUpGestureDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/PickUpGestureDetector.cs old mode 100644 new mode 100755 index 40ca860..f0a870b --- a/Tizen.Sensor/Tizen.Sensor/Plugins/PickUpGestureDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/PickUpGestureDetector.cs @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the state of the pick up gesture. /// + /// 3 + /// Pick up state public DetectorState PickUp { get; private set; } = DetectorState.Unknown; /// /// Returns true or false based on whether pick up gesture detector is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -43,8 +47,10 @@ namespace Tizen.Sensor } /// - /// Returns the number of pick up gesture detector available on the device. + /// Returns the number of pick up gesture detectors available on the device. /// + /// 3 + /// The count of pick up gesture detectors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.gesture_recognition /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -104,6 +111,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in pick up gesture detector data. /// + /// 3 public event EventHandler DataUpdated; private static Interop.SensorListener.SensorEventCallback _callback; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/PressureSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/PressureSensor.cs old mode 100644 new mode 100755 index 799ff2d..f17c590 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/PressureSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/PressureSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// PressureSensor Class. Used for registering callbacks for pressure sensor and getting pressure data - /// /// + /// public sealed class PressureSensor : Sensor { private static string PressureSensorKey = "http://tizen.org/feature/sensor.barometer"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the value of the pressure sensor. /// + /// 3 + /// Pressure public float Pressure { get; private set; } = float.MinValue; /// /// Returns true or false based on whether pressure sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of pressure sensors available on the device. /// + /// 3 + /// The count of pressure sensors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.barometer /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -77,6 +84,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in pressure sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/ProximitySensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/ProximitySensor.cs old mode 100644 new mode 100755 index f5735fd..927087a --- a/Tizen.Sensor/Tizen.Sensor/Plugins/ProximitySensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/ProximitySensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// ProximitySensor Class. Used for registering callbacks for proximity sensor and getting proximity data - /// /// + /// public sealed class ProximitySensor : Sensor { private static string ProximitySensorKey = "http://tizen.org/feature/sensor.proximity"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the proximity state. /// + /// 3 + /// Proximity state public ProximitySensorState Proximity { get; private set; } = ProximitySensorState.Unknown; /// /// Returns true or false based on whether proximity sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of proximity sensors available on the device. /// + /// 3 + /// The count of proximity sensors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.proximity /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -77,6 +84,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in proximity sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/RotationVectorSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/RotationVectorSensor.cs old mode 100644 new mode 100755 index 10185ae..8489d11 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/RotationVectorSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/RotationVectorSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// RotationVectorSensor Class. Used for registering callbacks for rotation vector sensor and getting rotation vector data - /// /// + /// public sealed class RotationVectorSensor : Sensor { private static string RotationVectorKey = "http://tizen.org/feature/sensor.rotation_vector"; @@ -29,31 +29,43 @@ namespace Tizen.Sensor /// /// Gets the X component of the rotation vector. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the rotation vector. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the rotation vector. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Gets the W component of the rotation vector. /// + /// 3 + /// W public float W { get; private set; } = float.MinValue; /// /// Gets the Accuracy of the rotation vector data. /// + /// 3 + /// Accuracy public SensorDataAccuracy Accuracy { get; private set; } = SensorDataAccuracy.Undefined; /// /// Returns true or false based on whether rotation vector sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -66,6 +78,8 @@ namespace Tizen.Sensor /// /// Returns the number of rotation vector sensors available on the device. /// + /// 3 + /// The count of rotation vector sensors public static int Count { get @@ -78,6 +92,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.rotation_vector /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -98,12 +113,14 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in rotation vector sensor data. /// + /// 3 public event EventHandler DataUpdated; /// /// Event handler for accuracy changed events. /// + /// 3 public event EventHandler AccuracyChanged { add diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/RunningActivityDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/RunningActivityDetector.cs old mode 100644 new mode 100755 index 785ec31..fc2ec5b --- a/Tizen.Sensor/Tizen.Sensor/Plugins/RunningActivityDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/RunningActivityDetector.cs @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the state of running activity detector /// + /// 3 + /// Running state public DetectorState Running { get; private set; } = DetectorState.Unknown; /// /// Returns true or false based on whether running activity detector is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of running activity detector available on the device. /// + /// 3 + /// The count of running activity detectors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.activity_recognition /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,6 +95,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in running activity detector data. /// + /// 3 public event EventHandler DataUpdated; private static Interop.SensorListener.SensorEventCallback _callback; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/SleepMonitor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/SleepMonitor.cs old mode 100644 new mode 100755 index e527a27..8291cfa --- a/Tizen.Sensor/Tizen.Sensor/Plugins/SleepMonitor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/SleepMonitor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// SleepMonitor Class. Used for registering callbacks for sleep monitor and getting sleep data - /// /// + /// public sealed class SleepMonitor : Sensor { private static string SleepMonitorKey = "http://tizen.org/feature/sensor.sleep_monitor"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the value of the sleep state. /// + /// 3 + /// Sleep state public SleepMonitorState SleepState { get; private set; } = SleepMonitorState.Unknown; /// /// Returns true or false based on whether sleep monitor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of sleep monitors available on the device. /// + /// 3 + /// The count of sleep monitors public static int Count { get @@ -57,7 +63,9 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/privilege/healthinfo + /// public /// http://tizen.org/feature/sensor.sleep_monitor /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -79,6 +87,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in sleep monitor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/StationaryActivityDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/StationaryActivityDetector.cs old mode 100644 new mode 100755 index 5f67f9f..c8b0251 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/StationaryActivityDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/StationaryActivityDetector.cs @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the state of stationary activity detector /// + /// 3 + /// Stationary state public DetectorState Stationary { get; private set; } = DetectorState.Unknown; /// /// Returns true or false based on whether stationary activity detector is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -43,8 +47,10 @@ namespace Tizen.Sensor } /// - /// Returns the number of stationary activity detector available on the device. + /// Returns the number of stationary activity detectors available on the device. /// + /// 3 + /// The count of stationary activity detectors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.activity_recognition /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,6 +95,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in stationary activity detector data. /// + /// 3 public event EventHandler DataUpdated; internal static Interop.SensorListener.SensorEventCallback _callback; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/TemperatureSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/TemperatureSensor.cs old mode 100644 new mode 100755 index c2d4662..b90b1bc --- a/Tizen.Sensor/Tizen.Sensor/Plugins/TemperatureSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/TemperatureSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// TemperatureSensor Class. Used for registering callbacks for temperature sensor and getting temperature data - /// /// + /// public sealed class TemperatureSensor : Sensor { private static string TemperatureSensorKey = "http://tizen.org/feature/sensor.temperature"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the value of the temperature sensor. /// + /// 3 + /// Temperature (Celsius) public float Temperature { get; private set; } = float.MinValue; /// /// Returns true or false based on whether temperature sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of temperature sensors available on the device. /// + /// 3 + /// The count of temperature sensors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.temperature /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -77,6 +84,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in temperature sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/UltravioletSensor.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/UltravioletSensor.cs old mode 100644 new mode 100755 index 21af905..07c3d2e --- a/Tizen.Sensor/Tizen.Sensor/Plugins/UltravioletSensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/UltravioletSensor.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// UltravioletSensor Class. Used for registering callbacks for ultraviolet sensor and getting ultraviolet data - /// /// + /// public sealed class UltravioletSensor : Sensor { private static string UltravioletSensorKey = "http://tizen.org/feature/sensor.ultraviolet"; @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the value of the ultraviolet sensor. /// + /// 3 + /// Ultraviolet index public float UltravioletIndex { get; private set; } = float.MinValue; /// /// Returns true or false based on whether ultraviolet sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -45,6 +49,8 @@ namespace Tizen.Sensor /// /// Returns the number of ultraviolet sensors available on the device. /// + /// 3 + /// The count of ultraviolet sensors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.ultraviolet /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -77,6 +84,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in ultraviolet sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedGyroscope.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedGyroscope.cs old mode 100644 new mode 100755 index 98584cb..18900d5 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedGyroscope.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedGyroscope.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// UncalibratedGyroscope Sensor Class. Used for registering callbacks for uncalibrated gyroscope and getting uncalibrated gyroscope data - /// /// + /// public sealed class UncalibratedGyroscope : Sensor { private static string UncalibratedGyroscopeKey = "http://tizen.org/feature/sensor.gyroscope.uncalibrated"; @@ -28,36 +28,50 @@ namespace Tizen.Sensor /// /// Gets the X component of the acceleration. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the acceleration. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the acceleration. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Gets the BiasX component of the uncalibrated gyroscope data. /// + /// 3 + /// X bias public float BiasX { get; private set; } = 0; /// /// Gets the BiasY component of the uncalibrated gyroscope data. /// + /// 3 + /// Y bias public float BiasY { get; private set; } = 0; /// /// Gets the BiasZ component of the uncalibrated gyroscope data. /// + /// 3 + /// Z bias public float BiasZ { get; private set; } = 0; /// /// Returns true or false based on whether uncalibrated gyroscope sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -70,6 +84,8 @@ namespace Tizen.Sensor /// /// Returns the number of uncalibrated gyroscope sensors available on the device. /// + /// 3 + /// The count of uncalibrated gyroscope sensors public static int Count { get @@ -82,6 +98,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.gyroscope.uncalibrated /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -102,6 +119,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in uncalibrated gyroscope sensor data. /// + /// 3 public event EventHandler DataUpdated; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedMagnetometer.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedMagnetometer.cs old mode 100644 new mode 100755 index b4451d5..04709e7 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedMagnetometer.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/UncalibratedMagnetometer.cs @@ -20,7 +20,7 @@ namespace Tizen.Sensor { /// /// UncalibratedMagnetometer Sensor Class. Used for registering callbacks for uncalibrated magnetometer and getting uncalibrated magnetometer data - /// /// + /// public sealed class UncalibratedMagnetometer : Sensor { private static string UncalibratedMagnetometerKey = "http://tizen.org/feature/sensor.magnetometer.uncalibrated"; @@ -29,36 +29,50 @@ namespace Tizen.Sensor /// /// Gets the X component of the acceleration. /// + /// 3 + /// X public float X { get; private set; } = float.MinValue; /// /// Gets the Y component of the acceleration. /// + /// 3 + /// Y public float Y { get; private set; } = float.MinValue; /// /// Gets the Z component of the acceleration. /// + /// 3 + /// Z public float Z { get; private set; } = float.MinValue; /// /// Gets the BiasX component of the uncalibrated magnetometer data. /// + /// 3 + /// X bias public float BiasX { get; private set; } = 0; /// /// Gets the BiasY component of the uncalibrated magnetometer data. /// + /// 3 + /// Y bias public float BiasY { get; private set; } = 0; /// /// Gets the BiasZ component of the uncalibrated magnetometer data. /// + /// 3 + /// Z bias public float BiasZ { get; private set; } = 0; /// /// Returns true or false based on whether uncalibrated magnetometer sensor is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -71,6 +85,8 @@ namespace Tizen.Sensor /// /// Returns the number of uncalibrated magnetometer sensors available on the device. /// + /// 3 + /// The count of uncalibrated magnetometer sensors public static int Count { get @@ -83,6 +99,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.magnetometer.uncalibrated /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -103,12 +120,14 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in uncalibrated magnetometer sensor data. /// + /// 3 public event EventHandler DataUpdated; /// /// Event handler for accuracy changed events. /// + /// 3 public event EventHandler AccuracyChanged { add diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs old mode 100644 new mode 100755 index cf875cf..8fd5960 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/WalkingActivityDetector.cs @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the state of walking activity detector /// + /// 3 + /// Walking state public DetectorState Walking { get; private set; } = DetectorState.Unknown; /// /// Returns true or false based on whether walking activity detector is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -43,8 +47,10 @@ namespace Tizen.Sensor } /// - /// Returns the number of walking activity detector available on the device. + /// Returns the number of walking activity detectors available on the device. /// + /// 3 + /// The count of walking activity detectors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.activity_recognition /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -88,6 +95,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in walking activity gesture detector data. /// + /// 3 public event EventHandler DataUpdated; internal static Interop.SensorListener.SensorEventCallback _callback; diff --git a/Tizen.Sensor/Tizen.Sensor/Plugins/WristUpGestureDetector.cs b/Tizen.Sensor/Tizen.Sensor/Plugins/WristUpGestureDetector.cs old mode 100644 new mode 100755 index dceb4d6..761e374 --- a/Tizen.Sensor/Tizen.Sensor/Plugins/WristUpGestureDetector.cs +++ b/Tizen.Sensor/Tizen.Sensor/Plugins/WristUpGestureDetector.cs @@ -28,11 +28,15 @@ namespace Tizen.Sensor /// /// Gets the state of the wrist up gesture. /// + /// 3 + /// Wrist up state public DetectorState WristUp { get; private set; } = DetectorState.Unknown; /// /// Returns true or false based on whether wrist up gesture detector is supported by device. /// + /// 3 + /// true if supported; otherwise, false. public static bool IsSupported { get @@ -43,8 +47,10 @@ namespace Tizen.Sensor } /// - /// Returns the number of wrist up gesture detector available on the device. + /// Returns the number of wrist up gesture detectors available on the device. /// + /// 3 + /// The count of wrist up gesture detectors public static int Count { get @@ -57,6 +63,7 @@ namespace Tizen.Sensor /// /// Initializes a new instance of the class. /// + /// 3 /// http://tizen.org/feature/sensor.wrist_up /// Thrown when an invalid argument is used /// Thrown when the sensor is not supported @@ -92,6 +99,7 @@ namespace Tizen.Sensor /// /// Event Handler for storing the callback functions for event corresponding to change in wrist up gesture detector data. /// + /// 3 public event EventHandler DataUpdated; private static Interop.SensorListener.SensorEventCallback _callback; diff --git a/Tizen.Sensor/Tizen.Sensor/Sensor.cs b/Tizen.Sensor/Tizen.Sensor/Sensor.cs old mode 100644 new mode 100755 index 4327ace..fa512c2 --- a/Tizen.Sensor/Tizen.Sensor/Sensor.cs +++ b/Tizen.Sensor/Tizen.Sensor/Sensor.cs @@ -69,6 +69,8 @@ namespace Tizen.Sensor /// /// Property: For getting the name of the sensor /// + /// 3 + /// The name of sensor public string Name { get @@ -81,6 +83,8 @@ namespace Tizen.Sensor /// /// Property: Gets the vendor. /// + /// 3 + /// The vendor name of sensor public string Vendor { get @@ -93,6 +97,8 @@ namespace Tizen.Sensor /// /// Property: Gets the minimum value of range of sensor data. /// + /// 3 + /// The lower bound of range of sensor reading public float MinValue { get @@ -105,6 +111,8 @@ namespace Tizen.Sensor /// /// Property: Gets the maximum value of range of sensor data. /// + /// 3 + /// The upper bound of range of sensor reading public float MaxValue { get @@ -117,6 +125,8 @@ namespace Tizen.Sensor /// /// Property: Gets the resolution. /// + /// 3 + /// The resolution public float Resolution { get @@ -129,6 +139,8 @@ namespace Tizen.Sensor /// /// Property: Gets the minimum interval. /// + /// 3 + /// The minimum update interval public int MinInterval { get @@ -141,6 +153,8 @@ namespace Tizen.Sensor /// /// Property: Gets the fifo count. /// + /// 3 + /// The size of the hardware FIFO public int FifoCount { get @@ -153,6 +167,8 @@ namespace Tizen.Sensor /// /// Property: Gets the maximum batch count. /// + /// 3 + /// The maximum batch count public int MaxBatchCount { get @@ -166,7 +182,9 @@ namespace Tizen.Sensor /// Sets the interval of the sensor for sensor data event /// Callbacks will be called at frequency of this interval /// + /// 3 /// Thrown when the operation is invalid for the current state + /// The interval of the sensor public uint Interval { set @@ -185,7 +203,9 @@ namespace Tizen.Sensor /// /// Sets the max batch latency for the sensor corresponding to the sensor data event. /// + /// 3 /// Thrown when the operation is invalid for the current state + /// The max batch latency public uint MaxBatchLatency { set @@ -204,8 +224,10 @@ namespace Tizen.Sensor /// /// Sets the pause policy of the sensor. /// + /// 3 /// The pause policy /// Thrown when the operation is invalid for the current state + /// The pause policy public SensorPausePolicy PausePolicy { set @@ -224,7 +246,8 @@ namespace Tizen.Sensor /// /// Gets or sets the time span. /// - /// The time span. + /// 3 + /// The time span public TimeSpan TimeSpan { set @@ -242,6 +265,7 @@ namespace Tizen.Sensor /// /// Indicates whether this sensor is sensing. /// + /// 3 /// true if this sensor is sensing; otherwise, false. public bool IsSensing { @@ -285,6 +309,7 @@ namespace Tizen.Sensor /// Starts the sensor. /// After this the event handlers will start receiving events. /// + /// 3 /// Thrown when the operation is invalid for the current state public void Start() { @@ -307,6 +332,7 @@ namespace Tizen.Sensor /// Stop the sensor. /// After this the event handlers will stop receiving the events /// + /// 3 /// Thrown when the operation is invalid for the current state public void Stop() { diff --git a/Tizen.Sensor/Tizen.Sensor/SensorEnumerations.cs b/Tizen.Sensor/Tizen.Sensor/SensorEnumerations.cs old mode 100644 new mode 100755 index a3ae92b..84e2571 --- a/Tizen.Sensor/Tizen.Sensor/SensorEnumerations.cs +++ b/Tizen.Sensor/Tizen.Sensor/SensorEnumerations.cs @@ -156,139 +156,167 @@ namespace Tizen.Sensor /// /// SensorDataAccuracy Enum definition for all possible sensor data accuracy Values. /// + /// 3 public enum SensorDataAccuracy { /// /// Undefined sensor data accuracy. /// + /// 3 Undefined = -1, /// /// Sensor data not accurate. /// + /// 3 Bad = 0, /// /// Moderately accurate sensor data. /// + /// 3 Normal = 1, /// /// Highly accurate sensor data. /// + /// 3 Good = 2, /// /// Very highly accurate sensor data. /// + /// 3 VeryGood = 3 } /// /// Sensor Option Enum definition for sensor option Values /// + /// 3 public enum SensorPausePolicy { /// /// Does not receive data when the LCD is off and in the power save mode. /// + /// 3 None, /// /// Receives data when the LCD is off. /// + /// 3 DisplayOff, /// /// Receives data in the power save mode. /// + /// 3 PowerSaveMode, /// /// Receives data when the LCD is off and in the power save mode. /// + /// 3 All } /// /// Pedometer state. /// + /// 3 public enum PedometerState { /// /// Unknown. /// + /// 3 Unknown = -1, /// /// Stop state. /// + /// 3 Stop, /// /// Walking state. /// + /// 3 Walk, /// /// Running state. /// + /// 3 Run } /// /// Sleep monitor state. /// + /// 3 public enum SleepMonitorState { /// /// Unknown. /// + /// 3 Unknown = -1, /// /// The wake state. /// + /// 3 Wake, /// /// The sleeping state. /// + /// 3 Sleep } /// /// Proximity sensor state. /// + /// 3 public enum ProximitySensorState { /// /// Unknown. /// + /// 3 Unknown = -1, /// /// Near sate. /// + /// 3 Near = 0, /// /// Far state. /// + /// 3 Far = 5 } /// /// Detector sensor state. /// + /// 3 public enum DetectorState { /// /// Unknown. /// + /// 3 Unknown = -1, /// /// None sate. /// + /// 3 NotDetected = 0, /// /// Detected state. /// + /// 3 Detected = 1 } }