Eq3 Max - control with php scripts

For heating/cooling related questions in Domoticz

Moderator: leecollings

jack74
Posts: 9
Joined: Wednesday 16 November 2016 12:27
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by jack74 »

Nothing... i didn't work...

I have a question... I'm launching the script from my browser chrome on my PC and not directly from raspberry, is it ok?
Attachments
domocreatenewhardwx.php_results.txt
(67.48 KiB) Downloaded 159 times
TikTicz
Posts: 14
Joined: Friday 16 September 2016 20:35
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by TikTicz »

Lauching from any browser, from any device should work fine.

Attached a new file (with domocreatenewhardwx.php) with more debug prints. Please run domocreatenewhardwx.php again and investigate the result.
Attachments
eq3.zip
(279.14 KiB) Downloaded 196 times
jack74
Posts: 9
Joined: Wednesday 16 November 2016 12:27
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by jack74 »

Solved!!! :D :D :D

I set the website protection with password... I removed it an then the script worked perfectly!!!

Thank you very much!!!
jack74
Posts: 9
Joined: Wednesday 16 November 2016 12:27
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by jack74 »

Hi TikTicz,

I started configuring the scripts in domoticz and I noticed that it only works if the server is without password... Is there a way to set the password in the script to leave the system more secure?

Thanks,

Jack
mvzut
Posts: 443
Joined: Thursday 12 November 2015 10:55
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: The Netherlands
Contact:

Eq3 Max - control with php scripts

Post by mvzut »

Hi TikTicz,

Nice work! Personaly, I am using a lua script for integration of my MAX! system. This is based on core code from Westcott, extended with my own Domoticz interfacing parts. Wondering if there are any benefits in using your php implementation? Maybe I should just try it, so that I can compare properly.

Vice-versa: For people who are interested: feel free to try my latest script at viewtopic.php?f=34&t=841&p=104705#p104705, which is a lua script that runs outside Domoticz (just like the php I guess). It runs very stable and is easy to set up, but I am always open for testers & feedback/suggestions.

Martijn
Last edited by mvzut on Monday 21 November 2016 0:09, edited 2 times in total.
Raspberry Pi 4 - RFXtrx433 - CC2531 Zigbee - Opentherm Gateway - P1 smart meter - Netatmo - Philips Hue - ELV Max! - ESP8266 DIY water meter - 6 x Sonos - 4 x IP cameras - Wall mounted tablet + Dashticz - Google Home integration - MANY switches/sensors
mvzut
Posts: 443
Joined: Thursday 12 November 2015 10:55
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: The Netherlands
Contact:

Eq3 Max - control with php scripts

Post by mvzut »

jack74 wrote:Hi TikTicz,

I started configuring the scripts in domoticz and I noticed that it only works if the server is without password... Is there a way to set the password in the script to leave the system more secure?

Thanks,

Jack
What do you mean with "if the server is without password", is this the authentication for Domoticz itself? I guess the php script makes use of JSON calls, which do not work by default if Domoticz is configured to require a password. This can be solved (apart from removing the authentication altogether) by using commands in the form of

Code: Select all

http://<username:password@>domoticz-ip<:port>/json.htm?api-call
in the php script, but that would require that you store your credentials in the script (in uncencrypted form). Not ideal maybe...
There may however be an alternative: Where does you php script run? You can try adding the IP address of that machine to the list of Local networks in the Settings screen of Domoticz. If it runs on the same computer as Domoticz, then simply add 127.0.0.1. Domoticz will not require authentication for these local networks.
Last edited by mvzut on Monday 21 November 2016 0:21, edited 1 time in total.
Raspberry Pi 4 - RFXtrx433 - CC2531 Zigbee - Opentherm Gateway - P1 smart meter - Netatmo - Philips Hue - ELV Max! - ESP8266 DIY water meter - 6 x Sonos - 4 x IP cameras - Wall mounted tablet + Dashticz - Google Home integration - MANY switches/sensors
TikTicz
Posts: 14
Joined: Friday 16 September 2016 20:35
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by TikTicz »

Hi Jack74,

Martijn is right. You could try to "username:password@" in front of the ipaddress you configured in appsettings.php at variable: $domoticzhost.
For example "jack74:[email protected]" I am not sure if all my php scripting keeps working. Since this is not my approach, I can't help you any further. It is not save to story usernames and password in plain text file.

A better approach would be to include the php server in your local network settings of your Domoticz settings page.
Last edited by TikTicz on Monday 21 November 2016 18:08, edited 1 time in total.
TikTicz
Posts: 14
Joined: Friday 16 September 2016 20:35
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by TikTicz »

Hi Martijn,

