This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Zigbee gateway integration
(02.07.2025, 08:51)Daniel Wrote: Share device information from both versions.
Here are the product profiles with the 2 different versions and here is also a copy of my script

local zb = require('applibs.zigbee')

-- Liste des thermostats Zigbee
local thermostats = {
  { name = "TH Atelier – TEST", addr = "7cc6b6fffe0ad6c5" },
    { name = "TH Atelier N°1", addr = "70ac08fffe06bdfb" },
    { name = "TH Atelier N°2", addr = "dc8e95fffe0f8e74" },
    { name = "TH Atelier N°3", addr = "70ac08fffe06aaa5" },
    { name = "TH Accueil Volvo", addr = "7cc6b6fffe0ad8ce" },
    { name = "TH Bureau chef d'atelier", addr = "7cc6b6fffe0acac" },
    { name = "TH Stock pneus", addr = "70ac08fffe06ad6c" },
    { name = "TH5 Thermostat Réfectoire atelier", addr = "048727fffe35b3df" }
}

-- Cluster Thermostat
local cluster = 0x0201
local attrs = { 0x0000, 0x0011, 0x0012, 0x001C }

-- Lecture des attributs pour un thermostat
local function read_thermostat(th)
    print("\n--- Lecture pour : " .. th.name .. " ---")

    local success, res_or_err = pcall(function()
        return zb.cmdsync('getattributes', th.addr, cluster, attrs)
    end)

    if success then
        local res, err = res_or_err, nil
        if res then
            print("Attributs récupérés :")
            for attr_id, value in pairs(res) do
                if attr_id == 0x0000 or attr_id == 0x0011 or attr_id == 0x0012 then
                    print(string.format("  Attribut ID 0x%04X : %.2f °C", attr_id, value / 100))
                elseif attr_id == 0x001C then
                    print(string.format("  Attribut ID 0x%04X : Mode système = %d", attr_id, value))
                else
                    print(string.format("  Attribut ID 0x%04X : %s", attr_id, tostring(value)))
                end
            end
        else
            print("  [!] Aucun attribut reçu – passage au thermostat suivant.")
        end
    else
        print("  [!] Erreur lors de la requête : " .. tostring(res_or_err))
    end
end

-- Boucle principale
for _, th in ipairs(thermostats) do
    read_thermostat(th)
end


Manufacturer: Schneider Electric
Model: S520619
Firmware version: 001.000.053
Device type: Router
Power source: Mains
Receive when idle: Yes
Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- Groups (4)
- HvacThermostat (513)
- HvacUserInterfaceCfg (516)
- HaDiagnostic (2821)
- ManuSpecificWiserEvent (65027)
- ManuSpecificCycleTime (65302)
- ManuSpecificHeatingCooling (65315)
Output clusters
- Identify (3)
- Time (10)
- Ota (25)
- MsTemperatureMeasurement (1026)
- MsOccupancySensing (1030)
Endpoint 2
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- MsTemperatureMeasurement (1026)
Output clusters
- Identify (3)
Endpoint 4
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- MsOccupancySensing (1030)
Output clusters
- Identify (3)
Endpoint 5
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- Groups (4)
- SeMetering (1794)
Endpoint 242
Profile: 41440
Output clusters
- GreenPower (33)
Reported attributes
- currentsummdelivered: 0
- heatingstatus: true
- localtemperature: 25.64
- occupiedcoolingsetpoint: 20.00
- occupiedheatingsetpoint: 18.00
- picoolingdemand: 0
- piheatingdemand: 0
- seopenwindowstatus: false
- sepowerdivisor: 1000
- sepowermultiplier: 1
- systemmode: 4


Manufacturer: Schneider Electric
Model: S520619
Firmware version: 001.000.071
Device type: Router
Power source: Mains
Receive when idle: Yes
Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- Groups (4)
- HvacThermostat (513)
- HvacUserInterfaceCfg (516)
- HaDiagnostic (2821)
- ManuSpecificWiserEvent (65027)
- ManuSpecificCycleTime (65302)
- ManuSpecificHeatingCooling (65315)
Output clusters
- Identify (3)
- Time (10)
- Ota (25)
- MsTemperatureMeasurement (1026)
- MsOccupancySensing (1030)
Endpoint 2
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- MsTemperatureMeasurement (1026)
Output clusters
- Identify (3)
Endpoint 4
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- MsOccupancySensing (1030)
Output clusters
- Identify (3)
Endpoint 5
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- Groups (4)
- SeMetering (1794)
Endpoint 242
Profile: 41440
Output clusters
- GreenPower (33)
Reported attributes
- currentsummdelivered: 0
- heatingstatus: false
- localtemperature: 27.96
- occupiedheatingsetpoint: 19.00
- picoolingdemand: 0
- piheatingdemand: 0
- seopenwindowstatus: false
- sepowerdivisor: 1000
- sepowermultiplier: 1
- systemmode: 0
Reply


