Search found 4 matches

by raoul
Monday 04 March 2019 19:29
Forum: Z-Wave
Topic: Fibaro FGBS222 Smart Implant
Replies: 19
Views: 6815

Re: Fibaro FGBS222 Smart Implant

Hi, I replied to your question on the reseller site but they didnt validate it. I bought a FGBS222 at the same place last week and did the required changes for openzwave support: https://github.com/OpenZWave/open-zwave/pull/1727 You just have to add the fgbs222.xml in your fibaro folder and add the ...
by raoul
Friday 31 August 2018 16:28
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Debian Stretch libssl.so.1.0.0 issue
Replies: 1
Views: 1529

Re: Debian Stretch libssl.so.1.0.0 issue

you need to compile openssl 1.0.0 from source. After that, you just need to copy the built libssl.so and libcrypto.so to libssl.so.1.0.0 and libcrypto.so.1.0.0 in /usr/local/lib and enjoy ! (note there is -shared needed when you launch ./config for building openssl)
by raoul
Saturday 25 August 2018 17:08
Forum: Heating/cooling
Topic: [Python] Control Mitsubishi MAC-557IF-E airconditioning
Replies: 146
Views: 80048

Re: [Python] Control Mitsubishi MAC-557IF-E airconditioning

Maybe the fan control has an issue to. For setting level 5 correctly, I had to change the line 107 like this:

Code: Select all

    domoticz_levels["fan"] = {"0":1,"10":2,"20":3,"30":4,"40":5,"50":0,"60":1}
by raoul
Saturday 25 August 2018 10:51
Forum: Heating/cooling
Topic: [Python] Control Mitsubishi MAC-557IF-E airconditioning
Replies: 146
Views: 80048

Re: [Python] Control Mitsubishi MAC-557IF-E airconditioning

Hello gysmo, there is a small bug for people having some special chars in their password. I solved it using urllib.parse.quote in the login func: def melcloud_login(self): data = "AppVersion=1.9.3.0&Email={0}&Password={1}".format(Parameters["Username"],urllib.parse.quote(Parameters["Password ...