Search found 35 matches

by jucs
02 Mar 2017 16:12
Forum: Z-Uno
Topic: New 2.0.8 test build is ready!
Replies: 1
Views: 3778

Re: New 2.0.8 test build is ready!

The ADC values are still broken after wakeup...
by jucs
12 Feb 2017 15:56
Forum: Z-Uno
Topic: Release 2.0.8?
Replies: 24
Views: 25144

Re: Release 2.0.8?

I am also very much looking forward to release 2.0.8 which hopefully fixes the sleep mode problems...
by jucs
09 Feb 2017 03:52
Forum: RaZberry
Topic: Reacting to a NOTIFICATION REPORT
Replies: 0
Views: 2507

Reacting to a NOTIFICATION REPORT

Hi there, I have a problem with my Fibaro leakage sensor. The sensor has a tamper alarm function which sends a "NOTIFICATION REPORT" to an associated device. I've configured the Z-Way controller as this device and I see the "event" in the log: [2017-02-09 01:50:40.219] [D] [zway]...
by jucs
19 Jan 2017 03:01
Forum: Z-Uno
Topic: SPI does not work after self-wakeup
Replies: 3
Views: 5113

Re: SPI does not work after self-wakeup

Here it is; Z-Uno code (master): #include "Arduino.h" #include "EEPROM.h" #include "SPI.h" ZUNO_SETUP_ASSOCIATIONS(ZUNO_ASSOCIATION_GROUP_SET_VALUE); // Send Basic Set to association group word getterMoisture() { int moisture = read(18); return moisture; } // set up cha...
by jucs
18 Jan 2017 12:38
Forum: Z-Uno
Topic: Unstable I2C communication
Replies: 4
Views: 6485

Re: Unstable I2C communication

Thanks :) To make it clear, in my setup the Z-Uno was the Master and the Atmega328p was the slave.
by jucs
18 Jan 2017 02:58
Forum: Z-Uno
Topic: Understanding running/sleeping modes?
Replies: 2
Views: 4255

Re: Understanding running/sleeping modes?

Hi Ralf, 1) When your sensor is in FLiRS mode, the controller can wake it up. Thus, you don't configure an interval at which the device wakes up, but simply poll whenever you want a fresh value. Of course you might want to poll regularly to log data. However, beware that at least my Z-Uno does not w...
by jucs
18 Jan 2017 02:52
Forum: Z-Uno
Topic: SPI does not work after self-wakeup
Replies: 3
Views: 5113

SPI does not work after self-wakeup

Hello everyone,

since I didn't get I2C to work, I today tried SPI. Works great... until the chip wakes up from deep sleep mode. Like the ADC, the SPI does not work any longer...
by jucs
17 Jan 2017 15:27
Forum: Z-Uno
Topic: [RESOLVE] Sketch with multiple files
Replies: 9
Views: 10830

Re: Sketch with multiple files

Ah, that may have been my problem as well :-) I'll try it too!
by jucs
17 Jan 2017 15:24
Forum: Z-Uno
Topic: Unstable I2C communication
Replies: 4
Views: 6485

Unstable I2C communication

Hello everyone, I'm having trouble establishing a stable communication between the an AVR and Z-Uno using the Wire library. I was trying to use the AVR for ADC readings (as the ADC of the Z-Uno currently doesn't work after Wakeup). However, I'm having the following problems: * If I run the AVR at 16...
by jucs
14 Jan 2017 02:47
Forum: Z-Uno
Topic: [RESOLVE] Sketch with multiple files
Replies: 9
Views: 10830

Re: Sketch with multiple files

I does work with my library hack using the Makefile... I didn't find any other way.