Setting up the LUA approach was to complicated for me. Clues were spread among various posts and I just could not figure out how to get this running stable (this was around Q3 2015). I might have been impatient. As I use php for other purposes, I started a php approach. For me PHP is easier and it seems a more rich and supported language.But this was at least 1 year ago, and I just took me while to get it running stable and by the time I removed the most important bugs out of my code, the winter 2015/2016 has ended. Also due to the limited time a spent on it. At the beginning of this winter I shared this code, because anyone with php (not only Domoticz users) can benefit.

Now I assume the LUA approach is more mature, but as my php approach is also mature and stable I will stick to it. I will make no claim the php approach is better, but for me it's working.

Best regards,
TikTicz
mvzut
Posts: 443
Joined: Thursday 12 November 2015 10:55
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: The Netherlands
Contact:

Eq3 Max - control with php scripts

Post by mvzut »

TikTicz wrote:Now I assume the LUA approach is more mature, but as my php approach is also mature and stable I will stick to it. I will make no claim the php approach is better, but for me it's working.

Best regards,
TikTicz
Hi TikTicz,

I don't know exactly what the status was in Q3 2015, I stepped in later, but I guess you're right. I hesitate to say it, especially since it's partly my own code, but I do think the LUA is quite mature now. Early versions (that a few people still use) involve creating your own dummy devices with a special naming convention. My latest version supports automatic device creation (although a bit different than your scripts do), and also supports reading out wall mounted thermostats and door/window sensors. I noticed that your class script decodes quite some more info coming form the Cube than the LUA script does, very interesting! Maybe I'll have a look if I can copy a few of them if you don't mind.

I read that you once experienced that the Cube lost all its settings? I have had the same, and more than once. I read somewhere that the Cube doesn't like too frequent polling, so I increased the interval between polls from one to five minutes, and I haven't had any problems since (knock on wood Image). I guess your system polls the Cube every minute, right? If you or other users of the scripts experience such problems more often, I can advise to build in the option for less frequent polling.
Raspberry Pi 4 - RFXtrx433 - CC2531 Zigbee - Opentherm Gateway - P1 smart meter - Netatmo - Philips Hue - ELV Max! - ESP8266 DIY water meter - 6 x Sonos - 4 x IP cameras - Wall mounted tablet + Dashticz - Google Home integration - MANY switches/sensors
TikTicz
Posts: 14
Joined: Friday 16 September 2016 20:35
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by TikTicz »

Thanks for explaining your progress, a very good job! For now I am happy, when I get more requirements I will consider your lua implementation.
I don't mind if you take the code. I shared it for anyone who can benefit. Beside the baseline of my code did come from MEGA (http://www.mega-nas.de/max/), so it wasn't mine to begin with.

