zwave: fix settings descriptions. the values are hex not base64

This commit is contained in:
Koushik Dutta
2022-01-17 21:10:23 -08:00
parent 9fa8cdc89c
commit a093a70d16
3 changed files with 7 additions and 7 deletions

View File

@@ -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",

View File

@@ -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",

View File

@@ -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',
}
]
}