Search found 18 matches

by element
04 Jun 2022 01:43
Forum: Z-Uno
Topic: [solved] ZUNO_REPORTS_HANDLER() for Z-Uno2
Replies: 7
Views: 4599

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: 4599

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: 4599

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: 4599

[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...
by element
20 May 2022 14:48
Forum: Z-Uno
Topic: [solved] Error setting "thermostat setpoint" and invalid maximum value.
Replies: 3
Views: 2562

Re: Error setting "thermostat setpoint" and invalid maximum value.

After installing beta 3.0.9. Works properly. Thank you. :-)
by element
18 May 2022 12:45
Forum: Z-Uno
Topic: [solved] Error setting "thermostat setpoint" and invalid maximum value.
Replies: 3
Views: 2562

[solved] Error setting "thermostat setpoint" and invalid maximum value.

I have UZB, Z-Way for Windows and Z-Uno2. In Z-Uno I have uploaded a simplified code for problem analysis: ZUNO_SETUP_CHANNELS( ZUNO_THERMOSTAT(THERMOSTAT_FLAGS_OFF|THERMOSTAT_FLAGS_HEAT|THERMOSTAT_FLAGS_COOL, THERMOSTAT_UNITS_CELSIUS, THERMOSTAT_RANGE_POS, 3, getterThermostatMode, setterThermostatM...
by element
23 Oct 2021 23:21
Forum: Z-Uno
Topic: Error linking with some functions with argument variable not computed during compilation. [solved]
Replies: 2
Views: 3042

Re: Error linking with some functions with argument variable not computed during compilation.

I downloaded packages again but they haven't changed. I started looking for what else to reinstall and found a new address for downloading packages. I was typed: https://rus.z-wave.me/files/z-uno/g2/beta-index/package_z-wave2.me_index.json I changed to: https://z-uno.z-wave.me/files/z-uno2/package_z...
by element
22 Oct 2021 02:38
Forum: Z-Uno
Topic: Error linking with some functions with argument variable not computed during compilation. [solved]
Replies: 2
Views: 3042

Error linking with some functions with argument variable not computed during compilation. [solved]

Error linking with some functions with argument variable not computed during compilation. log(1.2); //OK float x=1.2; log(x); //OK log(analogRead(A1)); //Error sqrt(analogRead(A1)); //Error abs(analogRead(A1)); //OK sin(analogRead(A1)); //OK linking "test2_ino.elf" ...........................