Vera or not vera?
-
@krisztianszabo yeah by default the plugin use the default password which is "user", if it's not your case, you can modify the code to change the "default" password to put yours!
@dest said in Vera or not vera?:
@krisztianszabo yeah by default the plugin use the default password which is "user", if it's not your case, you can modify the code to change the "default" password to put yours!
I guess the interfacepassword needs to be rewritten in I_DSCAlarmPanel1.xml?
I found text to this effect in this file, but unfortunately I couldn't find where to insert the "interface password" instead of "user" ..."Any password in Vera's device config will be passed cleartext to the MiOS backup servers ..."
I also found the above text in the file. It doesn’t sound too good for the password to be passed to the mios in plain text. Isn't that a problem for me?
-
@dest said in Vera or not vera?:
@krisztianszabo yeah by default the plugin use the default password which is "user", if it's not your case, you can modify the code to change the "default" password to put yours!
I guess the interfacepassword needs to be rewritten in I_DSCAlarmPanel1.xml?
I found text to this effect in this file, but unfortunately I couldn't find where to insert the "interface password" instead of "user" ..."Any password in Vera's device config will be passed cleartext to the MiOS backup servers ..."
I also found the above text in the file. It doesn’t sound too good for the password to be passed to the mios in plain text. Isn't that a problem for me?
@krisztianszabo The password is only used between openLuup and DSC, so there's no password going out!
Check the the file, you have a line like that:local password = luup.variable_get(DSC_PANEL_SID, "InterfacePassword", device) or "user"
so you can replace "user" there!
-
@krisztianszabo The password is only used between openLuup and DSC, so there's no password going out!
Check the the file, you have a line like that:local password = luup.variable_get(DSC_PANEL_SID, "InterfacePassword", device) or "user"
so you can replace "user" there!
@dest said in Vera or not vera?:
@krisztianszabo The password is only used between openLuup and DSC, so there's no password going out!
Check the the file, you have a line like that:local password = luup.variable_get(DSC_PANEL_SID, "InterfacePassword", device) or "user"
so you can replace "user" there!
Yes thanks I found it in the meantime that.
I typed my own password in place of "user", but unfortunately the connection was not established.
Unfortunately, the Dsc Plugin is indicated by a red border. -
That's 'cause of what I said to @akbooer , I need to dig a little bit more as the plugin is having a hard time to "stay connected" to the DSC!
@dest said in Vera or not vera?:
That's 'cause of what I said to @akbooer , I need to dig a little bit more as the plugin is having a hard time to "stay connected" to the DSC!
I understand.
I would be happy to offer my help, but I'm afraid you're not going to do much with me .... -
@akbooer
I find that sunrise and sunset happen late on openLuup compared to vera. OpenLuup is delayed for more than 1 hour.
Could this be a localization problem? -
@krisztianszabo said in Vera or not vera?:
Could this be a localization problem?
You perhaps have not set your location correctly in openLuup. The latitude and longitude are initially set in the Lua Startup code, which has as default:
-- You can personalise the installation by changing these attributes, -- which are persistent and may be removed from the Startup after a reload. local attr = luup.attr_set -- Geographical location attr ("City_description", "Greenwich") attr ("Country_description", "UNITED KINGDOM") attr ("Region_description", "England") attr ("latitude", "51.48") attr ("longitude", "0.0")
-
@krisztianszabo said in Vera or not vera?:
Could this be a localization problem?
You perhaps have not set your location correctly in openLuup. The latitude and longitude are initially set in the Lua Startup code, which has as default:
-- You can personalise the installation by changing these attributes, -- which are persistent and may be removed from the Startup after a reload. local attr = luup.attr_set -- Geographical location attr ("City_description", "Greenwich") attr ("Country_description", "UNITED KINGDOM") attr ("Region_description", "England") attr ("latitude", "51.48") attr ("longitude", "0.0")
@akbooer said in Vera or not vera?:
@krisztianszabo said in Vera or not vera?:
Could this be a localization problem?
You perhaps have not set your location correctly in openLuup. The latitude and longitude are initially set in the Lua Startup code, which has as default:
-- You can personalise the installation by changing these attributes, -- which are persistent and may be removed from the Startup after a reload. local attr = luup.attr_set -- Geographical location attr ("City_description", "Greenwich") attr ("Country_description", "UNITED KINGDOM") attr ("Region_description", "England") attr ("latitude", "51.48") attr ("longitude", "0.0")
Thank you, I corrected the values. We will see the result when it gets dark ...
-
@akbooer
For some reason, after the AltUi "reload engine" I get a "controller did not respond" response with an orange background.
So far, I thought dsc and harmony are not due to connection.
I just deleted my two unconnected devices.
And still this message.
I looked at the logs for the duration of the error message and did not see anything to throw out.
How can I find out the cause of the error?K
-
@akbooer
For some reason, after the AltUi "reload engine" I get a "controller did not respond" response with an orange background.
So far, I thought dsc and harmony are not due to connection.
I just deleted my two unconnected devices.
And still this message.
I looked at the logs for the duration of the error message and did not see anything to throw out.
How can I find out the cause of the error?K
@krisztianszabo said in Vera or not vera?:
after the AltUi "reload engine" I get a "controller did not respond" response with an orange background.
This is absolutely normal and is simply AltUI noting that connection has been lost during the restart. The only time you need to worry is if there is a timer counting away the seconds for a long time.
-
Hi @DesT !
I don't want to urge you, I'm just interested,
do you have any good news about dsc?
Thanks.
K -
Hi @DesT !
I don't want to urge you, I'm just interested,
do you have any good news about dsc?
Thanks.
KHi @akbooer ,
Another task ahead of me:
I have a 15 channel shutter control module that I want to run under OpenLuup. (if you help I can transfer the plugin files)The shutter control interface is connected to the vera via usb.
The following setting is in Vera:
Where can I make such settings in openLuup?
Thanks -
Probably much the same way as the RFX?
https://smarthome.community/topic/253/setting-up-rfxcom-plugin-in-standalone-openluup?_=1606133137706baud, parity, etc is set up in the ser2net file.. then connect using IP:Port (127.0.0.1 if its on the local computer)
-
Probably much the same way as the RFX?
https://smarthome.community/topic/253/setting-up-rfxcom-plugin-in-standalone-openluup?_=1606133137706baud, parity, etc is set up in the ser2net file.. then connect using IP:Port (127.0.0.1 if its on the local computer)
@perh
Thanks for the reply and tip.
I installed ser2net, I think it worked fine, but I don't have a / serial directory under the / dev directory .....
What do you think I should do then? -
@perh
How can I check if I am using debian 10.6?
I tried to type, but unfortunately there is no such directory ...