Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shimmerresearch/shimmer-web-sdk",
"version": "0.1.8",
"version": "0.1.9",
"description": "Web Bluetooth and Web Serial API for Shimmer sensor devices (Shimmer3R, Verisense IMU/Pulse+)",
"type": "module",
"main": "dist/shimmer-web-sdk.cjs",
Expand Down
11 changes: 8 additions & 3 deletions src/devices/verisense/operationalConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -809,8 +809,10 @@ export const VERISENSE_OPERATIONAL_FIELD_SCHEMA = [
},
{
key: 'INACTIVE_TIMEOUT_MINUTES',
label: 'Inactive Timeout (minutes)',
desc: 'Minutes of no activity before the device stops recording and sleeps. 0 disables inactivity detection.',
label: 'Inactive Timeout (minutes, 0 = off)',
desc:
'Minutes the device must be completely stationary before it stops recording (1-63; 0 = stationary detection off, record regardless of movement). ' +
'CAUTION: with "Resume Rec On Activity" disabled, hitting this timeout also turns Logging OFF in the stored config - the device will not record again until it is reconfigured.',
kind: 'inactiveMinutes',
index: OP_IDX.INACTIVE_TIMEOUT,
min: 0,
Expand All @@ -819,7 +821,10 @@ export const VERISENSE_OPERATIONAL_FIELD_SCHEMA = [
{
key: 'RESUME_REC_ON_ACTIVITY',
label: 'Resume Rec On Activity',
desc: 'Automatically resume recording when activity is detected after an inactivity sleep. Only has an effect when Logging is enabled and the inactive timeout is above 0.',
desc:
'Enabled: recording pauses at the inactive timeout and automatically resumes when movement is detected. ' +
'Disabled: hitting the timeout stops recording permanently and turns Logging off in the stored config. ' +
'Only has an effect when Logging is enabled and the inactive timeout is above 0.',
kind: 'inactiveResume',
index: OP_IDX.INACTIVE_TIMEOUT,
options: [
Expand Down
Loading