Zgłoszenia błędów [bramka ZigBee]

Moderator: vajera

lukasz06
Posts: 2543
Joined: Sun Jul 17, 2022 6:53 pm
Has thanked: 46 times
Been thanked: 21 times

Post

Zibi_007 wrote: Wed Feb 12, 2025 10:01 pm
lukasz06 wrote: Wed Feb 12, 2025 9:32 pm [...]
Druga sprawa to czujnik okna po 3 dniach od wgrania softu, nadal nie pokazuje stanu baterii, ten Xiaomi pokazał dość szybko, ale to pewnie już sam czujnik ma winę. Jeden pokaże szybciej, drugi później, trzeci wcale 😉
Kliknij mu raz (krótko) przyciskiem parowania. Nie zaszkodzi, a może pomóc. Ewentualnie może to być ten typ, który generuje tylko informację o niskim stanie baterii i dopóki nie zacznie się wyczerpywać, to info nie dostaniesz.
Przegapiłem ten post, faktycznie krótkie naciśnięcie, podaje stan baterii przy wciśnięciu "i"i za chwilę pokazuje się ikona baterii, dzięki Zibi 😉
Ps Jestem naprawdę pod wrażeniem tej anteny w Xiao c6, teraz łapie mi czujnik temperatury z dołu, a bramkę mam na piętrze.
Fajnie by było gdyby kolega @Vajera dodał to do swojego kodu, wtedy wgrywałbym tylko bina 😉
User avatar
klew
Posts: 13911
Joined: Thu Jun 27, 2019 12:16 pm
Location: Wrocław
Has thanked: 135 times
Been thanked: 137 times

Post

lukasz06 wrote: Sun Feb 16, 2025 8:03 am
vajera wrote: Sat Feb 15, 2025 8:18 pm
lukasz06 wrote: Sat Feb 15, 2025 5:49 pm Cześć, nie moge skompilować najnowszej wersji

Code: Select all

C:\Users\Jacek\Documents\Arduino\libraries\Z2S_Library\examples\Z2S_Gateway\Z2S_Devices_Table.cpp: In function 'void Z2S_onCmdCustomClusterReceive(uint8_t*, uint16_t, uint16_t, uint8_t, uint16_t, uint8_t*)':
C:\Users\Jacek\Documents\Arduino\libraries\Z2S_Library\examples\Z2S_Gateway\Z2S_Devices_Table.cpp:557:7: warning: case label value exceeds maximum value for type [-Wswitch-outside-range]
  557 |       case SUPLA_CHANNELTYPE_DIMMER: msgZ2SDeviceDimmer(z2s_devices_table[channel_number_slot].model_id, z2s_devices_table[channel_number_slot].Supla_channel,
      |       ^~~~
C:\Users\Jacek\Documents\Arduino\libraries\Z2S_Library\examples\Z2S_Gateway\Z2S_Devices_Table.cpp:556:7: warning: case label value exceeds maximum value for type [-Wswitch-outside-range]
  556 |       case SUPLA_CHANNELTYPE_HVAC: msgZ2SDeviceTuyaHvac(z2s_devices_table[channel_number_slot].Supla_channel, cluster, command_id, payload_size, payload); break;
      |       ^~~~
c:\Users\Jacek\Documents\Arduino\libraries\Z2S_Library\src\Z2S_control\Z2S_Tuya_dimmer_switch.cpp: In member function 'virtual bool Supla::Control::Z2S_TuyaDimmerSwitch::isOn()':
c:\Users\Jacek\Documents\Arduino\libraries\Z2S_Library\src\Z2S_control\Z2S_Tuya_dimmer_switch.cpp:39:1: error: no return statement in function returning non-void [-Werror=return-type]
   39 | }
      | ^
cc1plus.exe: some warnings being treated as errors
Masz jakiś dziwny warning dotyczy długości nazwy etykiety a Twój kompilator traktuje ostrzeżenia jako błędy.
Dobra odhaczyłem w Arduino , żeby ostrzeżeń nie traktował jako błędy i poszło bez problemów 😉
To nie jest głupi warning, tylko błąd, który prędzej czy później coś zepsuje i nikt nie będzie widział dlaczego.
Najlepsze suple dla Twojego domu :mrgreen:
LukiSpajder
Posts: 1548
Joined: Tue Aug 18, 2020 2:22 pm
Has thanked: 25 times
Been thanked: 34 times

