I am ready to install a new Veraplus aside my old Veralite, taking into account the return of experience of some of you !
The Veralite will be dedicated to measurements thanks to an RFXCOM and very few Zwave commands (mainly heating), which supposes that both Zwave networks will operate at the same time.
The Veraplus will be dedicated to everything else and particularly Security fonctions.
So I need to implement a lot of code linked with scenes coming from the Veralite to the Veraplus.
Is it possible to save in a text file all the configuration of my Veralite (devices, rooms, scenes, code luup, stattup luua, etc.) in order to copy some pieces of the configuration in the Veraplus ?
I can do that one by one, but is it possible to do that automatically and globally ?
No id?al ? ![]()
Yes, simple. It’s all contained in the user_data which you can access in JSON format with a single HTTP call:
http://YourVeraIP:3480/data_request?id=user_data2
See the documentation here: [url=http://wiki.micasaverde.com/index.php/Luup_Requests]http://wiki.micasaverde.com/index.php/Luup_Requests[/url], which also contains other requests you may find of interest.
to some extends, ALTUI MISC/DEBUG / javascript screen could also help to give you data in json format. just type respectively
MultiBox.getRoomsSync()
MultiBox.getScenesSync()
MultiBox.getDevicesSync()
Thank you for your help !