mirror of
https://github.com/koush/scrypted.git
synced 2026-05-04 21:30:30 +01:00
zwave: fix settings descriptions. the values are hex not base64
This commit is contained in:
4
plugins/zwave/package-lock.json
generated
4
plugins/zwave/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "@scrypted/zwave",
|
||||
"version": "0.0.33",
|
||||
"version": "0.0.34",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@scrypted/zwave",
|
||||
"version": "0.0.33",
|
||||
"version": "0.0.34",
|
||||
"license": "Apache",
|
||||
"dependencies": {
|
||||
"@scrypted/sdk": "file:../../sdk",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@scrypted/zwave",
|
||||
"version": "0.0.33",
|
||||
"version": "0.0.34",
|
||||
"description": "Z-Wave USB Controller for Scrypted",
|
||||
"author": "Scrypted",
|
||||
"license": "Apache",
|
||||
|
||||
@@ -170,25 +170,25 @@ export class ZwaveControllerProvider extends ScryptedDeviceBase implements Devic
|
||||
title: 'Network Key',
|
||||
key: 'networkKey',
|
||||
value: this.storage.getItem('networkKey'),
|
||||
description: 'The 16 byte Base64 encoded Network Security Key',
|
||||
description: 'The 16 byte hex encoded Network Security Key',
|
||||
},
|
||||
{
|
||||
title: 'S2 Access Control Key',
|
||||
key: 's2AccessControlKey',
|
||||
value: this.storage.getItem('s2AccessControlKey'),
|
||||
description: 'The 16 byte Base64 encoded S2 Access Control Key',
|
||||
description: 'The 16 byte hex encoded S2 Access Control Key',
|
||||
},
|
||||
{
|
||||
title: 'S2 Authenticated Key',
|
||||
key: 's2AuthenticatedKey',
|
||||
value: this.storage.getItem('s2AuthenticatedKey'),
|
||||
description: 'The 16 byte Base64 encoded S2 Authenticated Key',
|
||||
description: 'The 16 byte hex encoded S2 Authenticated Key',
|
||||
},
|
||||
{
|
||||
title: 'S2 Unauthenticated Key',
|
||||
key: 's2UnauthenticatedKey',
|
||||
value: this.storage.getItem('s2UnauthenticatedKey'),
|
||||
description: 'The 16 byte Base64 encoded S2 Unauthenticated Key',
|
||||
description: 'The 16 byte hex encoded S2 Unauthenticated Key',
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user