Messages In This Thread
Zigbee gateway integration - by tigi - 26.04.2021, 14:28
RE: Zigbee gateway integration - by myg - 26.04.2021, 15:24
RE: Zigbee gateway integration - by Daniel - 26.04.2021, 15:38
RE: Zigbee gateway integration - by tigi - 26.04.2021, 16:00
RE: Zigbee gateway integration - by Daniel - 26.04.2021, 16:04
RE: Zigbee gateway integration - by tigi - 28.04.2021, 19:35
RE: Zigbee gateway integration - by admin - 29.04.2021, 07:36
RE: Zigbee gateway integration - by tigi - 05.05.2021, 12:47
RE: Zigbee gateway integration - by Daniel - 05.05.2021, 12:48
RE: Zigbee gateway integration - by tigi - 05.05.2021, 12:55
RE: Zigbee gateway integration - by Daniel - 05.05.2021, 13:01
RE: Zigbee gateway integration - by tigi - 05.05.2021, 15:50
RE: Zigbee gateway integration - by admin - 08.05.2021, 10:16
RE: Zigbee gateway integration - by tigi - 08.05.2021, 11:09
RE: Zigbee gateway integration - by clue9 - 13.05.2021, 14:35
RE: Zigbee gateway integration - by Daniel - 13.05.2021, 14:41
RE: Zigbee gateway integration - by clue9 - 15.05.2021, 14:23
RE: Zigbee gateway integration - by MLa - 14.05.2021, 21:05
RE: Zigbee gateway integration - by clue9 - 15.05.2021, 16:25
RE: Zigbee gateway integration - by admin - 17.05.2021, 07:12
RE: Zigbee gateway integration - by emme - 19.05.2021, 16:48
RE: Zigbee gateway integration - by Daniel - 20.05.2021, 08:31
RE: Zigbee gateway integration - by admin - 21.05.2021, 13:12
RE: Zigbee gateway integration - by tigi - 21.05.2021, 16:23
RE: Zigbee gateway integration - by admin - 24.05.2021, 09:45
RE: Zigbee gateway integration - by tigi - 28.05.2021, 17:10
RE: Zigbee gateway integration - by admin - 29.05.2021, 09:05
RE: Zigbee gateway integration - by tigi - 29.05.2021, 14:29
RE: Zigbee gateway integration - by admin - 01.06.2021, 11:26
RE: Zigbee gateway integration - by tigi - 01.06.2021, 22:54
RE: Zigbee gateway integration - by admin - 02.06.2021, 05:21
RE: Zigbee gateway integration - by tigi - 02.06.2021, 21:36
RE: Zigbee gateway integration - by clue9 - 18.06.2021, 23:52
RE: Zigbee gateway integration - by admin - 21.06.2021, 06:36
RE: Zigbee gateway integration - by clue9 - 23.06.2021, 16:47
RE: Zigbee gateway integration - by admin - 24.06.2021, 09:57
RE: Zigbee gateway integration - by tigi - 07.07.2021, 10:22
RE: Zigbee gateway integration - by admin - 07.07.2021, 11:50
RE: Zigbee gateway integration - by tigi - 07.07.2021, 12:29
RE: Zigbee gateway integration - by tigi - 16.07.2021, 07:47
RE: Zigbee gateway integration - by admin - 16.07.2021, 07:59
RE: Zigbee gateway integration - by tigi - 16.07.2021, 13:51
RE: Zigbee gateway integration - by tigi - 19.07.2021, 20:18
RE: Zigbee gateway integration - by admin - 20.07.2021, 13:09
RE: Zigbee gateway integration - by tigi - 20.07.2021, 16:18
RE: Zigbee gateway integration - by daniel.r - 21.07.2021, 12:12
RE: Zigbee gateway integration - by Daniel - 21.07.2021, 12:13
RE: Zigbee gateway integration - by tuxtof - 11.08.2021, 04:36
RE: Zigbee gateway integration - by Daniel - 11.08.2021, 07:50
RE: Zigbee gateway integration - by tigi - 04.01.2022, 17:50
RE: Zigbee gateway integration - by Bitver - 15.09.2021, 12:56
RE: Zigbee gateway integration - by admin - 16.09.2021, 10:37
RE: Zigbee gateway integration - by emme - 18.09.2021, 08:10
RE: Zigbee gateway integration - by admin - 20.09.2021, 10:56
RE: Zigbee gateway integration - by Bitver - 24.09.2021, 12:36
RE: Zigbee gateway integration - by admin - 24.09.2021, 12:41
RE: Zigbee gateway integration - by edos - 24.09.2021, 15:28
RE: Zigbee gateway integration - by admin - 27.09.2021, 06:20
RE: Zigbee gateway integration - by edos - 27.09.2021, 07:48
RE: Zigbee gateway integration - by admin - 27.09.2021, 07:49
RE: Zigbee gateway integration - by edos - 27.09.2021, 08:27
RE: Zigbee gateway integration - by admin - 01.10.2021, 09:57
RE: Zigbee gateway integration - by tomnord - 07.10.2021, 18:03
RE: Zigbee gateway integration - by admin - 04.10.2021, 06:24
RE: Zigbee gateway integration - by Daniel - 05.10.2021, 10:07
RE: Zigbee gateway integration - by Evens - 26.10.2021, 18:46
RE: Zigbee gateway integration - by admin - 27.10.2021, 06:35
RE: Zigbee gateway integration - by Evens - 27.10.2021, 15:25
RE: Zigbee gateway integration - by admin - 02.11.2021, 09:50
RE: Zigbee gateway integration - by Evens - 03.11.2021, 19:34
RE: Zigbee gateway integration - by Daniel - 03.11.2021, 22:25
RE: Zigbee gateway integration - by Evens - 04.11.2021, 18:01
RE: Zigbee gateway integration - by Daniel - 04.11.2021, 18:03
RE: Zigbee gateway integration - by Evens - 04.11.2021, 19:29
RE: Zigbee gateway integration - by gtsamis - 04.11.2021, 23:28
RE: Zigbee gateway integration - by admin - 05.11.2021, 07:22
RE: Zigbee gateway integration - by gtsamis - 05.11.2021, 09:23
RE: Zigbee gateway integration - by clue9 - 19.11.2021, 22:54
RE: Zigbee gateway integration - by admin - 23.11.2021, 08:33
RE: Zigbee gateway integration - by admin - 23.11.2021, 10:31
RE: Zigbee gateway integration - by hocine - 09.12.2021, 10:47
RE: Zigbee gateway integration - by admin - 09.12.2021, 12:01
RE: Zigbee gateway integration - by domonorte - 31.12.2021, 09:11
RE: Zigbee gateway integration - by admin - 02.01.2022, 13:03
RE: Zigbee gateway integration - by merel - 02.01.2022, 16:35
RE: Zigbee gateway integration - by domonorte - 03.01.2022, 06:31
RE: Zigbee gateway integration - by admin - 03.01.2022, 06:25
RE: Zigbee gateway integration - by admin - 03.01.2022, 06:32
RE: Zigbee gateway integration - by domonorte - 03.01.2022, 06:36
RE: Zigbee gateway integration - by admin - 03.01.2022, 06:41
RE: Zigbee gateway integration - by Daniel - 05.01.2022, 08:51
RE: Zigbee gateway integration - by merel - 07.01.2022, 22:32
RE: Zigbee gateway integration - by admin - 10.01.2022, 08:01
RE: Zigbee gateway integration - by merel - 16.01.2022, 09:06
RE: Zigbee gateway integration - by admin - 17.01.2022, 09:30
RE: Zigbee gateway integration - by AlexLV - 24.01.2022, 22:42
RE: Zigbee gateway integration - by AlexLV - 08.02.2022, 11:37
RE: Zigbee gateway integration - by admin - 08.02.2022, 14:26
RE: Zigbee gateway integration - by AlexLV - 09.02.2022, 11:25
RE: Zigbee gateway integration - by admin - 11.02.2022, 13:18
RE: Zigbee gateway integration - by MLa - 11.02.2022, 21:49
RE: Zigbee gateway integration - by GIA - 12.02.2022, 21:49
RE: Zigbee gateway integration - by clue9 - 15.02.2022, 22:29
RE: Zigbee gateway integration - by admin - 16.02.2022, 12:42
RE: Zigbee gateway integration - by GIA - 17.02.2022, 17:16
RE: Zigbee gateway integration - by GIA - 16.02.2022, 13:25
RE: Zigbee gateway integration - by admin - 16.02.2022, 13:34
RE: Zigbee gateway integration - by MLa - 16.02.2022, 14:46
RE: Zigbee gateway integration - by admin - 17.02.2022, 14:12
RE: Zigbee gateway integration - by MLa - 17.02.2022, 17:05
RE: Zigbee gateway integration - by Daniel - 17.02.2022, 17:14
RE: Zigbee gateway integration - by clue9 - 18.02.2022, 15:18
RE: Zigbee gateway integration - by clue9 - 03.04.2022, 19:44
RE: Zigbee gateway integration - by clue9 - 30.11.2022, 21:53
RE: Zigbee gateway integration - by admin - 05.04.2022, 11:11
RE: Zigbee gateway integration - by Bitver - 05.04.2022, 14:10
RE: Zigbee gateway integration - by stativko - 13.04.2022, 14:21
RE: Zigbee gateway integration - by admin - 14.04.2022, 12:44
RE: Zigbee gateway integration - by stativko - 18.04.2022, 11:24
RE: Zigbee gateway integration - by tigi - 19.04.2022, 11:02
RE: Zigbee gateway integration - by admin - 20.04.2022, 08:20
RE: Zigbee gateway integration - by Zen - 15.06.2022, 14:41
RE: Zigbee gateway integration - by tigi - 16.07.2022, 09:04
RE: Zigbee gateway integration - by Rune - 22.04.2022, 21:15
RE: Zigbee gateway integration - by admin - 25.04.2022, 14:19
RE: Zigbee gateway integration - by Zen - 29.04.2022, 15:49
RE: Zigbee gateway integration - by admin - 02.05.2022, 08:33
RE: Zigbee gateway integration - by tigi - 29.06.2022, 11:11
RE: Zigbee gateway integration - by admin - 29.06.2022, 12:05
RE: Zigbee gateway integration - by tigi - 30.06.2022, 11:06
RE: Zigbee gateway integration - by tigi - 14.07.2022, 10:39
RE: Zigbee gateway integration - by admin - 07.07.2022, 08:30
RE: Zigbee gateway integration - by admin - 08.07.2022, 05:24
RE: Zigbee gateway integration - by admin - 20.07.2022, 10:38
RE: Zigbee gateway integration - by Rune - 13.09.2022, 11:55
RE: Zigbee gateway integration - by admin - 13.09.2022, 12:03
RE: Zigbee gateway integration - by Daniel - 14.09.2022, 15:21
RE: Zigbee gateway integration - by Rune - 20.09.2022, 10:36
RE: Zigbee gateway integration - by admin - 20.09.2022, 10:48
RE: Zigbee gateway integration - by Zen - 04.10.2022, 13:57
RE: Zigbee gateway integration - by emme - 05.10.2022, 16:04
RE: Zigbee gateway integration - by admin - 06.10.2022, 13:47
RE: Zigbee gateway integration - by Zen - 07.10.2022, 14:40
RE: Zigbee gateway integration - by Kolargol - 17.10.2022, 20:08
RE: Zigbee gateway integration - by admin - 18.10.2022, 05:52
RE: Zigbee gateway integration - by Rune - 23.10.2022, 15:26
RE: Zigbee gateway integration - by admin - 24.10.2022, 08:26
RE: Zigbee gateway integration - by Rune - 24.10.2022, 10:20
RE: Zigbee gateway integration - by admin - 25.10.2022, 10:12
RE: Zigbee gateway integration - by jmir - 30.10.2022, 17:14
RE: Zigbee gateway integration - by admin - 31.10.2022, 06:47
RE: Zigbee gateway integration - by admin - 03.11.2022, 07:37
RE: Zigbee gateway integration - by clue9 - 06.11.2022, 22:48
RE: Zigbee gateway integration - by Daniel - 07.11.2022, 09:24
RE: Zigbee gateway integration - by clue9 - 07.11.2022, 13:47
RE: Zigbee gateway integration - by Daniel - 07.11.2022, 15:35
RE: Zigbee gateway integration - by tigi - 17.11.2022, 18:09
RE: Zigbee gateway integration - by Daniel - 18.11.2022, 08:53
RE: Zigbee gateway integration - by admin - 14.11.2022, 06:54
RE: Zigbee gateway integration - by watamat - 15.11.2022, 20:54
RE: Zigbee gateway integration - by CarlS - 19.11.2022, 12:15
RE: Zigbee gateway integration - by admin - 21.11.2022, 08:19
RE: Zigbee gateway integration - by CarlS - 21.11.2022, 09:11
RE: Zigbee gateway integration - by tigi - 28.11.2022, 15:29
RE: Zigbee gateway integration - by admin - 29.11.2022, 07:57
RE: Zigbee gateway integration - by admin - 01.12.2022, 07:13
RE: Zigbee gateway integration - by clue9 - 03.12.2022, 19:13
RE: Zigbee gateway integration - by Daniel - 05.12.2022, 09:06
RE: Zigbee gateway integration - by admin - 05.12.2022, 13:47
RE: Zigbee gateway integration - by clue9 - 05.12.2022, 16:28
RE: Zigbee gateway integration - by Rune - 09.12.2022, 21:45
RE: Zigbee gateway integration - by admin - 12.12.2022, 07:11
RE: Zigbee gateway integration - by Rune - 13.12.2022, 21:49
RE: Zigbee gateway integration - by admin - 14.12.2022, 08:41
RE: Zigbee gateway integration - by Rune - 15.12.2022, 11:00
RE: Zigbee gateway integration - by Daniel - 15.12.2022, 11:05
RE: Zigbee gateway integration - by stativko - 18.12.2022, 16:27
RE: Zigbee gateway integration - by admin - 19.12.2022, 11:00
RE: Zigbee gateway integration - by Rune - 27.12.2022, 12:35
RE: Zigbee gateway integration - by admin - 27.12.2022, 12:39
RE: Zigbee gateway integration - by Rune - 27.12.2022, 12:51
RE: Zigbee gateway integration - by admin - 27.12.2022, 12:59
RE: Zigbee gateway integration - by Rune - 27.12.2022, 13:11
RE: Zigbee gateway integration - by admin - 27.12.2022, 13:30
RE: Zigbee gateway integration - by Rune - 27.12.2022, 13:59
RE: Zigbee gateway integration - by emme - 02.01.2023, 14:25
RE: Zigbee gateway integration - by admin - 03.01.2023, 09:41
RE: Zigbee gateway integration - by admin - 09.01.2023, 08:45
RE: Zigbee gateway integration - by Zen - 25.01.2023, 17:54
RE: Zigbee gateway integration - by CarlS - 25.01.2023, 19:49
RE: Zigbee gateway integration - by tomnord - 25.01.2023, 21:07
RE: Zigbee gateway integration - by CarlS - 26.01.2023, 05:57
RE: Zigbee gateway integration - by tomnord - 26.01.2023, 08:42
RE: Zigbee gateway integration - by admin - 26.01.2023, 10:50
RE: Zigbee gateway integration - by Zen - 26.01.2023, 12:12
RE: Zigbee gateway integration - by Zen - 02.02.2023, 10:46
RE: Zigbee gateway integration - by admin - 01.02.2023, 08:25
RE: Zigbee gateway integration - by admin - 02.02.2023, 11:00
RE: Zigbee gateway integration - by Daniel - 02.02.2023, 11:04
RE: Zigbee gateway integration - by Zen - 02.02.2023, 13:58
RE: Zigbee gateway integration - by Zen - 07.02.2023, 17:27
RE: Zigbee gateway integration - by admin - 08.02.2023, 08:46
RE: Zigbee gateway integration - by Zen - 08.02.2023, 16:59
RE: Zigbee gateway integration - by Zen - 13.02.2023, 11:43
RE: Zigbee gateway integration - by admin - 13.02.2023, 11:45
RE: Zigbee gateway integration - by Zen - 15.02.2023, 15:01
RE: Zigbee gateway integration - by Daniel - 15.02.2023, 15:13
RE: Zigbee gateway integration - by MLa - 17.02.2023, 18:38
RE: Zigbee gateway integration - by admin - 22.02.2023, 13:57
RE: Zigbee gateway integration - by jmir - 23.02.2023, 08:05
RE: Zigbee gateway integration - by admin - 23.02.2023, 08:22
RE: Zigbee gateway integration - by jmir - 23.02.2023, 09:32
RE: Zigbee gateway integration - by admin - 23.02.2023, 09:34
RE: Zigbee gateway integration - by jmir - 23.02.2023, 10:11
RE: Zigbee gateway integration - by MLa - 23.02.2023, 19:55
RE: Zigbee gateway integration - by MLa - 25.02.2023, 16:51
RE: Zigbee gateway integration - by Daniel - 27.02.2023, 08:38
RE: Zigbee gateway integration - by MLa - 28.02.2023, 14:59
RE: Zigbee gateway integration - by Daniel - 28.02.2023, 15:16
RE: Zigbee gateway integration - by MLa - 28.02.2023, 16:26
RE: Zigbee gateway integration - by MLa - 02.03.2023, 17:17
RE: Zigbee gateway integration - by tigi - 28.02.2023, 22:45
RE: Zigbee gateway integration - by tigi - 02.03.2023, 11:45
RE: Zigbee gateway integration - by admin - 02.03.2023, 11:47
RE: Zigbee gateway integration - by tigi - 02.03.2023, 18:32
RE: Zigbee gateway integration - by tigi - 05.03.2023, 18:35
RE: Zigbee gateway integration - by Daniel - 06.03.2023, 08:43
RE: Zigbee gateway integration - by admin - 06.03.2023, 08:44
RE: Zigbee gateway integration - by tigi - 06.03.2023, 18:29
RE: Zigbee gateway integration - by jeeone - 11.04.2023, 07:17
RE: Zigbee gateway integration - by admin - 11.04.2023, 07:32
RE: Zigbee gateway integration - by jeeone - 11.04.2023, 08:06
RE: Zigbee gateway integration - by jeeone - 11.04.2023, 15:02
RE: Zigbee gateway integration - by Zen - 13.04.2023, 15:27
RE: Zigbee gateway integration - by Zen - 29.06.2023, 06:52
RE: Zigbee gateway integration - by admin - 25.04.2023, 11:01
RE: Zigbee gateway integration - by CarlS - 25.04.2023, 16:42
RE: Zigbee gateway integration - by admin - 25.04.2023, 16:48
RE: Zigbee gateway integration - by CarlS - 25.04.2023, 17:50
RE: Zigbee gateway integration - by CarlS - 26.04.2023, 15:45
RE: Zigbee gateway integration - by admin - 27.04.2023, 11:01
RE: Zigbee gateway integration - by CarlS - 27.04.2023, 11:39
RE: Zigbee gateway integration - by emme - 29.04.2023, 08:00
RE: Zigbee gateway integration - by MLa - 23.05.2023, 18:09
RE: Zigbee gateway integration - by admin - 24.05.2023, 07:52
RE: Zigbee gateway integration - by MLa - 24.05.2023, 17:35
RE: Zigbee gateway integration - by ikhy - 24.05.2023, 08:20
RE: Zigbee gateway integration - by admin - 24.05.2023, 08:33
RE: Zigbee gateway integration - by ikhy - 24.05.2023, 09:01
RE: Zigbee gateway integration - by admin - 25.05.2023, 07:09
RE: Zigbee gateway integration - by MLa - 03.06.2023, 08:15
RE: Zigbee gateway integration - by Rune - 31.05.2023, 19:34
RE: Zigbee gateway integration - by AISystem - 01.06.2023, 14:42
RE: Zigbee gateway integration - by admin - 01.06.2023, 17:04
RE: Zigbee gateway integration - by AISystem - 02.06.2023, 06:07
RE: Zigbee gateway integration - by admin - 02.06.2023, 06:13
RE: Zigbee gateway integration - by AISystem - 02.06.2023, 06:52
RE: Zigbee gateway integration - by admin - 02.06.2023, 07:10
RE: Zigbee gateway integration - by AISystem - 02.06.2023, 07:24
RE: Zigbee gateway integration - by admin - 02.06.2023, 07:47
RE: Zigbee gateway integration - by admin - 05.06.2023, 06:20
RE: Zigbee gateway integration - by MLa - 05.06.2023, 19:23
RE: Zigbee gateway integration - by Daniel - 06.06.2023, 08:29
RE: Zigbee gateway integration - by ikhy - 06.06.2023, 08:15
RE: Zigbee gateway integration - by AISystem - 07.06.2023, 05:22
RE: Zigbee gateway integration - by admin - 07.06.2023, 05:23
RE: Zigbee gateway integration - by AISystem - 07.06.2023, 06:14
RE: Zigbee gateway integration - by admin - 08.06.2023, 07:34
RE: Zigbee gateway integration - by AISystem - 08.06.2023, 11:01
RE: Zigbee gateway integration - by ikhy - 08.06.2023, 18:39
RE: Zigbee gateway integration - by ikhy - 09.06.2023, 06:16
RE: Zigbee gateway integration - by Daniel - 09.06.2023, 07:38
RE: Zigbee gateway integration - by ikhy - 09.06.2023, 08:00
RE: Zigbee gateway integration - by Daniel - 09.06.2023, 08:03
RE: Zigbee gateway integration - by ikhy - 09.06.2023, 11:42
RE: Zigbee gateway integration - by ikhy - 12.06.2023, 09:09
RE: Zigbee gateway integration - by admin - 12.06.2023, 09:21
RE: Zigbee gateway integration - by Daniel - 12.06.2023, 14:34
RE: Zigbee gateway integration - by Daniel - 12.06.2023, 15:49
RE: Zigbee gateway integration - by admin - 13.06.2023, 07:34
RE: Zigbee gateway integration - by Daniel - 13.06.2023, 08:26
RE: Zigbee gateway integration - by admin - 13.06.2023, 08:30
RE: Zigbee gateway integration - by Nikita - 28.06.2023, 09:04
RE: Zigbee gateway integration - by admin - 28.06.2023, 12:20
RE: Zigbee gateway integration - by Nikita - 29.06.2023, 06:39
RE: Zigbee gateway integration - by admin - 29.06.2023, 07:07
RE: Zigbee gateway integration - by Zen - 05.07.2023, 10:04
RE: Zigbee gateway integration - by admin - 05.07.2023, 14:24
RE: Zigbee gateway integration - by Zen - 06.07.2023, 07:04
RE: Zigbee gateway integration - by Zen - 06.07.2023, 08:40
RE: Zigbee gateway integration - by cranz - 07.07.2023, 07:34
RE: Zigbee gateway integration - by Zen - 24.07.2023, 08:01
RE: Zigbee gateway integration - by Zen - 27.07.2023, 08:13
RE: Zigbee gateway integration - by Zen - 28.08.2023, 07:09
RE: Zigbee gateway integration - by Daniel - 02.08.2023, 09:53
RE: Zigbee gateway integration - by Daniel - 02.08.2023, 10:07
RE: Zigbee gateway integration - by Sral1987 - 03.08.2023, 15:33
RE: Zigbee gateway integration - by admin - 08.08.2023, 07:58
RE: Zigbee gateway integration - by jmir - 08.08.2023, 08:01
RE: Zigbee gateway integration - by Sral1987 - 09.08.2023, 12:41
RE: Zigbee gateway integration - by hocine - 14.08.2023, 14:15
RE: Zigbee gateway integration - by Daniel - 14.08.2023, 14:16
RE: Zigbee gateway integration - by hocine - 16.08.2023, 11:21
RE: Zigbee gateway integration - by admin - 28.08.2023, 07:19
RE: Zigbee gateway integration - by Zen - 30.08.2023, 07:23
RE: Zigbee gateway integration - by Sral1987 - 02.09.2023, 08:52
RE: Zigbee gateway integration - by Daniel - 04.09.2023, 07:35
RE: Zigbee gateway integration - by Sral1987 - 04.09.2023, 11:41
RE: Zigbee gateway integration - by admin - 04.09.2023, 11:45
RE: Zigbee gateway integration - by Sral1987 - 04.09.2023, 13:49
RE: Zigbee gateway integration - by MLa - 08.09.2023, 16:43
RE: Zigbee gateway integration - by admin - 11.09.2023, 09:17
RE: Zigbee gateway integration - by Zen - 12.09.2023, 14:45
RE: Zigbee gateway integration - by Sral1987 - 12.09.2023, 11:58
RE: Zigbee gateway integration - by admin - 13.09.2023, 12:09
RE: Zigbee gateway integration - by Zen - 13.09.2023, 13:58
RE: Zigbee gateway integration - by Zen - 17.10.2023, 09:19
RE: Zigbee gateway integration - by lamgia99 - 10.11.2023, 09:08
RE: Zigbee gateway integration - by admin - 13.09.2023, 14:09
RE: Zigbee gateway integration - by Zen - 14.09.2023, 09:50
RE: Zigbee gateway integration - by Sral1987 - 13.09.2023, 19:16
RE: Zigbee gateway integration - by jmir - 15.09.2023, 08:07
RE: Zigbee gateway integration - by admin - 15.09.2023, 08:39
RE: Zigbee gateway integration - by Sral1987 - 16.10.2023, 10:38
RE: Zigbee gateway integration - by Daniel - 16.10.2023, 10:39
RE: Zigbee gateway integration - by admin - 16.10.2023, 12:08
New RS-232 Zigbee gateway - by CarlS - 24.10.2023, 11:57
RE: Zigbee gateway integration - by Daniel - 24.10.2023, 12:00
RE: Zigbee gateway integration - by CarlS - 24.10.2023, 13:07
RE: Zigbee gateway integration - by admin - 24.10.2023, 13:08
RE: Zigbee gateway integration - by CarlS - 24.10.2023, 19:12
RE: Zigbee gateway integration - by admin - 02.11.2023, 10:31
RE: Zigbee gateway integration - by a455115 - 06.11.2023, 11:09
RE: Zigbee gateway integration - by admin - 06.11.2023, 11:26
RE: Zigbee gateway integration - by domotiqa - 07.11.2023, 17:03
RE: Zigbee gateway integration - by a455115 - 10.11.2023, 11:06
RE: Zigbee gateway integration - by admin - 10.11.2023, 11:18
RE: Zigbee gateway integration - by lamgia99 - 11.11.2023, 01:22
RE: Zigbee gateway integration - by domotiqa - 14.11.2023, 10:46
RE: Zigbee gateway integration - by admin - 13.11.2023, 08:12
RE: Zigbee gateway integration - by lamgia99 - 14.11.2023, 06:37
RE: Zigbee gateway integration - by lamgia99 - 16.11.2023, 01:24
RE: Zigbee gateway integration - by admin - 16.11.2023, 08:13
RE: Zigbee gateway integration - by lamgia99 - 16.11.2023, 08:26
RE: Zigbee gateway integration - by DGrandes - 17.11.2023, 14:55
RE: Zigbee gateway integration - by Daniel - 17.11.2023, 15:00
RE: Zigbee gateway integration - by DGrandes - 17.11.2023, 15:03
RE: Zigbee gateway integration - by Daniel - 17.11.2023, 15:06
RE: Zigbee gateway integration - by DGrandes - 17.11.2023, 15:23
RE: Zigbee gateway integration - by Zen - 22.11.2023, 08:38
RE: Zigbee gateway integration - by admin - 22.11.2023, 08:50
RE: Zigbee gateway integration - by Zen - 27.11.2023, 10:55
RE: Zigbee gateway integration - by tom77 - 28.11.2023, 10:53
RE: Zigbee gateway integration - by admin - 28.11.2023, 11:15
RE: Zigbee gateway integration - by Zen - 28.11.2023, 15:08
RE: Zigbee gateway integration - by domotiqa - 29.11.2023, 09:13
RE: Zigbee gateway integration - by admin - 29.11.2023, 12:03
RE: Zigbee gateway integration - by tigi - 08.12.2023, 10:24
RE: Zigbee gateway integration - by Daniel - 08.12.2023, 10:29
RE: Zigbee gateway integration - by tigi - 08.12.2023, 10:34
RE: Zigbee gateway integration - by tigi - 10.12.2023, 19:27
RE: Zigbee gateway integration - by tigi - 13.12.2023, 13:52
RE: Zigbee gateway integration - by admin - 13.12.2023, 13:52
RE: Zigbee gateway integration - by tigi - 13.12.2023, 14:13
RE: Zigbee gateway integration - by tomnord - 14.12.2023, 14:15
RE: Zigbee gateway integration - by admin - 14.12.2023, 14:52
RE: Zigbee gateway integration - by tomnord - 15.12.2023, 07:18
RE: Zigbee gateway integration - by admin - 15.12.2023, 08:11
RE: Zigbee gateway integration - by tomnord - 15.12.2023, 13:27
RE: Zigbee gateway integration - by admin - 15.12.2023, 13:30
RE: Zigbee gateway integration - by tomnord - 31.12.2023, 10:32
RE: Zigbee gateway integration - by admin - 02.01.2024, 10:17
RE: Zigbee gateway integration - by tomnord - 02.01.2024, 12:28
RE: Zigbee gateway integration - by admin - 02.01.2024, 12:31
RE: Zigbee gateway integration - by tomnord - 02.01.2024, 16:11
RE: Zigbee gateway integration - by Daniel - 02.01.2024, 16:30
RE: Zigbee gateway integration - by Sral1987 - 03.01.2024, 12:57
RE: Zigbee gateway integration - by admin - 03.01.2024, 14:04
RE: Zigbee gateway integration - by alexll - 03.01.2024, 16:40
RE: Zigbee gateway integration - by Sral1987 - 06.01.2024, 14:30
RE: Zigbee gateway integration - by tomnord - 18.01.2024, 20:33
RE: Zigbee gateway integration - by Daniel - 19.01.2024, 08:30
RE: Zigbee gateway integration - by tomnord - 19.01.2024, 09:35
RE: Zigbee gateway integration - by admin - 19.01.2024, 09:42
RE: Zigbee gateway integration - by tomnord - 19.01.2024, 09:57
RE: Zigbee gateway integration - by admin - 19.01.2024, 10:05
RE: Zigbee gateway integration - by tomnord - 19.01.2024, 10:49
RE: Zigbee gateway integration - by tomnord - 20.01.2024, 09:53
RE: Zigbee gateway integration - by tomnord - 25.01.2024, 18:17
RE: Zigbee gateway integration - by Daniel - 26.01.2024, 08:28
RE: Zigbee gateway integration - by tomnord - 26.01.2024, 08:38
RE: Zigbee gateway integration - by Daniel - 26.01.2024, 08:40
RE: Zigbee gateway integration - by Zen - 29.01.2024, 15:10
RE: Zigbee gateway integration - by admin - 01.02.2024, 14:12
RE: Zigbee gateway integration - by admin - 13.02.2024, 08:03
RE: Zigbee gateway integration - by AlexandrT - 13.02.2024, 16:34
RE: Zigbee gateway integration - by Patrik - 13.02.2024, 20:50
RE: Zigbee gateway integration - by admin - 14.02.2024, 10:44
RE: Zigbee gateway integration - by AlexandrT - 14.02.2024, 15:00
RE: Zigbee gateway integration - by Rune - 16.02.2024, 12:03
RE: Zigbee gateway integration - by admin - 19.02.2024, 08:33
RE: Zigbee gateway integration - by AlexLV - 25.02.2024, 23:02
RE: Zigbee gateway integration - by Daniel - 26.02.2024, 08:55
RE: Zigbee gateway integration - by AlexLV - 26.02.2024, 15:17
RE: Zigbee gateway integration - by admin - 04.03.2024, 08:33
RE: Zigbee gateway integration - by admin - 04.03.2024, 09:25
RE: Zigbee gateway integration - by admin - 04.03.2024, 10:44
RE: Zigbee gateway integration - by busta - 29.03.2024, 12:57
RE: Zigbee gateway integration - by admin - 02.04.2024, 07:16
RE: Zigbee gateway integration - by alexll - 24.04.2024, 13:48
RE: Zigbee gateway integration - by busta - 25.04.2024, 17:17
RE: Zigbee gateway integration - by admin - 26.04.2024, 09:59
RE: Zigbee gateway integration - by hocine - 18.06.2024, 17:15
RE: Zigbee gateway integration - by Sral1987 - 07.06.2024, 05:32
RE: Zigbee gateway integration - by admin - 07.06.2024, 05:54
RE: Zigbee gateway integration - by admin - 19.06.2024, 06:48
RE: Zigbee gateway integration - by jmir - 22.07.2024, 05:09
RE: Zigbee gateway integration - by admin - 22.07.2024, 05:36
RE: Zigbee gateway integration - by jmir - 22.07.2024, 05:38
RE: Zigbee gateway integration - by domotiqa - 23.08.2024, 08:03
RE: Zigbee gateway integration - by admin - 23.08.2024, 11:45
RE: Zigbee gateway integration - by admin - 11.09.2024, 10:48
RE: Zigbee gateway integration - by hocine - 11.09.2024, 19:13
RE: Zigbee gateway integration - by admin - 13.09.2024, 13:12
RE: Zigbee gateway integration - by admin - 16.09.2024, 07:43
RE: Zigbee gateway integration - by admin - 16.09.2024, 11:50
RE: Zigbee gateway integration - by hocine - 18.09.2024, 07:40
RE: Zigbee gateway integration - by Daniel - 18.09.2024, 08:22
RE: Zigbee gateway integration - by hocine - 18.09.2024, 09:31
RE: Zigbee gateway integration - by admin - 18.09.2024, 13:32
RE: Zigbee gateway integration - by Tifon - 20.09.2024, 11:02
RE: Zigbee gateway integration - by admin - 20.09.2024, 12:50
RE: Zigbee gateway integration - by Tifon - 20.09.2024, 14:57
RE: Zigbee gateway integration - by admin - 24.09.2024, 07:50
RE: Zigbee gateway integration - by hepa - 03.10.2024, 13:21
RE: Zigbee gateway integration - by admin - 03.10.2024, 13:31
RE: Zigbee gateway integration - by hepa - 03.10.2024, 13:51
RE: Zigbee gateway integration - by domotiqa - 07.10.2024, 11:55
RE: Zigbee gateway integration - by Daniel - 08.10.2024, 14:01
RE: Zigbee gateway integration - by domotiqa - 08.10.2024, 14:04
RE: Zigbee gateway integration - by domotiqa - 08.10.2024, 13:47
RE: Zigbee gateway integration - by hocine - 08.10.2024, 19:34
RE: Zigbee gateway integration - by admin - 15.10.2024, 13:20
RE: Zigbee gateway integration - by tomnord - 15.10.2024, 19:55
RE: Zigbee gateway integration - by Sral1987 - 06.11.2024, 11:59
RE: Zigbee gateway integration - by Daniel - 06.11.2024, 12:01
RE: Zigbee gateway integration - by stianj - 11.11.2024, 11:19
RE: Zigbee gateway integration - by Daniel - 11.11.2024, 11:30
RE: Zigbee gateway integration - by stianj - 11.11.2024, 11:58
RE: Zigbee gateway integration - by stianj - 15.11.2024, 09:41
RE: Zigbee gateway integration - by Dmitry.T - 11.11.2024, 19:45
RE: Zigbee gateway integration - by Daniel - 12.11.2024, 10:02
RE: Zigbee gateway integration - by Dmitry.T - 12.11.2024, 14:11
RE: Zigbee gateway integration - by Daniel - 15.11.2024, 11:36
RE: Zigbee gateway integration - by admin - 15.11.2024, 13:16
RE: Zigbee gateway integration - by stianj - 16.11.2024, 11:45
RE: Zigbee gateway integration - by stianj - 20.11.2024, 10:10
RE: Zigbee gateway integration - by Daniel - 20.11.2024, 10:42
RE: Zigbee gateway integration - by stianj - 20.11.2024, 12:25
RE: Zigbee gateway integration - by Ozturker - 18.11.2024, 13:14
RE: Zigbee gateway integration - by Daniel - 18.11.2024, 13:56
RE: Zigbee gateway integration - by Ozturker - 18.11.2024, 14:46
RE: Zigbee gateway integration - by Daniel - 18.11.2024, 14:51
RE: Zigbee gateway integration - by Ozturker - 18.11.2024, 14:58
RE: Zigbee gateway integration - by Daniel - 18.11.2024, 15:00
RE: Zigbee gateway integration - by Ozturker - 18.11.2024, 15:22
RE: Zigbee gateway integration - by Daniel - 18.11.2024, 15:57
RE: Zigbee gateway integration - by Ozturker - 18.11.2024, 17:04
RE: Zigbee gateway integration - by Ozturker - 19.11.2024, 17:16
RE: Zigbee gateway integration - by admin - 19.11.2024, 07:51
RE: Zigbee gateway integration - by Sral1987 - 19.11.2024, 12:42
RE: Zigbee gateway integration - by hocine - 19.11.2024, 16:49
RE: Zigbee gateway integration - by Daniel - 19.11.2024, 12:45
RE: Zigbee gateway integration - by Sral1987 - 19.11.2024, 12:50
RE: Zigbee gateway integration - by admin - 19.11.2024, 17:15
RE: Zigbee gateway integration - by hocine - 21.11.2024, 06:47
RE: Zigbee gateway integration - by Daniel - 19.11.2024, 17:18
RE: Zigbee gateway integration - by Ozturker - 20.11.2024, 17:09
RE: Zigbee gateway integration - by Sral1987 - 30.11.2024, 10:06
RE: Zigbee gateway integration - by Sral1987 - 12.12.2024, 07:22
RE: Zigbee gateway integration - by tomnord - 05.12.2024, 18:16
RE: Zigbee gateway integration - by admin - 06.12.2024, 08:19
RE: Zigbee gateway integration - by tomnord - 06.12.2024, 09:33
RE: Zigbee gateway integration - by hepa - 09.12.2024, 09:16
RE: Zigbee gateway integration - by admin - 09.12.2024, 13:06
RE: Zigbee gateway integration - by admin - 11.12.2024, 10:16
RE: Zigbee gateway integration - by stianj - 11.12.2024, 13:09
RE: Zigbee gateway integration - by admin - 11.12.2024, 13:10
RE: Zigbee gateway integration - by stianj - 12.12.2024, 08:00
RE: Zigbee gateway integration - by admin - 12.12.2024, 07:31
RE: Zigbee gateway integration - by stianj - 17.12.2024, 13:59
RE: Zigbee gateway integration - by stianj - 20.12.2024, 11:40
RE: Zigbee gateway integration - by admin - 20.12.2024, 11:49
RE: Zigbee gateway integration - by stianj - 30.12.2024, 11:37
RE: Zigbee gateway integration - by tomnord - 25.12.2024, 19:33
RE: Zigbee gateway integration - by admin - 27.12.2024, 09:13
RE: Zigbee gateway integration - by tomnord - 27.12.2024, 14:52
RE: Zigbee gateway integration - by admin - 02.01.2025, 10:08
RE: Zigbee gateway integration - by stianj - 02.01.2025, 11:29
RE: Zigbee gateway integration - by tomnord - 07.01.2025, 12:46
RE: Zigbee gateway integration - by admin - 07.01.2025, 12:51
RE: Zigbee gateway integration - by tomnord - 07.01.2025, 13:06
RE: Zigbee gateway integration - by admin - 07.01.2025, 13:29
RE: Zigbee gateway integration - by tomnord - 07.01.2025, 13:38
RE: Zigbee gateway integration - by tomnord - 09.01.2025, 11:35
RE: Zigbee gateway integration - by admin - 10.01.2025, 12:30
RE: Zigbee gateway integration - by Ozturker - 12.01.2025, 15:28
RE: Zigbee gateway integration - by Daniel - 13.01.2025, 08:51
RE: Zigbee gateway integration - by Hampus.K - 04.03.2025, 20:08
RE: Zigbee gateway integration - by Daniel - 05.03.2025, 08:25
RE: Zigbee gateway integration - by Hampus.K - 05.03.2025, 10:29
RE: Zigbee gateway integration - by Daniel - 05.03.2025, 10:31
RE: Zigbee gateway integration - by admin - 10.03.2025, 07:15
RE: Zigbee gateway integration - by hocine - 10.03.2025, 14:01
RE: Zigbee gateway integration - by admin - 10.03.2025, 14:11
RE: Zigbee gateway integration - by hocine - 10.03.2025, 14:55
RE: Zigbee gateway integration - by hocine - 16.06.2025, 12:57
RE: Zigbee gateway integration - by admin - 10.03.2025, 15:16
RE: Zigbee gateway integration - by admin - 14.03.2025, 11:13
RE: Zigbee gateway integration - by admin - 14.03.2025, 11:33
RE: Zigbee gateway integration - by admin - 14.03.2025, 12:45
RE: Zigbee gateway integration - by AlexLV - 18.05.2025, 12:39
RE: Zigbee gateway integration - by Daniel - 19.05.2025, 07:11
RE: Zigbee gateway integration - by admin - 17.06.2025, 10:14
RE: Zigbee gateway integration - by hocine - 17.06.2025, 15:00
RE: Zigbee gateway integration - by hocine - 18.06.2025, 12:44
RE: Zigbee gateway integration - by hocine - 24.06.2025, 09:21
RE: Zigbee gateway integration - by Daniel - 24.06.2025, 09:24
RE: Zigbee gateway integration - by hocine - 02.07.2025, 08:49
RE: Zigbee gateway integration - by Daniel - 02.07.2025, 08:51
RE: Zigbee gateway integration - by hocine - 02.07.2025, 10:00
RE: Zigbee gateway integration - by RomansP - 02.07.2025, 10:58
RE: Zigbee gateway integration - by hocine - 02.07.2025, 11:04
RE: Zigbee gateway integration - by RomansP - 02.07.2025, 11:43
Zigbee gateway - by CristianAgata - 06.03.2022, 13:38
RE: Zigbee gateway - by admin - 07.03.2022, 07:40
RE: Zigbee gateway - by CristianAgata - 07.03.2022, 12:00
RE: Zigbee gateway - by admin - 07.03.2022, 12:07
RE: Zigbee gateway - by CristianAgata - 07.03.2022, 12:10
RE: Zigbee gateway - by CristianAgata - 13.03.2022, 11:37
RE: Zigbee gateway - by admin - 14.03.2022, 10:25
RE: Zigbee gateway - by CristianAgata - 14.03.2022, 11:06
RE: Zigbee gateway - by admin - 21.03.2022, 13:38
RE: Zigbee gateway - by emme - 02.04.2022, 08:48
RE: Zigbee gateway - by CristianAgata - 02.04.2022, 16:02
RE: Zigbee gateway - by clue9 - 03.04.2022, 19:11
RE: Zigbee gateway - by admin - 05.04.2022, 11:19
RE: Zigbee gateway - by gilles38 - 07.06.2022, 13:43
RE: Zigbee gateway - by admin - 10.06.2022, 09:45
RE: Zigbee gateway - by gilles38 - 13.06.2022, 10:59
RE: Zigbee gateway - by CarlS - 30.09.2022, 05:34
RE: Zigbee gateway - by CarlS - 18.10.2022, 06:24
RE: Zigbee gateway - by admin - 18.10.2022, 10:29
RE: Zigbee gateway - by watamat - 19.10.2022, 19:42
RE: Zigbee gateway - by admin - 20.10.2022, 06:20
RE: Zigbee gateway - by simone.muscat - 20.10.2022, 06:31
RE: Zigbee gateway - by watamat - 20.10.2022, 19:31
RE: Zigbee gateway - by watamat - 01.11.2022, 14:08
RE: Zigbee gateway - by watamat - 12.11.2022, 16:27

Forum Jump: