Search found 438 matches

by michap
03 Mar 2022 16:24
Forum: Discussions in English
Topic: Integration with Home Assistant
Replies: 152
Views: 223200

Re: Integration with Home Assistant

I was able to get the integration working by installing the most recent home assistant beta, performing the patch as indicated in the related UUID post, restarting z-way, creating a new user in z-way for home assistant with access to some devices, sign into z-way as the new user, copying the the to...
by michap
26 Nov 2021 23:08
Forum: Z-Uno
Topic: Z-Uno Gen2 and Fast PWM
Replies: 4
Views: 3782

Re: Z-Uno Gen2 and Fast PWM

Hi,

try analogWriteFrequency(freq)

freq: New PWM frequency in Hz units. The range is [488;8000000] Hz.

Michael
by michap
26 Nov 2021 23:03
Forum: Z-Uno
Topic: Library for CCS811 CO2/VOC sensor for testing.
Replies: 14
Views: 13036

Re: Library for CCS811 CO2/VOC sensor for testing.

cadaval wrote:
25 Nov 2021 11:58
i am new z-uno v2 user,...
For Z-UnoG2 please use the updated sketch:
https://github.com/Z-Wave-Me/Z-Uno-G2-C ... UNO_CCS811

The library should be installed if you have an actual bootloader.

Michael
by michap
26 Nov 2021 22:56
Forum: Z-Uno
Topic: Handling of external libraries (Zuno2)
Replies: 3
Views: 2984

Re: Handling of external libraries (Zuno2)

Hi, you can copy it into the lib directory: C:\Users\[username]\AppData\Local\Arduino15\packages\Z-Uno2\hardware\zw_cm4f\3.0.7\libraries From here it will be taken by compiler. But for design it is more easy to put it into sketch folder. Please note that the folder can be removed after update to new...
by michap
15 Nov 2021 21:53
Forum: Z-Uno
Topic: Library for CCS811 CO2/VOC sensor for testing.
Replies: 14
Views: 13036

Re: Library for CCS811 CO2/VOC sensor for testing.

I think the problem is that CCS811 is not ready. In your condition you are checking - if ready then take the values and send it... If not ready then send "0" You could add a loop (do while not ready) and take the value if ready or do not disable the CCS811, so that it is running all the ti...
by michap
11 Nov 2021 15:04
Forum: Z-Uno
Topic: Library for CCS811 CO2/VOC sensor for testing.
Replies: 14
Views: 13036

Re: Library for CCS811 CO2/VOC sensor for testing.

Hi, for checking the output you could use Serial0 and pins on TX0 and RX0 together with an USB to serial converter. But as you wrote the output is normal if device is not sleeping... At first I would try to check the Z-Wave configuration. Change your code to any fixed value, as sample: int CO2_gette...
by michap
10 Nov 2021 22:56
Forum: Z-Uno
Topic: Library for CCS811 CO2/VOC sensor for testing.
Replies: 14
Views: 13036

Re: Library for CCS811 CO2/VOC sensor for testing.

Hi, The problem is that when I associate the device to my ZWAVE network (I use ZWAY on a Raspberry PI 3 with a UZB stick) the CO2 and VOC values are always 0 (zero)... What give the Serial.print(CO2_int); Serial.print(VOC_int); in your application as result? Real values? So is it Z-Way related? Mich...
by michap
18 Feb 2021 11:42
Forum: Discussions in English
Topic: Corrupt SD card...again!
Replies: 32
Views: 18945

Re: Corrupt SD card...again!

If there are many write processes to /opt/z-way-server/automation/storage/configjson-xxxx.json you can check the device settings - any device is reporting with short interval. (I have found an Aeon switch with default setting of 10 sec. report ....) In this time every value change of parameter will ...
by michap
17 Feb 2021 20:02
Forum: Discussions in English
Topic: Corrupt SD card...again!
Replies: 32
Views: 18945

Re: Corrupt SD card...again!

sudo strace -fp 344 -e trace=write,open strace: attach: ptrace(PTRACE_SEIZE, 344): No such process the "344" is the PID of the z-way process (you can see it in ps -x |grep z-way as sample) if using strace -fp [PID] -e trace=write,open -s100 -y you will get additional the filenames (as sam...
by michap
15 Feb 2021 20:03
Forum: Discussions in English
Topic: Corrupt SD card...again!
Replies: 32
Views: 18945

Re: Corrupt SD card...again!

try to find out what are the big files/ directories (from root directory):

Code: Select all

du -aBM 2>/dev/null | sort -nr | head -n 50 | more
maybe it help...