Search found 442 matches

by michap
19 Mar 2022 22:40
Forum: Discussions in English
Topic: No valid UUID set
Replies: 41
Views: 17815

Re: No valid UUID set

Did a complete reinstall of zway with the official z-way image, patched files before the first boot, restored the network backup in zway expert ui, created a new user, logged in as the new user, copied the token: still no luck. Don't know how the uuid is generated, already tried to change the netwo...
by michap
05 Mar 2022 19:03
Forum: Discussions in English
Topic: How to Connect Razberry with wifi instead of Ethernet Cable
Replies: 7
Views: 2944

Re: How to Connect Razberry with wifi instead of Ethernet Cable

Do you think when I boot raspberry pi OS and then setup wifi and then. go for z-wave.me installation it will work ? and also can I do it to connect first via ethernet cable and then go to setup wifi ? Yes, this is a standard installation way. If you connect at first via ethernet the Wifi setup is e...
by michap
05 Mar 2022 11:09
Forum: Discussions in English
Topic: How to Connect Razberry with wifi instead of Ethernet Cable
Replies: 7
Views: 2944

Re: How to Connect Razberry with wifi instead of Ethernet Cable

maybe you forgot to set the locale settings (country) (in raspi-config) ? This is needed for the Wifi setup.

Have you any lines in your logs where any Wifi connection error is shown?
by michap
04 Mar 2022 23:10
Forum: Discussions in English
Topic: Integration with Home Assistant
Replies: 152
Views: 225274

Re: Integration with Home Assistant

tom123 wrote:
04 Mar 2022 00:18
I am very disappointed...
For me the integration is unusable because each entity is also a device.
Yes, you are right, it is not optimal in this time.

But, as you know, you can hide the not needed entities so that it could be usable...
by michap
03 Mar 2022 16:24
Forum: Discussions in English
Topic: Integration with Home Assistant
Replies: 152
Views: 225274

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

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

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

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

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

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...