When I started coding I also think polling was an issue, but later on I discovered only the updating was the issue. This is why:
Doing updates frequent will use up the duty cycle which is about 36 seconds per hour. This seems to be a legal limitations for 868MHz radio comms. Once the maximum duty cycle is reached, no communication with the cube is posible. Communications will be paused with an hour.
So I returned to polling once a minute to read out the values, but I only update temperature when realy needed. Reading gets the info straight out of cube, without radio communication (at least that's what I think).
mvzut
Posts: 443
Joined: Thursday 12 November 2015 10:55
Target OS: Raspberry Pi / ODroid
Domoticz version: Beta
Location: The Netherlands
Contact:

Eq3 Max - control with php scripts

Post by mvzut »

TikTicz wrote:So I returned to polling once a minute to read out the values, but I only update temperature when realy needed. Reading gets the info straight out of cube, without radio communication (at least that's what I think).
My script also writes the Domoticz setpoints only when they have changed. Still, my Cube lost all its settings three or four times in a few months. I read somewhere (I think it was on this forum, forgot exactly where) that this could be caused by too frequent polling. But maybe he actually meant: too frequent writing of setpoints to the Cube. Anyway, I changed the polling (reading) frequency to 5 minutes and haven't had these Cube resets since then.
Last edited by mvzut on Tuesday 22 November 2016 20:49, edited 1 time in total.
Raspberry Pi 4 - RFXtrx433 - CC2531 Zigbee - Opentherm Gateway - P1 smart meter - Netatmo - Philips Hue - ELV Max! - ESP8266 DIY water meter - 6 x Sonos - 4 x IP cameras - Wall mounted tablet + Dashticz - Google Home integration - MANY switches/sensors
jack74
Posts: 9
Joined: Wednesday 16 November 2016 12:27
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by jack74 »

Hi,

I can confirm that if you set 127.0.0.1 in Domoticz settings "Local Networks (no username/password)" and also in the appsettings.php ($domoticzhost = "127.0.0.1";) it works fine with Website protection password actived!!!

Thanks a lot to everybody! :D

Jack
nono212
Posts: 39
Joined: Sunday 18 December 2016 13:47
Target OS: Linux
Domoticz version: 3.6179
Contact:

Re: Eq3 Max - control with php scripts

Post by nono212 »

Hello
Great job guys
I have a small problem with the php script :
He is able to see my devices but not to grap the details .
The settem is at 21° but he is saying 20.5
any ideas ?

I have this 2 printscreens
Attachments
elv2.png
elv2.png (40.05 KiB) Viewed 8521 times
elv.jpg
elv.jpg (126.2 KiB) Viewed 8521 times
TikTicz
Posts: 14
Joined: Friday 16 September 2016 20:35
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by TikTicz »

Hi,

Sorry for this late response, but I did not receive a notification about your question. In the second screenshot it shows strange names "Cuisine-Rad" en "2a0000". Did you manipulate this names yourself> They do not match the syntax the php scripts expects. When devices are created with a syntax like "10494c Bureau-Rad". The first 6 position are the rf-address of the valve/thermostat, followed by the name you in the eq3-max setup.

My advice is to remove the devices (also the matching text devices) that do not match the syntax. After this check to see if the remaining thermostats devices can be operated by Domoticz. If this is the case, try to recreate the missing thermostats with the script "domocreatenewhardw.php".

Hope this helps.
Dlay
Posts: 1
Joined: Wednesday 29 March 2017 20:46
Target OS: Linux
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by Dlay »

Hello TikTicz,

when i start the eq3read.php i get the following error:

Fatal error: Uncaught Error: [] operator not supported for strings in /www/php/eq3class.php:196
Stack trace:
#0 /www/php/eq3class.php(59): Eq3Class->GetBuff('L:')
#1 /www/php/eq3read.php(13): Eq3Class->OpenSock('192.168.1.236', '62910')
#2 {main}
thrown in /www/php/eq3class.php on line 196

Line 196 in eq3class.php contains:

if ($line != "") $this->buffarr[]=substr($line,0,-1);

Can you help ?

The appsettings.php is filled correctly.
I use PHP7.1.3 with OpenWRT.

BRs
Dlay
TikTicz
Posts: 14
Joined: Friday 16 September 2016 20:35
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by TikTicz »

Sorry, I don't have a clue
kluczus
Posts: 24
Joined: Tuesday 12 September 2017 14:39
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Eq3 Max - control with php scripts

Post by kluczus »

Hi,
How to use this scripts with attached wall thermostats ? When I connect them and want to create new devices I have a lot of strange devices (thermostat setpoints and txt).
Attachments
without_wall_thermostats.txt
(5.5 KiB) Downloaded 89 times
with_wall_thermostats.txt
(7.73 KiB) Downloaded 103 times
........................................................................................
RPi2 + sonoff + 433MHz + Xiaomi Gateway + EQ-3 MAX!
michass
Posts: 21
Joined: Tuesday 27 March 2018 14:39
Target OS: NAS (Synology & others)
Domoticz version: 4.10064
Location: Gdynia
Contact:

Re: Eq3 Max - control with php scripts

Post by michass »

Hi,
Is there possibility to read real temperature that occurs in room from radiator thermostat?
Thank in advance
Best Regards
Michał
Synology NAS
Heating: eq-3 MAX!
Vent: by Sonoff POW R2 & Espeasy
Cam: Foscam C1
michass
Posts: 21
Joined: Tuesday 27 March 2018 14:39
Target OS: NAS (Synology & others)
Domoticz version: 4.10064
Location: Gdynia
Contact:

Re: Eq3 Max - control with php scripts

Post by michass »

Please help!
I have new radiator thermostats and wall thermostat in one room
Don't work:(
Could names of rooms / units do this issue?

Code: Select all

Array
(
    [err] => 
    [buff] => Array
        (
            [0] => H:NEQ1208355,1721bf,0113,00000000,4edc2ec7,00,32,12090c,0801,03,0000
            [1] => M:00,01,VgIFAQVTYWxvbhoc+AIIWmFjaG9kbmkaD4sDCVN5cGlhbG5pYRoc9QQIUG9sbm9jbnkaEQwFCExhemllbmthGinNBwEaHPhPRVExMDM3MzM3DFRlcm1vc3RhdCBQZAEDGS5tT0VRMTQ0NzY5MhJUZXJtb3N0YXQgxZtjaWVubnkBARpx8U9FUTEwMzc3MjIOVGVybW9zdGF0IHphY2gBARoPi09FUTEwNDI5NjUIWmFjaG9kbmkCARoc9U9FUTEwMzczNjQJU3lwaWFsbmlhAwEaEQxPRVExMDQyNjQxCFBvbG5vY255BAEaKc1PRVEwOTQyOTc4CExhemllbmthBQE=
            [2] => C:1721bf,7RchvwATAQBORVExMjA4MzU1AAsABEAAAAAAAAAAAP///////////////////////////wsABEAAAAAAAAAAQf///////////////////////////2h0dHA6Ly9tYXguZXEtMy5kZTo4MC9jdWJlADAvbG9va3VwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAENFVAAACgADAAAOEENFU1QAAwACAAAcIA==
            [3] => C:1a1cf8,0hoc+AEBEaFPRVExMDM3MzM3KiE9CQcYAzAM/wBESFUIRSBFIEUgRSBFIEUgRSBFIEUgRSBFIERIVQhFIEUgRSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIA==
            [4] => C:192e6d,zhkubQMBEP9PRVExNDQ3NjkyKiE9CURIVQhFIEUgRSBFIEUgRSBFIEUgRSBFIEUgREhVCEUgRSBFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgBxgw
            [5] => C:1a71f1,0hpx8QEBEaFPRVExMDM3NzIyKiE9CQcYAzAM/wBESFUIRSBFIEUgRSBFIEUgRSBFIEUgRSBFIERIVQhFIEUgRSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIA==
            [6] => C:1a0f8b,0hoPiwECEaFPRVExMDQyOTY1KyE9CQcYAzAM/wBESFUIRSBFIEUgRSBFIEUgRSBFIEUgRSBFIERIVQhFIEUgRSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIA==
            [7] => C:1a1cf5,0hoc9QEDEaFPRVExMDM3MzY0KyE9CQcYAzAM/wBESFUIRSBFIEUgRSBFIEUgRSBFIEUgRSBFIERIVQhFIEUgRSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIA==
            [8] => C:1a110c,0hoRDAEEEaFPRVExMDQyNjQxKyE9CQcYAzAM/wBESFUIRSBFIEUgRSBFIEUgRSBFIEUgRSBFIERIVQhFIEUgRSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIA==
            [9] => C:1a29cd,0hopzQEFEaFPRVEwOTQyOTc4KyE9CQcYAzAM/wBESFUIRSBFIEUgRSBFIEUgRSBFIEUgRSBFIERIVQhFIEUgRSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIERIVGxEzFUURSBFIEUgRSBFIEUgRSBFIEUgREhUbETMVRRFIEUgRSBFIEUgRSBFIEUgRSBESFRsRMxVFEUgRSBFIEUgRSBFIEUgRSBFIA==
            [10] => L:Cxoc+AwSGQAqAAAADBkubewSGQQqAAAA9gsacfHsEhkAKgAAAAsaD4vsEhkAKAAAAAsaHPXsEhkAJwAAAAsaEQzsEhkAKAAAAAsaKc3sEhkAKAAAAA==
        )

)
Array
(
    [cube] => Array
        (
            [hSerialNumber] => NEQ1208355
            [hRFAdress] => 1721bf
            [hFirmware] => 0113
            [h1?] => 00000000
            [hHTTP-ConnID] => 4edc2ec7
            [hDuty cycle] => 0
            [hFree memory slots] => 50
            [hCube Date] => 12-9-18
            [hCube Time] => 8:1
            [hStateCubeTime] => 03
            [hNtpCount] => 0000
            [c?DataLength] => 237
            [cRFAdress] => 1721bf
            [cDeviceType] => 0
            [c?2] => 1310
            [c?RoomId] => 19
            [c?FirmwareVersion] => 1
            [c?NumModus] => 0
            [cSerialNumber] => NEQ1208355
            [cPortalEnabled] => 0
            [c?3] => b0440
            [c?4] => 00000000
            [c?5] => ffffffffffffffffffffffffffffffffffffffffff
            [c?6] => b0440
            [c?7] => 000000041
            [c?8] => ffffffffffffffffffffffffffffffffffffffffff
            [cPortalURL] => http://max.eq-3.de:80/cube0/lookup
            [c?9] => 000000000000000000000000000000000000000000000000000000000000
            [c?A] => 000000000000000000000000000000000
            [c?B] => CET
            [c?C] => 00a0300e10
            [c?D] => CEST
            [c?E] => 0302001c200
        )

    [meta] => Array
        (
            [m?1] => 56
            [m?2] => 2
            [mRoomCount] => 5
            [mDevCount] => 7
        )

    [room] => Array
        (
            [1] => Array
                (
                    [mRoomID] => 1
                    [mRoomNameLength] => 5
                    [mRoomName] => Salon
                    [mFirstRFAdress] => 1a1cf8
                )

            [2] => Array
                (
                    [mRoomID] => 2
                    [mRoomNameLength] => 8
                    [mRoomName] => Zachodni
                    [mFirstRFAdress] => 1a0f8b
                )

            [3] => Array
                (
                    [mRoomID] => 3
                    [mRoomNameLength] => 9
                    [mRoomName] => Sypialnia
                    [mFirstRFAdress] => 1a1cf5
                )

            [4] => Array
                (
                    [mRoomID] => 4
                    [mRoomNameLength] => 8
                    [mRoomName] => Polnocny
                    [mFirstRFAdress] => 1a110c
                )

            [5] => Array
                (
                    [mRoomID] => 5
                    [mRoomNameLength] => 8
                    [mRoomName] => Lazienka
                    [mFirstRFAdress] => 1a29cd
                )

        )

    [devc] => Array
        (
            [1] => Array
                (
                    [mDeviceType] => 1
                    [mRFAdress] => 1a1cf8
                    [mSerialNumber] => OEQ1037337
                    [mNameLength] => 12
                    [mDeviceName] => Termostat Pd
                    [mRoomID] => 1
                    [lLiveReadLength] => 11
                    [lLiveRFAdress] => 1a1cf8
                    [lLive?1] => c
                    [lValvePosition] => 0
                    [lTemperature] => 21
                    [lDateUntil] => 0.0.0
                    [lTimeUntil] => 0
                    [lTimestampUntil] => 943891200
                    [lvalid] => 1
                    [lError] => 0
                    [lisAnswer] => 0
                    [linitialized] => 1
                    [lLiveData7] => 0
                    [lLowBatt] => 0
                    [lLinkError] => 0
                    [lPanelLock] => 0
                    [lGatewayOK] => 1
                    [lDST] => 1
                    [lNot used] => 0
                    [lMode] => manu
                )

            [2] => Array
                (
                    [mDeviceType] => 3
                    [mRFAdress] => 192e6d
                    [mSerialNumber] => OEQ1447692
                    [mNameLength] => 18
                    [mDeviceName] => Termostat ścienny
                    [mRoomID] => 1
                    [lLiveReadLength] => 12
                    [lLiveRFAdress] => 192e6d
                    [lLive?1] => ec
                    [lvalid] => 1
                    [lError] => 0
                    [lisAnswer] => 0
                    [linitialized] => 1
                    [lLiveData7] => 0
                    [lLowBatt] => 0
                    [lLinkError] => 0
                    [lPanelLock] => 0
                    [lGatewayOK] => 1
                    [lDST] => 1
                    [lNot used] => 0
                    [lMode] => manu
                )

            [3] => Array
                (
                    [mDeviceType] => 1
                    [mRFAdress] => 1a71f1
                    [mSerialNumber] => OEQ1037722
                    [mNameLength] => 14
                    [mDeviceName] => Termostat zach
                    [mRoomID] => 1
                )

            [4] => Array
                (
                    [mDeviceType] => 1
                    [mRFAdress] => 1a0f8b
                    [mSerialNumber] => OEQ1042965
                    [mNameLength] => 8
                    [mDeviceName] => Zachodni
                    [mRoomID] => 2
                )

            [5] => Array
                (
                    [mDeviceType] => 1
                    [mRFAdress] => 1a1cf5
                    [mSerialNumber] => OEQ1037364
                    [mNameLength] => 9
                    [mDeviceName] => Sypialnia
                    [mRoomID] => 3
                )

            [6] => Array
                (
                    [mDeviceType] => 1
                    [mRFAdress] => 1a110c
                    [mSerialNumber] => OEQ1042641
                    [mNameLength] => 8
                    [mDeviceName] => Polnocny
                    [mRoomID] => 4
                )

            [7] => Array
                (
                    [mDeviceType] => 1
                    [mRFAdress] => 1a29cd
                    [mSerialNumber] => OEQ0942978
                    [mNameLength] => 8
                    [mDeviceName] => Lazienka
                    [mRoomID] => 5
                )

            [8] => Array
                (
                    [lLiveReadLength] => 4
                    [lLiveRFAdress] => 2a0000
                    [lLive?1] => 0
                    [lvalid] => 1
                    [lError] => 0
                    [lisAnswer] => 1
                    [linitialized] => 1
                    [lLiveData7] => 0
                    [lLowBatt] => 0
                    [lLinkError] => 0
                    [lPanelLock] => 0
                    [lGatewayOK] => 0
                    [lDST] => 1
                    [lNot used] => 0
                    [lMode] => boost
                )

            [9] => Array
                (
                    [lLiveReadLength] => 26
                    [lLiveRFAdress] => 71f1ec
                    [lLive?1] => 12
                    [lvalid] => 1
                    [lError] => 1
                    [lisAnswer] => 0
                    [linitialized] => 0
                    [lLiveData7] => 1
                    [lLowBatt] => 0
                    [lLinkError] => 0
                    [lPanelLock] => 0
                    [lGatewayOK] => 0
                    [lDST] => 0
                    [lNot used] => 0
                    [lMode] => auto
                )

            [10] => Array
                (
                    [lLiveReadLength] => 42
                    [lLiveRFAdress] => 000000
                    [lLive?1] => b
                    [lvalid] => 1
                    [lError] => 1
                    [lisAnswer] => 0
                    [linitialized] => 1
                    [lLiveData7] => 0
                    [lLowBatt] => 0
                    [lLinkError] => 0
                    [lPanelLock] => 0
                    [lGatewayOK] => 0
                    [lDST] => 1
                    [lNot used] => 1
                    [lMode] => boost
                )

            [11] => Array
                (
                    [lLiveReadLength] => 139
                    [lLiveRFAdress] => ec1219
                    [lLive?1] => 0
                    [lvalid] => 0
                    [lError] => 1
                    [lisAnswer] => 0
                    [linitialized] => 0
                    [lLiveData7] => 0
                    [lLowBatt] => 0
                    [lLinkError] => 0
                    [lPanelLock] => 0
                    [lGatewayOK] => 0
                    [lDST] => 0
                    [lNot used] => 0
                    [lMode] => auto
                )

            [12] => Array
                (
                    [lLiveReadLength] => 0
                    [lLiveRFAdress] => 000b1a
                    [lLive?1] => 1c
                    [lvalid] => 1
                    [lError] => 0
                    [lisAnswer] => 1
                    [linitialized] => 0
                    [lLiveData7] => 1
                    [lLowBatt] => 1
                    [lLinkError] => 1
                    [lPanelLock] => 1
                    [lGatewayOK] => 0
                    [lDST] => 1
                    [lNot used] => 1
                    [lMode] => auto
                )

        )

)

Code: Select all

http://192.168.0.109:8084/json.htm?type=devices&filter=utility&used=true
{
   "ActTime" : 1536732207,
   "AstrTwilightEnd" : "21:20",
   "AstrTwilightStart" : "04:05",
   "CivTwilightEnd" : "19:48",
   "CivTwilightStart" : "05:37",
   "DayLength" : "12:58",
   "NautTwilightEnd" : "20:32",
   "NautTwilightStart" : "04:53",
   "ServerTime" : "2018-09-12 08:03:27",
   "SunAtSouth" : "12:05",
   "Sunrise" : "06:13",
   "Sunset" : "19:11",
   "app_version" : "4.9700",
   "status" : "OK",
   "title" : "Devices"
}


http://192.168.0.109:8084/json.htm?type=hardware
{
   "result" : [
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "false",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Pogoda Rewa",
         "Password" : "pws:IGDYNIA44",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 14,
         "Username" : "2cc5f6ab120db6ee",
         "idx" : "2"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Pogoda Redłowo",
         "Password" : "pws:IGDYNIA44",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 14,
         "Username" : "2cc5f6ab120db6ee",
         "idx" : "3"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Ogrzewanie",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 15,
         "Username" : "",
         "idx" : "4"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Kamera",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 15,
         "Username" : "",
         "idx" : "6"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Wentylacja",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 15,
         "Username" : "",
         "idx" : "7"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "false",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 10000,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "PING",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 51,
         "Username" : "",
         "idx" : "8"
      }
   ],
   "status" : "OK",
   "title" : "Hardware"
}


http://192.168.0.109:8084/json.htm?type=command¶m=addhardware&htype=15&port=1&name=Eq3Virtual&enabled=true
{
   "idx" : "9",
   "status" : "OK",
   "title" : "AddHardware"
}

Array
(
    [idx] => 9
    [status] => OK
    [title] => AddHardware
)

http://192.168.0.109:8084/json.htm?type=hardware
{
   "result" : [
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "false",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Pogoda Rewa",
         "Password" : "pws:IGDYNIA44",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 14,
         "Username" : "2cc5f6ab120db6ee",
         "idx" : "2"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Pogoda Redłowo",
         "Password" : "pws:IGDYNIA44",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 14,
         "Username" : "2cc5f6ab120db6ee",
         "idx" : "3"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Ogrzewanie",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 15,
         "Username" : "",
         "idx" : "4"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Kamera",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 15,
         "Username" : "",
         "idx" : "6"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Wentylacja",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 15,
         "Username" : "",
         "idx" : "7"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "false",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 10000,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "PING",
         "Password" : "",
         "Port" : 0,
         "SerialPort" : "",
         "Type" : 51,
         "Username" : "",
         "idx" : "8"
      },
      {
         "Address" : "",
         "DataTimeout" : 0,
         "Enabled" : "true",
         "Extra" : "",
         "Mode1" : 0,
         "Mode2" : 0,
         "Mode3" : 0,
         "Mode4" : 0,
         "Mode5" : 0,
         "Mode6" : 0,
         "Name" : "Eq3Virtual",
         "Password" : "",
         "Port" : 1,
         "SerialPort" : "1",
         "Type" : 15,
         "Username" : "",
         "idx" : "9"
      }
   ],
   "status" : "OK",
   "title" : "Hardware"
}


