Search found 14 matches

by element
17 May 2023 21:09
Forum: Z-Uno
Topic: After uploading bootloader beta version, the board flashes red. +next board blocked (all bootloaders upload) identically
Replies: 8
Views: 3457

Re: After uploading bootloader beta version, the board flashes red. +next board blocked (all bootloaders upload) identic

That's right - at the moment I don't need to update the firmware, but if in the past I needed to, because it had errors that prevented the functioning of my programs and you corrected them in the next versions of the firmware, I will probably also need to update the firmware in the future. Besides, ...
by element
16 May 2023 14:29
Forum: Z-Uno
Topic: Where has the support gone?
Replies: 1
Views: 1023

Where has the support gone?

7 days ago I asked a question. Will I get an answer to them?
https://forum.z-wave.me/viewtopic.php?p=98118#p98118

Regards
by element
09 May 2023 10:14
Forum: Z-Uno
Topic: After uploading bootloader beta version, the board flashes red. +next board blocked (all bootloaders upload) identically
Replies: 8
Views: 3457

Re: After uploading bootloader beta version, the board flashes red. +next board blocked (all bootloaders upload) identic

Hi, you can only upgrade to the newer version of the bootloader( the build number greater that your current), downgrade starting from version 3.11 is not possible due to the SDK features. The board is working correctly. Best regatds, Alex. I understand that I can't downgrade (to 3.0.10) but why can...
by element
05 May 2023 00:01
Forum: Z-Uno
Topic: After uploading bootloader beta version, the board flashes red. +next board blocked (all bootloaders upload) identically
Replies: 8
Views: 3457

Re: After uploading the bootloader, the board flashes red.

This is normal if there are no sketch loaded. The sketch is erased on bootloader upgrade. Just flash a sketch in your Z-Uno 2 I tried and I can upload a sketch after selecting the Z-Uno2 (beta) board version and it stops blinking red and starts blinking green but... ...I wanted to compare with anot...
by element
03 May 2023 17:45
Forum: Z-Uno
Topic: After uploading bootloader beta version, the board flashes red. +next board blocked (all bootloaders upload) identically
Replies: 8
Views: 3457

After uploading bootloader beta version, the board flashes red. +next board blocked (all bootloaders upload) identically

After uploading the bootloader, the board flashes red. I haven't done anything with Z-Uno boards in a long time, so I started by updating the firmware. Unfortunately, an error occurred. 1. I upgraded the IDE from 1.8.19 to 2.1.0 and started the new IDE 2. or 3. I chose the Z-Uno2 board, uploaded the...
by element
04 Jun 2022 01:43
Forum: Z-Uno
Topic: [solved] ZUNO_REPORTS_HANDLER() for Z-Uno2
Replies: 7
Views: 4470

Re: ZUNO_REPORTS_HANDLER() for Z-Uno2

Works great. :-) Thank you, but ;P ... macro:

Code: Select all

// You need the WITH_CC_MULTICHANNEL channel to view multi-channel reports (for devices with multiple endpoints, such as ZUno)
ZUNO_ENABLE(WITH_CC_MULTICHANNEL);
Not yet in the reference. Include them. ;-)
Regards
by element
02 Jun 2022 00:44
Forum: Z-Uno
Topic: [solved] ZUNO_REPORTS_HANDLER() for Z-Uno2
Replies: 7
Views: 4470

Re: ZUNO_REPORTS_HANDLER() for Z-Uno2

Okay, I'll wait for the firmware update. Anyway, I've tried this workaround So far, there is one way to make reports work for you - add a dummy SensorMultilevel channel to the receiving sketch. and still don't have reports. Please correct my code: #include "Arduino.h" #define MY_SERIAL Ser...
by element
26 May 2022 00:34
Forum: Z-Uno
Topic: [solved] ZUNO_REPORTS_HANDLER() for Z-Uno2
Replies: 7
Views: 4470

Re: ZUNO_REPORTS_HANDLER() for Z-Uno2

Thank you, but ... it's not working. For the first board, I have compiled the following code: // add library ds18b20 #include <ZUNO_DS18B20.h> // pin connection ds18b20 #define PIN_DS18B20 11 OneWire ow(PIN_DS18B20); // onewire connection temperature sensors DS18B20Sensor ds1820(&ow); int temp; ...
by element
20 May 2022 23:14
Forum: Z-Uno
Topic: [solved] ZUNO_REPORTS_HANDLER() for Z-Uno2
Replies: 7
Views: 4470

[solved] ZUNO_REPORTS_HANDLER() for Z-Uno2

Compiling sample code, catching unsolicited reports from other Z-Wave devices: ZUNO_REPORTS_HANDLER(SensorMultilevel, SensorMultilevelReport); #define SERIAL Serial0 ZUNO_ENABLE(LOGGING_DBG LOGGING_EVENTS); void logReportTitle(char * text) { SERIAL.print(millis()); SERIAL.print(" "); SERIA...