Skip to content

Commit

Permalink
Update objectDefinitions.ts
Browse files Browse the repository at this point in the history
delete description
  • Loading branch information
slimline33 authored Nov 28, 2023
1 parent 2db6325 commit 30ff31d
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions src/lib/objectDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,161 +37,139 @@ const stateAttrb: StateAttr = {
mac: {
type: 'string',

Check failure on line 38 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
name: 'MAC Address',

Check failure on line 39 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
description: 'Unique identifier for the device',
role: 'state',

Check failure on line 40 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
write: false,

Check failure on line 41 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
},
hash: {
type: 'string',

Check failure on line 44 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
name: 'Hash',

Check failure on line 45 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
description: 'Hash value associated with the device',
role: 'state',

Check failure on line 46 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
write: false,

Check failure on line 47 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
},
lastseen: {
type: 'number',

Check failure on line 50 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
name: 'Last Seen',

Check failure on line 51 in src/lib/objectDefinitions.ts

View workflow job for this annotation

GitHub Actions / check-and-lint

Delete `··`
description: 'Timestamp of the last interaction',
role: 'state',
write: false,
},
nextupdate: {
type: 'number',
name: 'Next Update',
description: 'Timestamp of the scheduled next update',
role: 'state',
write: false,
},
nextcheckin: {
type: 'number',
name: 'Next Check-in',
description: 'Timestamp for the next scheduled check-in',
role: 'state',
write: false,
},
pending: {
type: 'boolean',
name: 'Pending',
description: 'Flag indicating pending status',
role: 'state',
write: false,
},
alias: {
type: 'string',
name: 'Alias',
description: 'Alternate name or label for the device',
role: 'state',
write: false,
},
contentMode: {
type: 'number',
name: 'Content Mode',
description: 'Mode of the content',
role: 'state',
write: false,
},
LQI: {
type: 'number',
name: 'Link Quality Indicator (LQI)',
description: 'Signal quality indicator',

role: 'state',
write: false,
},
RSSI: {
type: 'number',
name: 'Received Signal Strength Indicator (RSSI)',
description: 'Strength of received signal',
role: 'state',
write: false,
},
temperature: {
type: 'number',
name: 'Temperature',
description: 'Device temperature',
role: 'state',
write: false,
},
batteryMv: {
type: 'number',
name: 'Battery Voltage',
description: 'Voltage of the device battery',
role: 'state',
write: false,
},
hwType: {
type: 'number',
name: 'Hardware Type',
description: 'Type of hardware',
role: 'state',
write: false,
},
wakeupReason: {
type: 'number',
name: 'Wakeup Reason',
description: 'Reason for device wakeup',
role: 'state',
write: false,
},
capabilities: {
type: 'number',
name: 'Capabilities',
description: 'Device capabilities',
role: 'state',
write: false,
},
modecfgjson: {
type: 'string',
name: 'Mode Configuration JSON',
description: 'Configuration settings in JSON format',
role: 'state',
write: false,
},
isexternal: {
type: 'boolean',
name: 'Is External',
description: 'Indicates if the device is external',
role: 'state',
write: false,
},
apip: {
type: 'string',
name: 'API IP',
description: 'IP address for API communication',
role: 'state',
write: false,
},
rotate: {
type: 'number',
name: 'Rotate',
description: 'Rotation setting',
role: 'state',
write: false,
},
lut: {
type: 'number',
name: 'Lookup Table (LUT)',
description: 'Lookup table setting',
role: 'state',
write: false,
},
invert: {
type: 'number',
name: 'Invert',
description: 'Inversion setting',
role: 'state',
write: false,
},
ch: {
type: 'number',
name: 'Channel',
description: 'Wireless channel',
role: 'state',
write: false,
},
ver: {
type: 'number',
name: 'Version',
description: 'Software or firmware version',
role: 'state',
write: false,
},
Expand Down

0 comments on commit 30ff31d

Please sign in to comment.