Search found 242 matches

by p0lyg0n1
11 Mar 2022 10:46
Forum: Z-Uno
Topic: Z-UNO 2 Channel configuration not working with HC2
Replies: 5
Views: 2391

Re: Z-UNO 2 Channel configuration not working with HC2

Hi, Please try this code at the beginning of your sketches ZUNO_ENABLE( MODERN_MULTICHANNEL // No clusters, the first channel is mapped to NIF only MODERN_MULTICHANNEL_S2 // S2 encapsulated NIF in multichannel MODERN_MULTICHANNEL_S2_ALWAYS // Add S2 to multichannel if device included non-secure ); I...
by p0lyg0n1
09 Mar 2022 14:05
Forum: Z-Uno
Topic: Dynamic channel configuration not working
Replies: 5
Views: 2910

Re: Dynamic channel configuration not working

Hello, I'm so sorry. I missed your message. It is not often possible to visit the forum. We found some problems with the support of Fibaro and dynamic channels when we adapted some of our products for HC3. We have a solution for HC2/PC3, and we want to release a new firmware (2.18) soon. Stay tuned....
by p0lyg0n1
09 Mar 2022 13:36
Forum: Z-Uno
Topic: Z-uno2 String function not working
Replies: 2
Views: 1545

Re: Z-uno2 String function not working

Hi, Thank you for your code. I've tested it. The code works correctly with the latest beta version (3.0.9). To enable beta support, please add "https://z-uno.z-wave.me/files/z-uno2/package_z-wave2.me_beta_index .json" to your repository list. After installation, you can simply switch betwe...
by p0lyg0n1
21 Feb 2022 09:24
Forum: Обсуждение на русском / Discussions in Russian
Topic: watchdog и утечки памяти
Replies: 5
Views: 2505

Re: watchdog и утечки памяти

Здравствуйте! На Z-uno 1 нет WatchDog внутри пользовательского кода. Он используется только в функции Reboot для принудительной перезагрузки чипа. Утечка памяти там также не возможна, но возможно переполение стека. С большой вероятностью это именно оно, если тот же код стабильно работает на 2-ой(где...
by p0lyg0n1
14 Feb 2022 13:36
Forum: Z-Uno
Topic: Battery Handler
Replies: 2
Views: 1739

Re: Battery Handler

So, I tried the latest core (3.0.9b2) with RaZberry (Z-Way), it works as expected. So it answers with 50% value every time controller asks. When I wake up Z-Uno using "BTN" it reports battery unsolicited with 50% value. Here is my sample code (is based on your code): byte batteryLevel=50; ...
by p0lyg0n1
14 Feb 2022 13:06
Forum: Z-Uno
Topic: Battery Handler
Replies: 2
Views: 1739

Re: Battery Handler

Hi,
The first significant information we need is the version of your ZUno and your core-version. Seems you use ZUno G2 with core version 3.0.7. Am I right? I'll try to make example with the latest beta (v 3.0.9b2) and post it here.

Best regards,
Alex.
by p0lyg0n1
31 Jan 2022 13:30
Forum: Discussions in English
Topic: Z-UNO2 Debug mode
Replies: 2
Views: 1448

Re: Z-UNO2 Debug mode

Hi,
We don't add this ability to ZUno2 yet. Do you realy need to change z-wave behaviour of device "on the fly"?
You are right the macro (ZUNO_SETUP_DEBUG_MODE) was missed. We will add this to next release for backward compatibility. Thank you for your report.

Best regards,
Alex.
by p0lyg0n1
20 Jan 2022 18:01
Forum: Z-Uno
Topic: Setting ProductID on Zuno2 with no effect
Replies: 5
Views: 4325

Re: Setting ProductID on Zuno2 with no effect

I can confirm. This macro wasn't implemented yet in zme_make utulity. It doesn't produce any code now. We will add it to the next "beta".
by p0lyg0n1
12 Jan 2022 23:15
Forum: Z-Uno
Topic: Dynamic channel configuration not working
Replies: 5
Views: 2910

Re: Dynamic channel configuration not working

Hi, have tried and your code works with my Razberry gateway the right way, I just add loop() and some code to see that the sketch works: ZUNO_ENABLE(WITH_CC_SWITCH_MULTILEVEL WITH_CC_METER WITH_CC_SENSOR_BINARY WITH_CC_SWITCH_COLOR WITH_CC_SENSOR_MULTILEVEL WITH_CC_DOORLOCK WITH_CC_SWITCH_BINARY WIT...
by p0lyg0n1
12 Jan 2022 22:29
Forum: Z-Uno
Topic: Dynamic channel configuration not working
Replies: 5
Views: 2910

Re: Dynamic channel configuration not working

Hi, the first that I have to say that dynamic configuration is one of the most sophisticated topics of ZUno. The API differs for the 1st and 2nd generation. Seems you try to write code for the 1st generation of Z-Uno, don't you? 1. About mapping to zero channel. Let's keep it simple as we can. Just ...