http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=1a1cf8+Termostat+Pd&sensortype=8
{
   "idx" : "23",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 23
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=1a1cf8+Termostat+Pd+txt&sensortype=5
{
   "idx" : "24",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 24
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=192e6d+Termostat+%C5%9Bcienny&sensortype=8
{
   "idx" : "25",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 25
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=192e6d+Termostat+%C5%9Bcienny+txt&sensortype=5
{
   "idx" : "26",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 26
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Termostat+zach&sensortype=8
{
   "idx" : "27",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 27
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Termostat+zach+txt&sensortype=5
{
   "idx" : "28",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 28
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Zachodni&sensortype=8
{
   "idx" : "29",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 29
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Zachodni+txt&sensortype=5
{
   "idx" : "30",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 30
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Sypialnia&sensortype=8
{
   "idx" : "31",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 31
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Sypialnia+txt&sensortype=5
{
   "idx" : "32",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 32
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Polnocny&sensortype=8
{
   "idx" : "33",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 33
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Polnocny+txt&sensortype=5
{
   "idx" : "34",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 34
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Lazienka&sensortype=8
{
   "idx" : "35",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 35
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=+Lazienka+txt&sensortype=5
{
   "idx" : "36",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 36
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=2a0000+&sensortype=8
{
   "idx" : "37",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 37
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=2a0000++txt&sensortype=5
{
   "idx" : "38",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 38
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=71f1ec+&sensortype=8
{
   "idx" : "39",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 39
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=71f1ec++txt&sensortype=5
{
   "idx" : "40",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 40
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=000000+&sensortype=8
{
   "idx" : "41",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 41
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=000000++txt&sensortype=5
{
   "idx" : "42",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 42
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=ec1219+&sensortype=8
{
   "idx" : "43",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 43
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=ec1219++txt&sensortype=5
{
   "idx" : "44",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 44
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=000b1a+&sensortype=8
{
   "idx" : "45",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 45
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=000b1a++txt&sensortype=5
{
   "idx" : "46",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}

Array
(
    [idx] => 46
    [status] => OK
    [title] => CreateVirtualSensor
)

http://192.168.0.109:8084/json.htm?type=createvirtualsensor&idx=9&sensorname=Eq3GeneralAlert&sensortype=7
{
   "idx" : "47",
   "status" : "OK",
   "title" : "CreateVirtualSensor"
}


Done
Array
(
    [idx] => 47
    [status] => OK
    [title] => CreateVirtualSensor
)
Array
(
    [1] => Array
        (
            [mDeviceType] => 1
            [mRFAdress] => 1a1cf8
            [mSerialNumber] => OEQ1037337
            [mNameLength] => 12
            [mDeviceName] => Termostat Pd
            [mRoomID] => 1
            [lLiveReadLength] => 11
            [lLiveRFAdress] => 1a1cf8
            [lLive?1] => c
            [lValvePosition] => 0
            [lTemperature] => 21
            [lDateUntil] => 0.0.0
            [lTimeUntil] => 0
            [lTimestampUntil] => 943891200
            [lvalid] => 1
            [lError] => 0
            [lisAnswer] => 0
            [linitialized] => 1
            [lLiveData7] => 0
            [lLowBatt] => 0
            [lLinkError] => 0
            [lPanelLock] => 0
            [lGatewayOK] => 1
            [lDST] => 1
            [lNot used] => 0
            [lMode] => manu
        )

    [2] => Array
        (
            [mDeviceType] => 3
            [mRFAdress] => 192e6d
            [mSerialNumber] => OEQ1447692
            [mNameLength] => 18
            [mDeviceName] => Termostat ścienny
            [mRoomID] => 1
            [lLiveReadLength] => 12
            [lLiveRFAdress] => 192e6d
            [lLive?1] => ec
            [lvalid] => 1
            [lError] => 0
            [lisAnswer] => 0
            [linitialized] => 1
            [lLiveData7] => 0
            [lLowBatt] => 0
            [lLinkError] => 0
            [lPanelLock] => 0
            [lGatewayOK] => 1
            [lDST] => 1
            [lNot used] => 0
            [lMode] => manu
        )

    [3] => Array
        (
            [mDeviceType] => 1
            [mRFAdress] => 1a71f1
            [mSerialNumber] => OEQ1037722
            [mNameLength] => 14
            [mDeviceName] => Termostat zach
            [mRoomID] => 1
        )

    [4] => Array
        (
            [mDeviceType] => 1
            [mRFAdress] => 1a0f8b
            [mSerialNumber] => OEQ1042965
            [mNameLength] => 8
            [mDeviceName] => Zachodni
            [mRoomID] => 2
        )

    [5] => Array
        (
            [mDeviceType] => 1
            [mRFAdress] => 1a1cf5
            [mSerialNumber] => OEQ1037364
            [mNameLength] => 9
            [mDeviceName] => Sypialnia
            [mRoomID] => 3
        )

    [6] => Array
        (
            [mDeviceType] => 1
            [mRFAdress] => 1a110c
            [mSerialNumber] => OEQ1042641
            [mNameLength] => 8
            [mDeviceName] => Polnocny
            [mRoomID] => 4
        )

    [7] => Array
        (
            [mDeviceType] => 1
            [mRFAdress] => 1a29cd
            [mSerialNumber] => OEQ0942978
            [mNameLength] => 8
            [mDeviceName] => Lazienka
            [mRoomID] => 5
        )

    [8] => Array
        (
            [lLiveReadLength] => 4
            [lLiveRFAdress] => 2a0000
            [lLive?1] => 0
            [lvalid] => 1
            [lError] => 0
            [lisAnswer] => 1
            [linitialized] => 1
            [lLiveData7] => 0
            [lLowBatt] => 0
            [lLinkError] => 0
            [lPanelLock] => 0
            [lGatewayOK] => 0
            [lDST] => 1
            [lNot used] => 0
            [lMode] => boost
        )

    [9] => Array
        (
            [lLiveReadLength] => 26
            [lLiveRFAdress] => 71f1ec
            [lLive?1] => 12
            [lvalid] => 1
            [lError] => 1
            [lisAnswer] => 0
            [linitialized] => 0
            [lLiveData7] => 1
            [lLowBatt] => 0
            [lLinkError] => 0
            [lPanelLock] => 0
            [lGatewayOK] => 0
            [lDST] => 0
            [lNot used] => 0
            [lMode] => auto
        )

    [10] => Array
        (
            [lLiveReadLength] => 42
            [lLiveRFAdress] => 000000
            [lLive?1] => b
            [lvalid] => 1
            [lError] => 1
            [lisAnswer] => 0
            [linitialized] => 1
            [lLiveData7] => 0
            [lLowBatt] => 0
            [lLinkError] => 0
            [lPanelLock] => 0
            [lGatewayOK] => 0
            [lDST] => 1
            [lNot used] => 1
            [lMode] => boost
        )

    [11] => Array
        (
            [lLiveReadLength] => 139
            [lLiveRFAdress] => ec1219
            [lLive?1] => 0
            [lvalid] => 0
            [lError] => 1
            [lisAnswer] => 0
            [linitialized] => 0
            [lLiveData7] => 0
            [lLowBatt] => 0
            [lLinkError] => 0
            [lPanelLock] => 0
            [lGatewayOK] => 0
            [lDST] => 0
            [lNot used] => 0
            [lMode] => auto
        )

    [12] => Array
        (
            [lLiveReadLength] => 0
            [lLiveRFAdress] => 000b1a
            [lLive?1] => 1c
            [lvalid] => 1
            [lError] => 0
            [lisAnswer] => 1
            [linitialized] => 0
            [lLiveData7] => 1
            [lLowBatt] => 1
            [lLinkError] => 1
            [lPanelLock] => 1
            [lGatewayOK] => 0
            [lDST] => 1
            [lNot used] => 1
            [lMode] => auto
        )

)
2018-09-12 08_06_39-Domoticz – Opera.png
2018-09-12 08_06_39-Domoticz – Opera.png (116.07 KiB) Viewed 5095 times
adresses miss.

Can I add adresses manually and delete weird items?
Synology NAS
Heating: eq-3 MAX!
Vent: by Sonoff POW R2 & Espeasy
Cam: Foscam C1
nono212
Posts: 39
Joined: Sunday 18 December 2016 13:47
Target OS: Linux
Domoticz version: 3.6179
Contact:

Re: Eq3 Max - control with php scripts

Post by nono212 »

there is a new plugin from mzvut viewtopic.php?f=34&t=25081#p192854
I think it is really good all is automatic ..almost nothing to do
Give it a try
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests