Skip to content

Commit

Permalink
Fix file name errors
Browse files Browse the repository at this point in the history
  • Loading branch information
danjjl committed Apr 29, 2024
1 parent 89cf757 commit 1281917
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 23 deletions.
11 changes: 0 additions & 11 deletions commons/passive/ticwatch/ppg.avsc

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"namespace": "org.radarcns.passive.ticWatch",
"namespace": "org.radarcns.passive.ticwatch",
"type": "record",
"name": "TicWatchAcceleration",
"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)." },
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"namespace": "org.radarcns.passive.ticWatch",
"namespace": "org.radarcns.passive.ticwatch",
"type": "record",
"name": "TicWatchBatteryLevel",
"name": "TicwatchBatteryLevel",
"doc": "Battery level of a TicWatch device.",
"fields": [
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (ms)." },
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"namespace": "org.radarcns.passive.ticWatch",
"namespace": "org.radarcns.passive.ticwatch",
"type": "record",
"name": "TicWatchGyroscope",
"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)." },
Expand Down
11 changes: 11 additions & 0 deletions commons/passive/ticwatch/ticwatch_ppg.avsc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"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": "redled", "type": "float", "doc": "Red LED." },
{ "name": "iredled", "type": "float", "doc": "Infrared LED." }
]
}
13 changes: 7 additions & 6 deletions specifications/passive/ticwatch-1.0.0.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,36 @@
#====================================== TicWatch device =====================================#
vendor: MOBOVI
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.esl.TicWatchAcceleration
value_schema: .passive.ticwatch.TicwatchAcceleration
- type: GYROSCOPE
sample_rate:
dynamic: true
unit: rad/s
processing_state: RAW
topic: android_esl_ticwatch_gyroscope
value_schema: .passive.esl.TicWatchGyroscope
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.esl.TicWatchBatteryLevel
value_schema: .passive.ticwatch.TicwatchBatteryLevel
- type: PPG
sample_rate:
dynamic: true
processing_state: RAW
topic: android_esl_ticwatch_ppg
value_schema: .passive.esl.TicWatchPPG
value_schema: .passive.ticwatch.TicwatchPpg
- type: EXTERNAL_TIME
doc: Information sent by the Mobovi Ticwatch about time synchronisation with a NTP server.
sample_rate:
Expand All @@ -38,7 +39,7 @@ data:
topic: application_external_time
value_schema: .monitor.application.ApplicationExternalTime
- type: DEVICE_INFO
doc: Device information where the app is installed
doc: Device information where the app is installed.
sample_rate:
dynamic: true
topic: application_device_info
Expand Down

0 comments on commit 1281917

Please sign in to comment.