Search found 68 matches

by aleconakad
21 Mar 2024 17:59
Forum: Z-Uno
Topic: Z-Uno2 OTA Sketch Update Issue
Replies: 13
Views: 2220

Re: Z-Uno2 OTA Sketch Update Issue

Things did not get better with 3.0.12b and Zwave JS. With 3.0.10 at least I was having some successful runs when doing OTA, but with 3.0.12b none. I keep getting the following error message: 2024-03-21 15:55:40.541 INFO Z-WAVE: Failed to start the update: Invalid hardware version! (ZW1503) updateFir...
by aleconakad
21 Mar 2024 17:46
Forum: Z-Uno
Topic: Configuration parameters in 3.0.12 beta
Replies: 6
Views: 377

Re: Configuration parameters in 3.0.12 beta

After a while of digging it turned out that my usb cable had some issue. Replacing it simply fixed the problem. BTW I use Visual Studio Code on a M2 Apple Silicon. My initial thoughts lead me to try out the same sketch on multiple machines, including Linux and windows in a virtualized environment. A...
by aleconakad
12 Mar 2024 12:48
Forum: Z-Uno
Topic: Configuration parameters in 3.0.12 beta
Replies: 6
Views: 377

Re: Configuration parameters in 3.0.12 beta

Here's a snapshot: #ifdef FLASH_CONFIG_PARAMS void flash_config_params() { Serial.println("Flashing Z-UNO sketch default configuration parameters"); val = 0; // fading algorithm zunoSaveCFGParam(64, val); delay(50); val = 3000; // fading time zunoSaveCFGParam(65, val); delay(50); val = 0; ...
by aleconakad
06 Mar 2024 15:43
Forum: Z-Uno
Topic: Configuration parameters in 3.0.12 beta
Replies: 6
Views: 377

Configuration parameters in 3.0.12 beta

Hi, I am currently giving 3.0.12b a try. I have sketch file called eol.ino that stores some stuff in EEPROM and sets the default values for the parameters I use in my main sketch. For some reason, when I use zunoSaveCFGParam() function, no values are getting written to EEPROM . On 3.0.10 it works fl...
by aleconakad
19 Jan 2022 16:47
Forum: Z-Uno
Topic: Setting ProductID on Zuno2 with no effect
Replies: 5
Views: 4050

Re: Setting ProductID on Zuno2 with no effect

Can anyone answer this?
by aleconakad
02 Dec 2021 17:05
Forum: Z-Uno
Topic: Setting ProductID on Zuno2 with no effect
Replies: 5
Views: 4050

Setting ProductID on Zuno2 with no effect

Hi, I am trying to test one of my old sketches with ZUNO2. It seems that the Zuno always identifies itself with 0210:0001. The following piece of code seems do not have any effect: // setting the Product ID manually (0x0111/PRODUCT_ID_HIGH_byte<<8 | PRODUCT_ID_LOW_byte) #define PRODUCT_ID_LOW_byte 0...
by aleconakad
01 Dec 2021 17:41
Forum: Z-Uno
Topic: EEPROM layout Zuno 2
Replies: 7
Views: 4532

Re: EEPROM layout Zuno 2

Any forecast when the next release will happen?
by aleconakad
25 Nov 2021 15:03
Forum: Z-Uno
Topic: EEPROM layout Zuno 2
Replies: 7
Views: 4532

Re: EEPROM layout Zuno 2

I've written this program to determine the last writable address. Check it and see if I have some bugs inside :-) From the output it seems that EEPROM writes span from 0x28D to 0xFED (3424 bytes), additionally to the 512 bytes from 0x000 to 0x200. All in all, almost 4K for EEPROM storage. I wish if ...
by aleconakad
21 Nov 2021 15:01
Forum: Z-Uno
Topic: EEPROM functions always return 0
Replies: 2
Views: 2616

Re: EEPROM functions always return 0

Hi joergm6, what is the output of the code snippet above? In my case it is: 13:04:57.218 -> Reading 128 Bytes one by one from EEPROM... 13:04:57.218 -> AA BB CC DD EE FF FF FF FF FF FF FF FF FF FF FF FF 13:04:57.218 -> FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 3C 13:04:57.251 -> 0 64 0 0 55 0 0 5...
by aleconakad
21 Nov 2021 14:59
Forum: Z-Uno
Topic: EEPROM layout Zuno 2
Replies: 7
Views: 4532

Re: EEPROM layout Zuno 2

Thanks, but I am not sure if this information is correct. In one of my programs that run on Zuno 1G, I use EEPROM extensively to write lot of tables and animations. After writing, I read them back again and compare them with the original table ( loaded in RAM at compile time as an array of static by...