Search found 39 matches

by mdietinger@gmail.com
24 Apr 2018 14:02
Forum: Z-Uno
Topic: Interrupts in 2.0.8
Replies: 4
Views: 4964

Re: Interrupts in 2.0.8

I am using GPT and two interupts as well with my weather station project. Is running stable for some months now. Only important thing is to have only limited code within the interupt routines. In my case I only have a counter within the routine. If you don't follow that advice the application might ...
by mdietinger@gmail.com
24 Apr 2018 09:43
Forum: Z-Uno
Topic: Z-UNO based weather Station (German description)
Replies: 8
Views: 7710

Z-UNO based weather Station (German description)

Over the last couple of months i build a weather station using Z-UNO. There are two articles describing the solution and integration into Fibaro HC2(German) https://www.siio.de/z-wave-wetterstation-diy-teil-1-z-uno-hw-sw/ https://www.siio.de/z-wave-wetterstation-diy-teil-2-fibaro-vd/ The solution is...
by mdietinger@gmail.com
16 Feb 2018 18:22
Forum: Z-Uno
Topic: Nextion and z-uno
Replies: 3
Views: 4347

Re: Nextion and z-uno

You could use Nextion without library.
See there: http://support.iteadstudio.com/support/ ... 1000012477
by mdietinger@gmail.com
22 Nov 2016 11:01
Forum: Z-Uno
Topic: Quick-fix for library's problems in Z-Uno?
Replies: 4
Views: 6502

Re: Quick-fix for library's problems in Z-Uno?

Hello, you don't need to go via another microcontroller to communicate with MCP4725. I2C just works fine and if you address the chip directly without going via a library you shouldn't have any issues. Below code I found on the web and it addresses the I2C interface directly. Not sure whether you nee...
by mdietinger@gmail.com
18 Nov 2016 15:36
Forum: Z-Uno
Topic: How to transport data to Z-UNO
Replies: 7
Views: 8479

Re: How to transport data to Z-UNO

Andreas, thanks for your extensive answer. Maybe I need to describe in a bit more details what I want to achieve: I want to keep a list with all doors and windows device ID and Names in Z-UNO. One option is to hardcode in usercode, or store in EEPROM with a separate code processed once to store and ...
by mdietinger@gmail.com
15 Nov 2016 10:36
Forum: Z-Uno
Topic: How to transport data to Z-UNO
Replies: 7
Views: 8479

How to transport data to Z-UNO

Is there a way to transport data from Z_Wave controller to Z-UNO other then the quite limited ZUNO_SWITCH_MULTILEVEL which only allows to send 0-99? My plan would be to send actor ID's and names to Z-UNO, store them in EEPROM. If there is a chance to send at least eg. 4bytes at the same time it woul...
by mdietinger@gmail.com
14 Nov 2016 09:52
Forum: Z-Uno
Topic: HYT 939(HYTxxx) Accurate temperature and humidity I2C sensor
Replies: 14
Views: 18262

Re: HYT 939(HYTxxx) Accurate temperature and humidity I2C se

Tested int for variable and int for getter over the weekend. This combination doesn't work either. Seems like getter requires an unsigned variable not as described in documentation signed! Getter in all examples is correctly unsigned, but some of the temperature examples use signed variables for the...
by mdietinger@gmail.com
08 Nov 2016 11:34
Forum: Z-Uno
Topic: HYT 939(HYTxxx) Accurate temperature and humidity I2C sensor
Replies: 14
Views: 18262

Re: HYT 939(HYTxxx) Accurate temperature and humidity I2C se

OK, Loks like signed - signed and unsigned -unsigned works, but not a combination of them.
I am out of contry and can only test on the weekend.

Regards,

Markus
by mdietinger@gmail.com
08 Nov 2016 07:54
Forum: Z-Uno
Topic: HYT 939(HYTxxx) Accurate temperature and humidity I2C sensor
Replies: 14
Views: 18262

Re: HYT 939(HYTxxx) Accurate temperature and humidity I2C se

Michael, Tonight i had a real World test. Temperature dropped bellow 0. Hat one Sensor with int and one with unsigned int. The one with int went flad at 0 degrees. So type matters, like i though. Direct conversion doesnt show Same result as from Byte. Guess we need to get a Statement from devolopers...
by mdietinger@gmail.com
07 Nov 2016 20:29
Forum: Z-Uno
Topic: HYT 939(HYTxxx) Accurate temperature and humidity I2C sensor
Replies: 14
Views: 18262

Re: HYT 939(HYTxxx) Accurate temperature and humidity I2C se

Michael,

did test your code.
Same result for int and unsigned integer.
Seems z_UNO does the correct conversion to word type automatically.
Maybe I mixed up "getter variable type" at some time and used int there.

Will update original posting.

thanks, Markus