-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #359 from esl-epfl/master
Mobovi TicWatch schemas
- Loading branch information
Showing
5 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"namespace": "org.radarcns.passive.ticwatch", | ||
"type": "record", | ||
"name": "TicwatchAcceleration", | ||
"doc": "Data from 3-axis accelerometer sensor of a Mobovi TicWatch device.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (ms)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Processed time since the Unix Epoch (seconds)." }, | ||
{ "name": "x", "type": "float", "doc": "Acceleration in the x-axis (g)." }, | ||
{ "name": "y", "type": "float", "doc": "Acceleration in the y-axis (g)." }, | ||
{ "name": "z", "type": "float", "doc": "Acceleration in the z-axis (g)." } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"namespace": "org.radarcns.passive.ticwatch", | ||
"type": "record", | ||
"name": "TicwatchBatteryLevel", | ||
"doc": "Battery level of a TicWatch device.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (ms)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Processed time since the Unix Epoch (seconds)." }, | ||
{ "name": "batteryLevel", "type": "float", "doc": "Battery level from 0 to 1. Note that the battery level is a rough estimate." } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"namespace": "org.radarcns.passive.ticwatch", | ||
"type": "record", | ||
"name": "TicwatchGyroscope", | ||
"doc": "Data from 3-axis gyroscope sensor of a Mobovi TicWatch device.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (ms)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Processed time since the Unix Epoch (seconds)." }, | ||
{ "name": "x", "type": "float", "doc": "Angular velocity in the x-axis (rad/s)." }, | ||
{ "name": "y", "type": "float", "doc": "Angular velocity in the y-axis (rad/s)." }, | ||
{ "name": "z", "type": "float", "doc": "Angular velocity in the z-axis (rad/s)." } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"namespace": "org.radarcns.passive.ticwatch", | ||
"type": "record", | ||
"name": "TicwatchPpg", | ||
"doc": "PPG collected using a Mobovi TicWatch.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (ms)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Processed time since the Unix Epoch (seconds)." }, | ||
{ "name": "redled", "type": "float", "doc": "Red LED." }, | ||
{ "name": "iredled", "type": "float", "doc": "Infrared LED." } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#====================================== TicWatch device =====================================# | ||
vendor: Mobobi | ||
model: TicWatch | ||
version: 1.0.0 | ||
app_provider: .ticwatch.TicwatchSeviceProvier | ||
data: | ||
- type: ACCELEROMETER | ||
sample_rate: | ||
dynamic: true | ||
unit: G | ||
processing_state: RAW | ||
topic: android_esl_ticwatch_acceleration | ||
value_schema: .passive.ticwatch.TicwatchAcceleration | ||
- type: GYROSCOPE | ||
sample_rate: | ||
dynamic: true | ||
unit: RADAIAN_PER_SEC | ||
processing_state: RAW | ||
topic: android_esl_ticwatch_gyroscope | ||
value_schema: .passive.ticwatch.TicwatchGyroscope | ||
- type: BATTERY | ||
sample_rate: | ||
dynamic: true | ||
unit: PERCENTAGE | ||
processing_state: RAW | ||
topic: android_esl_ticwatch_battery_level | ||
value_schema: .passive.ticwatch.TicwatchBatteryLevel | ||
- type: PPG | ||
sample_rate: | ||
dynamic: true | ||
unit: UNKNOWN | ||
processing_state: RAW | ||
topic: android_esl_ticwatch_ppg | ||
value_schema: .passive.ticwatch.TicwatchPpg | ||
- type: EXTERNAL_TIME | ||
doc: Information sent by the Mobovi Ticwatch about time synchronisation with a NTP server. | ||
sample_rate: | ||
dynamic: true | ||
unit: SECOND | ||
topic: application_external_time | ||
value_schema: .monitor.application.ApplicationExternalTime | ||
- type: DEVICE_INFO | ||
doc: Device information where the app is installed. | ||
sample_rate: | ||
dynamic: true | ||
topic: application_device_info | ||
value_schema: .monitor.application.ApplicationDeviceInfo |