Post

Jeśli chodzi o kanał RGB i ściemniacz to co jakiś czas robi się offline ,ale bramka się nie resetuje . Po powrocie kanału pokazuje wyłączoną żarówkę a rzeczywistość świeci dalej . Czasami po przesterowaniu kanału RGB, wskaźnik przeskakuje na obręczy wskaźnika kolorów w apce .

Ale jak na wersje testową to jest nieźle 😁, żarówka ożyła pod Supla 👍
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

klew wrote: Sun Feb 16, 2025 11:48 am To nie jest głupi warning, tylko błąd, który prędzej czy później coś zepsuje i nikt nie będzie widział dlaczego.
OK, ale w takim razie zobacz sam - to dotyczy tego fragmentu kodu:

Code: Select all

switch (z2s_devices_table[channel_number_slot].Supla_channel_type) {
      case SUPLA_CHANNELTYPE_HVAC:
Supla_channel_type jest int32_t a SUPLA_CHANNELTYPE_HVAC to makro z wartością liczbową, jak najbardziej w zakresie int32_t?
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
User avatar
klew
Posts: 13911
Joined: Thu Jun 27, 2019 12:16 pm
Location: Wrocław
Has thanked: 135 times
Been thanked: 137 times

Post

vajera wrote: Sun Feb 16, 2025 3:50 pm
klew wrote: Sun Feb 16, 2025 11:48 am To nie jest głupi warning, tylko błąd, który prędzej czy później coś zepsuje i nikt nie będzie widział dlaczego.
OK, ale w takim razie zobacz sam - to dotyczy tego fragmentu kodu:

Code: Select all

switch (z2s_devices_table[channel_number_slot].Supla_channel_type) {
      case SUPLA_CHANNELTYPE_HVAC:
Supla_channel_type jest int32_t a SUPLA_CHANNELTYPE_HVAC to makro z wartością liczbową, jak najbardziej w zakresie int32_t?
Problem wynika z tego, że patrzysz na inny kod :P
https://github.com/lsroka76/Z2S_Library ... e.cpp#L555
Tu jest:

Code: Select all

    switch (z2s_devices_table[channel_number_slot].Supla_channel) {
A Supla_channel to uint8_t.

Pewnie to już u siebie poprawiłeś, ale w tym repo jest co innego.
Chyba, że złe repo sprawdzam (nie zagłębiałem się :P ), ale ten warning z kompilacji powyżej, ma dokładnie ten błąd.
Najlepsze suple dla Twojego domu :mrgreen:
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

klew wrote: Mon Feb 17, 2025 9:58 am
A Supla_channel to uint8_t.

Pewnie to już u siebie poprawiłeś, ale w tym repo jest co innego.
Chyba, że złe repo sprawdzam (nie zagłębiałem się :P ), ale ten warning z kompilacji powyżej, ma dokładnie ten błąd.
Faktycznie, mea culpa. Tego kodu już nie ma - wczoraj przerabiałem go dodając dimmer, ale na szczęście nic do tej pory go nie używało.
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
User avatar
klew
Posts: 13911
Joined: Thu Jun 27, 2019 12:16 pm
Location: Wrocław
Has thanked: 135 times
Been thanked: 137 times

Post

vajera wrote: Mon Feb 17, 2025 11:05 am Faktycznie, mea culpa. Tego kodu już nie ma - wczoraj przerabiałem go dodając dimmer, ale na szczęście nic do tej pory go nie używało.
Włącz sobie warningi przy kompilacji i w większości można je traktować jak error. Wtedy lepiej się pilnuje kodu, aby takich rzeczy nie było. Oczywiście, co komputer, to kompilator ;P i zawsze coś u kogoś może wyskoczyć, ale każdy poprawiony warning jest na plus :)
Najlepsze suple dla Twojego domu :mrgreen:
User avatar
Robert Błaszczak
Posts: 5222
Joined: Sat Dec 22, 2018 8:55 pm
Location: Zielona Góra
Has thanked: 37 times
Been thanked: 27 times

Post

Robert Błaszczak wrote: Sat Feb 15, 2025 1:33 pm Poproszę o dodanie:
Czujnik otwarcia okna/drzwi AQARA DW-S03D

Log:

Code: Select all

14:27:00.409 -> [ 79979][I][ZigbeeHandlers.cpp:84] zb_raw_cmd_handler(): ----------------------------raw command not processed---------------------------------------------------------------
14:27:40.192 -> [119800][V][ZigbeeCore.cpp:372] esp_zb_app_signal_handler(): ZDO signal: ZDO Leave Indication (0x13), status: ESP_OK
14:27:41.247 -> [120830][V][ZigbeeCore.cpp:372] esp_zb_app_signal_handler(): ZDO signal: NWK Device Associated (0x12), status: ESP_OK
14:27:41.247 -> [120832][V][ZigbeeCore.cpp:372] esp_zb_app_signal_handler(): ZDO signal: ZDO Device Update (0x30), status: ESP_OK
14:27:41.510 -> [121095][I][ZigbeeCore.cpp:325] esp_zb_app_signal_handler(): New device commissioned or rejoined (short: 0xef0e)
14:27:41.510 -> [121095][V][ZigbeeCore.cpp:329] esp_zb_app_signal_handler(): Device capabilities: 0x80
14:27:41.510 -> [121096][D][ZigbeeGateway.cpp:449] zbDeviceAnnce(): zbDeviceAnnce short address (0xef0e), ieee_addr (0x54):(0xef):(0x44):(0x10):(0x0):(0xae):(0x72):(0xf3)
14:27:41.510 -> [121097][D][ZigbeeGateway.cpp:452] zbDeviceAnnce(): zbDeviceAnnce joined device short address (0xef0e), ieee_addr (0x54):(0xef):(0x44):(0x10):(0x0):(0xae):(0x72):(0xf3)
14:27:41.543 -> [121153][I][ZigbeeGateway.cpp:484] printJoinedDevices(): joined devices:
14:27:41.588 -> [121153][I][ZigbeeGateway.cpp:487] printJoinedDevices(): Device on endpoint 1, short address: 0xef0e
14:27:41.775 -> [121354][I][ZigbeeGateway.cpp:294] zbQueryDeviceBasicCluster(): Query basic cluster attribute 0x0
14:27:41.995 -> [121597][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1005) callback
14:27:41.995 -> [121598][V][ZigbeeHandlers.cpp:271] zb_cmd_default_resp_handler(): Received default response: from address(0xef0e), src_endpoint(1) to dst_endpoint(1), cluster(0xef00) for command (0x3) with status 0xc3
14:27:41.995 -> [121598][V][ZigbeeHandlers.cpp:275] zb_cmd_default_resp_handler(): command id (11), direction (1), is common (1)
14:27:41.995 -> [121604][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1000) callback
14:27:42.039 -> [121604][V][ZigbeeHandlers.cpp:151] zb_cmd_read_attr_resp_handler(): Read attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:42.039 -> [121605][V][ZigbeeHandlers.cpp:160] zb_cmd_read_attr_resp_handler(): Read attribute response: status(0), cluster(0x0), attribute(0x0), type(0x20), value(3)
14:27:42.039 -> [121606][I][ZigbeeGateway.cpp:339] zbReadBasicCluster(): ZCL version id is "3"
14:27:42.245 -> [121854][I][ZigbeeGateway.cpp:300] zbQueryDeviceBasicCluster(): basic tsn 0xf
14:27:42.245 -> [121854][I][ZigbeeGateway.cpp:294] zbQueryDeviceBasicCluster(): Query basic cluster attribute 0x4
14:27:42.336 -> [121909][V][ZigbeeCore.cpp:372] esp_zb_app_signal_handler(): ZDO signal: ZDO Device Authorized (0x2f), status: ESP_OK
14:27:42.428 -> [122002][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1000) callback
14:27:42.428 -> [122003][V][ZigbeeHandlers.cpp:151] zb_cmd_read_attr_resp_handler(): Read attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:42.428 -> [122003][V][ZigbeeHandlers.cpp:160] zb_cmd_read_attr_resp_handler(): Read attribute response: status(0), cluster(0x0), attribute(0x4), type(0x42), value(4)
14:27:42.428 -> [122004][I][ZigbeeGateway.cpp:326] zbReadBasicCluster(): Peer Manufacturer is "LUMI"
14:27:42.520 -> [122108][I][ZigbeeCore.cpp:356] esp_zb_app_signal_handler(): Network(0xe5e9) is open for 180 seconds
14:27:42.746 -> [122355][I][ZigbeeGateway.cpp:300] zbQueryDeviceBasicCluster(): basic tsn 0x10
14:27:42.746 -> [122355][I][ZigbeeGateway.cpp:294] zbQueryDeviceBasicCluster(): Query basic cluster attribute 0x0
14:27:43.293 -> [122856][I][ZigbeeGateway.cpp:300] zbQueryDeviceBasicCluster(): basic tsn 0x11
14:27:44.897 -> [124459][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1000) callback
14:27:44.897 -> [124459][V][ZigbeeHandlers.cpp:151] zb_cmd_read_attr_resp_handler(): Read attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:44.897 -> [124460][V][ZigbeeHandlers.cpp:160] zb_cmd_read_attr_resp_handler(): Read attribute response: status(0), cluster(0x0), attribute(0x0), type(0x20), value(3)
14:27:44.897 -> [124460][I][ZigbeeGateway.cpp:339] zbReadBasicCluster(): ZCL version id is "3"
14:27:44.897 -> [124461][I][ZigbeeGateway.cpp:294] zbQueryDeviceBasicCluster(): Query basic cluster attribute 0x1
14:27:45.394 -> [124962][I][ZigbeeGateway.cpp:300] zbQueryDeviceBasicCluster(): basic tsn 0x12
14:27:45.892 -> [125475][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1000) callback
14:27:45.892 -> [125475][V][ZigbeeHandlers.cpp:151] zb_cmd_read_attr_resp_handler(): Read attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:45.892 -> [125476][V][ZigbeeHandlers.cpp:160] zb_cmd_read_attr_resp_handler(): Read attribute response: status(0), cluster(0x0), attribute(0x1), type(0x20), value(30)
14:27:45.892 -> [125477][I][ZigbeeGateway.cpp:345] zbReadBasicCluster(): ZCL application version id is "30"
14:27:45.892 -> [125477][I][ZigbeeGateway.cpp:294] zbQueryDeviceBasicCluster(): Query basic cluster attribute 0x5
14:27:46.390 -> [125978][I][ZigbeeGateway.cpp:300] zbQueryDeviceBasicCluster(): basic tsn 0x13
14:27:46.885 -> [126493][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1000) callback
14:27:46.885 -> [126493][V][ZigbeeHandlers.cpp:151] zb_cmd_read_attr_resp_handler(): Read attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:46.885 -> [126494][V][ZigbeeHandlers.cpp:160] zb_cmd_read_attr_resp_handler(): Read attribute response: status(0), cluster(0x0), attribute(0x5), type(0x42), value(17)
14:27:46.885 -> [126495][I][ZigbeeGateway.cpp:333] zbReadBasicCluster(): Peer Manufacturer is "lumi.magnet.agl02"
14:27:46.921 -> [126496][I][ZigbeeGateway.cpp:294] zbQueryDeviceBasicCluster(): Query basic cluster attribute 0x7
14:27:47.431 -> [126996][I][ZigbeeGateway.cpp:300] zbQueryDeviceBasicCluster(): basic tsn 0x14
14:27:47.942 -> [127510][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1000) callback
14:27:47.942 -> [127510][V][ZigbeeHandlers.cpp:151] zb_cmd_read_attr_resp_handler(): Read attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:47.942 -> [127511][V][ZigbeeHandlers.cpp:160] zb_cmd_read_attr_resp_handler(): Read attribute response: status(0), cluster(0x0), attribute(0x7), type(0x30), value(3)
14:27:47.942 -> [127512][I][ZigbeeGateway.cpp:351] zbReadBasicCluster(): ZCL power source id is "3"
14:27:47.942 -> [127513][I][ZigbeeGateway.cpp:311] zbQueryDeviceBasicCluster(): Query basic cluster attribute 0xfffe
14:27:48.404 -> [128013][I][ZigbeeGateway.cpp:852] sendAttributeWrite(): Sending 'write attribute' command - id (0xffde), type (0x20), size (0x1), value (0x13)
14:27:48.936 -> [128513][I][ZigbeeGateway.cpp:263] zbPrintDeviceDiscovery(): short_addr_req 61198
14:27:48.936 -> [128526][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1000) callback
14:27:48.936 -> [128527][V][ZigbeeHandlers.cpp:151] zb_cmd_read_attr_resp_handler(): Read attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:48.936 -> [128528][V][ZigbeeHandlers.cpp:160] zb_cmd_read_attr_resp_handler(): Read attribute response: status(134), cluster(0x0), attribute(0xfffe), type(0x0), value(0)
14:27:49.979 -> [129543][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1001) callback
14:27:49.979 -> [129543][V][ZigbeeHandlers.cpp:187] zb_cmd_write_attr_resp_handler(): Write attribute response: from address(0xef0e) src endpoint(1) to dst endpoint(1) cluster(0x0)
14:27:49.979 -> [129544][V][ZigbeeHandlers.cpp:194] zb_cmd_write_attr_resp_handler(): Write attribute response: status(134), cluster(0x0), attribute(0xffde)
14:27:50.989 -> [130560][I][ZigbeeGateway.cpp:197] Z2S_active_ep_req_cb(): Z2S active_ep_req: device address 61198, endpoints count 1
14:27:50.989 -> [130560][I][ZigbeeGateway.cpp:200] Z2S_active_ep_req_cb(): Endpont # 1, id 1 
14:27:52.187 -> [131778][I][ZigbeeGateway.cpp:216] Z2S_simple_desc_req_cb(): Z2S simple_desc_req: device address 61198, endpoint # 1
14:27:52.187 -> [131778][I][ZigbeeGateway.cpp:217] Z2S_simple_desc_req_cb(): Z2S simple_desc_req: in clusters # 4, out clusters # 1
14:27:52.187 -> [131779][I][ZigbeeGateway.cpp:221] Z2S_simple_desc_req_cb(): In cluster # 1, id 0 
14:27:52.187 -> [131779][I][ZigbeeGateway.cpp:221] Z2S_simple_desc_req_cb(): In cluster # 2, id 3 
14:27:52.187 -> [131780][I][ZigbeeGateway.cpp:221] Z2S_simple_desc_req_cb(): In cluster # 3, id 1280 
14:27:52.188 -> [131780][I][ZigbeeGateway.cpp:221] Z2S_simple_desc_req_cb(): In cluster # 4, id 1 
14:27:52.188 -> [131781][I][ZigbeeGateway.cpp:236] Z2S_simple_desc_req_cb(): Out cluster # 1, id 25 
14:27:53.419 -> [132995][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1005) callback
14:27:53.419 -> [132995][V][ZigbeeHandlers.cpp:271] zb_cmd_default_resp_handler(): Received default response: from address(0xef0e), src_endpoint(1) to dst_endpoint(1), cluster(0x0) for command (0xc) with status 0x84
14:27:53.419 -> [132996][V][ZigbeeHandlers.cpp:275] zb_cmd_default_resp_handler(): command id (11), direction (1), is common (1)
14:27:54.440 -> [134011][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1005) callback
14:27:54.440 -> [134011][V][ZigbeeHandlers.cpp:271] zb_cmd_default_resp_handler(): Received default response: from address(0xef0e), src_endpoint(1) to dst_endpoint(1), cluster(0x3) for command (0xc) with status 0x84
14:27:54.440 -> [134012][V][ZigbeeHandlers.cpp:275] zb_cmd_default_resp_handler(): command id (11), direction (1), is common (1)
14:27:55.420 -> [135027][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1005) callback
14:27:55.420 -> [135028][V][ZigbeeHandlers.cpp:271] zb_cmd_default_resp_handler(): Received default response: from address(0xef0e), src_endpoint(1) to dst_endpoint(1), cluster(0x500) for command (0xc) with status 0x84
14:27:55.420 -> [135028][V][ZigbeeHandlers.cpp:275] zb_cmd_default_resp_handler(): command id (11), direction (1), is common (1)
14:27:56.475 -> [136044][I][ZigbeeHandlers.cpp:35] zb_action_handler(): Receive Zigbee action(0x1005) callback
14:27:56.475 -> [136045][V][ZigbeeHandlers.cpp:271] zb_cmd_default_resp_handler(): Received default response: from address(0xef0e), src_endpoint(1) to dst_endpoint(1), cluster(0x1) for command (0xc) with status 0x84
14:27:56.475 -> [136045][V][ZigbeeHandlers.cpp:275] zb_cmd_default_resp_handler(): command id (11), direction (1), is common (1)
14:27:57.484 -> [137060][I][ZigbeeHandlers.cpp:58] zb_raw_cmd_handler(): cluster id: 0x19, command id: 11
14:27:57.484 -> [137061][I][ZigbeeHandlers.cpp:59] zb_raw_cmd_handler(): src endpoint (0x1, dst endpoint 0x1
14:27:57.484 -> [137061][I][ZigbeeHandlers.cpp:60] zb_raw_cmd_handler(): is common comand 1, disable_default_response 1, is_manuf_specific 1
14:27:57.484 -> [137062][I][ZigbeeHandlers.cpp:61] zb_raw_cmd_handler(): manuf_specific 0x8
14:27:57.484 -> [137062][I][ZigbeeHandlers.cpp:63] zb_raw_cmd_handler(): RAW bufid: 3 size: 2
14:27:57.484 -> [137062][I][ZigbeeHandlers.cpp:65] zb_raw_cmd_handler(): 0x0C 
14:27:57.484 -> [137063][I][ZigbeeHandlers.cpp:65] zb_raw_cmd_handler(): 0x84 
14:27:57.484 -> [137063][I][ZigbeeHandlers.cpp:70] zb_raw_cmd_handler(): ZigbeeHandlers rawCMD 0xef0e, 0xef0e, 0x0, 0x0
14:27:57.484 -> [137063][I][ZigbeeHandlers.cpp:84] zb_raw_cmd_handler(): ----------------------------raw command not processed---------------------------------------------------------------
Łukasz, czujnik otwarcia się bez problemu dodaje do bramki, jednak brak jest reakcji na magnes. Przed dodaniem czujnik wysyła informację przy zbliżaniu i oddalaniu magnesu. Widać to w załączonym pełnym logu (linie 258 - 260). Wrzucam log od procedury rejestracji czujnika.

Ps. Bramka z tym czujnikiem po kilkunastu minutach staje się nieaktywna w Cloud.
You do not have the required permissions to view the files attached to this post.
Pozdrawiam
Robert Błaszczak


Moja prywatna strona: www.blaszczak.pl
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

Robert Błaszczak wrote: Mon Feb 17, 2025 6:34 pm Łukasz, czujnik otwarcia się bez problemu dodaje do bramki, jednak brak jest reakcji na magnes. Przed dodaniem czujnik wysyła informację przy zbliżaniu i oddalaniu magnesu. Widać to w załączonym pełnym logu (linie 258 - 260). Wrzucam log od procedury rejestracji czujnika.

Ps. Bramka z tym czujnikiem po kilkunastu minutach staje się nieaktywna w Cloud.
Tam jest tylko klaster IAS, nic poza nim. Co to znaczy, że bramka staje się nieaktywna?

ps. spójrz tutaj:
https://community.home-assistant.io/t/n ... 1/718519/8
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
User avatar
vajera
Posts: 7293
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 291 times
Been thanked: 161 times

Post

Robert Błaszczak wrote: Mon Feb 17, 2025 6:34 pm Łukasz, czujnik otwarcia się bez problemu dodaje do bramki, jednak brak jest reakcji na magnes. Przed dodaniem czujnik wysyła informację przy zbliżaniu i oddalaniu magnesu. Widać to w załączonym pełnym logu (linie 258 - 260). Wrzucam log od procedury rejestracji czujnika.

Ps. Bramka z tym czujnikiem po kilkunastu minutach staje się nieaktywna w Cloud.
Wypróbuj jeszcze ostatni bin/kod 0.1.8-18/02/2025.
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277

Return to “Bramka ZigBee”