Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configuration isn't updating nor sending to the node #80

Closed
Mirarkitty opened this issue Feb 20, 2015 · 3 comments
Closed

Configuration isn't updating nor sending to the node #80

Mirarkitty opened this issue Feb 20, 2015 · 3 comments
Assignees

Comments

@Mirarkitty
Copy link

Sometimes the configuration isn't updating properly. Example:

[2015-02-20 17:11:22.178] [D] [zway] SETDATA devices.19.instances.0.commandClasses.112.data.1.size = 2 (0x00000002)
[2015-02-20 17:11:22.179] [D] [zway] SETDATA devices.19.instances.0.commandClasses.112.data.1.val = 360 (0x00000168)
[2015-02-20 17:11:22.179] [D] [zway] SETDATA devices.19.instances.0.commandClasses.112.data.1 = Empty
...
[2015-02-20 17:15:29.926] [D] [zway] SETDATA devices.19.instances.0.commandClasses.112.data.2.size = 2 (0x00000002)
[2015-02-20 17:15:29.927] [D] [zway] SETDATA devices.19.instances.0.commandClasses.112.data.2.val = 7 (0x00000007)
[2015-02-20 17:15:29.927] [D] [zway] SETDATA devices.19.instances.0.commandClasses.112.data.2 = Empty

configuration still shows:
razberry_conf

No amount of reloading the interface from the server, "update from device" or "save to device" changes these messages. After changing 5 to 720 and "save into device":

razberry_conf2

Configuration from the configuration interface is never sent to the node, so "112.data.x" isn't updated with new values.

@dolpheen
Copy link

I don't know why in Master parameters update is disabled by a comment. (in configuration.js)
This workaround works for me
`
request = 'devices[' + obj.id + '].instances[' + obj.instance +'].commandClasses[0x'+ obj.commandclass +'].' + obj.command + obj.parameter.replace('[', '(').replace(']',')');
if(obj.commandclass !== '84') dataService.runCmd(request, false, $scope._t('error_handling_data'));
});

    if(cmd.commandclass === '84' && cmd.command == 'Set') {
        request = cfg.cmd + '.Set(' + cfg.configCconfigValue + ',' + cfg.configCconfigNodeValue + ')';    
        dataService.runCmd(request, false, $scope._t('error_handling_data'));   
    }

`

@Mirarkitty
Copy link
Author

I can't trust the configuration interface at all right now - I've had nodes messed up completely - so I'm only doing Expert Commands right now.

@vades
Copy link
Contributor

vades commented Mar 4, 2015

Fixed: configuration sends commands for Configuration, Protection, Wakeup and SwitchAll

@vades vades closed this as completed Mar 4, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants