HI,
Any news / progresses / upgrades with regards to Z-uno firmware?
Thanks,
Yves
Search found 52 matches
- 28 Oct 2024 10:36
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
- 29 May 2024 22:14
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
Re: version 3.0.12
Hi Nick,
Thank you for your contribution:
I was afraid that ‘my’ problem was specific to ‘my’ home center 3 controller.
You have removed this ‘ambiguity’…
Hoping that this will be solved...
Yves
Thank you for your contribution:
I was afraid that ‘my’ problem was specific to ‘my’ home center 3 controller.
You have removed this ‘ambiguity’…
Hoping that this will be solved...
Yves
- 05 Apr 2024 17:10
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
Re: version 3.0.12
Hi Nick, for 3.12: One reboot every 6-8hours looks high but finaly not so far from what I see (around 3/days)... I also agree that EEPROM.put() works and does not imply a reboot every time. BUT, if you keep ZWCCBasic writing to EEPROM whenever a switch value is received, then you increase greatly nu...
- 27 Mar 2024 17:37
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
Re: version 3.0.12
Hi Niky, You will find attached my modifications to 3.12 dec 2023. As a foreword: All modifications are under compilation flags that start with YGN . Today I have defined: #define YGNCHECKDIFFMESSAGE //remove 2 identical consecutive received msg #define YGNREDUCE_hp_time // in relation with above de...
- 27 Mar 2024 09:25
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
Re: version 3.0.12
Hi Niky, I will send you today all modifications I have made to core files in 3.12. [I have to add some comments to split what I feel is important (from what is 'nice to have' to me :) )] . Yes, I am still having reboots issue with 3.12 around 3/days (!) Compared to less than 2/week for my 3.10 (als...
- 26 Mar 2024 08:58
- Forum: Z-Uno
- Topic: Binary sensor on Fibaro HC3
- Replies: 10
- Views: 30336
Re: Binary sensor on Fibaro HC3
Hi Manurev I would have added following lines before ZUNO_SETUP_CHANNELS() : //Define 'static inclusion' ZUNO_DISABLE(NO_MULTIBINARY_SWITCH0); //define here all other flags ZUNO_ENABLE( //ZUNO flag requested MODERN_MULTICHANNEL // No clusters, the first channel is mapped to NIF only MODERN_MULTICHAN...
- 23 Mar 2024 09:56
- Forum: Z-Uno
- Topic: Binary sensor on Fibaro HC3
- Replies: 10
- Views: 30336
Re: Binary sensor on Fibaro HC3
Hi Manurev, If you are still using the code included in above post, then here might be your bug: 'getter()' is THE function that is call by zunoSendReport to know what is the value to send. So replacing: byte getter(void) { return 0; } with: byte getter(void) { return ledColor; } Should leads you cl...
- 20 Mar 2024 10:07
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
Re: version 3.0.12
Hi, ____ 3.12 vs 3.10 ____ I have made some tests with the same application running under 3.12(29/12/2023) or 3.10, with a Fibaro Home Center 3 as controler. Here are the results: 3.12 ‘better’ points There is a far better management of weak ZWave RF conditions => no more ‘disconnected’ state of the...
- 15 Jan 2024 14:23
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
Re: version 3.0.12
Hi Alex, I am still using 3.0.10... My first post was to know if it was wise to go to 3.0.12 knowing that there were some moves in git hub... Anyways, I have made some progresses with 3.0.10 and find some improvements: As explained above, my stronger 'crash test' is to send 2 'SET' commands from my ...
- 11 Jan 2024 16:37
- Forum: Z-Uno
- Topic: version 3.0.12
- Replies: 25
- Views: 67350
Re: version 3.0.12
HI, About the 'improvement' (1) proposed in 2 posts before: Each time child's data are sent to the controler they are repeated for every association group the 'child' belongs to. I am not using association groups, this is why my proposition is efficient for reducing ZWaave traffic and works without ...