From ab9edd0b901150b56b85e6e1afa361aeb54140af Mon Sep 17 00:00:00 2001 From: Adam Szczerbiak Date: Thu, 21 Jan 2016 08:52:43 +0100 Subject: [PATCH] [HAM] add 'unknown' state Change-Id: I2b763c590f486567c973b2623dfc74ae2aeb14b6 Signed-off-by: Adam Szczerbiak --- .../html/device_api/mobile/tizen/humanactivitymonitor.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/org.tizen.web.apireference/html/device_api/mobile/tizen/humanactivitymonitor.html b/org.tizen.web.apireference/html/device_api/mobile/tizen/humanactivitymonitor.html index d03d689..6234658 100644 --- a/org.tizen.web.apireference/html/device_api/mobile/tizen/humanactivitymonitor.html +++ b/org.tizen.web.apireference/html/device_api/mobile/tizen/humanactivitymonitor.html @@ -192,7 +192,7 @@ SLEEP_MONITOR - Sleep monitor (sleep state)
Specifies the pedometer user's current movement type.
-
    enum PedometerStepStatus { "NOT_MOVING", "WALKING", "RUNNING" };
+
    enum PedometerStepStatus { "NOT_MOVING", "WALKING", "RUNNING", "UNKNOWN" };

Since: 2.3 @@ -205,8 +205,13 @@ NOT_MOVING - The user remains stationary WALKING - The user is walking

  • RUNNING - The user is running
  • +
  • +UNKNOWN - The user's movement type is uncertain
  • +

    Remark : + UNKNOWN is supported since Tizen 3.0 +

    1.3. ActivityRecognitionType

    @@ -1612,7 +1617,7 @@ To guarantee that the human sleep state tracking application runs on a device wi enum HumanActivityType { "PEDOMETER", "WRIST_UP", "HRM", "GPS", "SLEEP_MONITOR" }; - enum PedometerStepStatus { "NOT_MOVING", "WALKING", "RUNNING" }; + enum PedometerStepStatus { "NOT_MOVING", "WALKING", "RUNNING", "UNKNOWN" }; enum ActivityRecognitionType { "STATIONARY", "WALKING", "RUNNING", "IN_VEHICLE" }; -- 2.7.4