Page 1 of 5

What libraries would you want to use with Z-Uno?

Posted: 16 Dec 2015 21:19
by PoltoS
We need to port Arduino standard libraries to Z-Uno. This is a huge work, so we want first to make most required libraries first.

Please help us to choose most needed libraries. Below please add libs you are interested in and after we get some 20-30 libs, we will make a poll to vote for most usefull.

Re: What libraries would you want to use with Z-Uno?

Posted: 14 Jan 2016 17:51
by velib
Hi!
The I2C protocol usage is a must.

Re: What libraries would you want to use with Z-Uno?

Posted: 14 Jan 2016 19:57
by Dataworm
Support for the 1-Wire protocol would be nice. Also the protocol for sensors like DHT22 might be nice, but I think this is absolutely low priority. ;-)

Re: What libraries would you want to use with Z-Uno?

Posted: 09 Aug 2016 09:45
by romanstyler
I think DHT22 support will be really good feature. What do you think, is it possible to adopt current DHT22 in order to support Z-Uno?

Re: What libraries would you want to use with Z-Uno?

Posted: 10 Aug 2016 01:23
by PoltoS
We have internal DHT22 implementation, but we have not released it, since we want to improve it before. I think we can release it next week.

Re: What libraries would you want to use with Z-Uno?

Posted: 10 Aug 2016 21:09
by romanstyler
Super, sounds great! If it's possible i can connect to beta testing.

Re: What libraries would you want to use with Z-Uno?

Posted: 12 Aug 2016 09:11
by netclimber
How about support for WS2812 and alike? There's this library: https://github.com/adafruit/Adafruit_NeoPixel

Re: What libraries would you want to use with Z-Uno?

Posted: 12 Aug 2016 21:30
by maddam
I2C a must

- MCP23017, I2C 16-bit serial expander
- SHT31, humidity and temperature sensor
- Arduino TimerOne
- SSD1306, 128x64 OLED display

Re: What libraries would you want to use with Z-Uno?

Posted: 13 Aug 2016 01:11
by PoltoS
- WS2812 - we will try in September. They require real time control of the chip, while Z-Uno also need to track RF transmission, so this will be hard.
- MCP23017 - already in C++ beta 2.0.4 - check this: https://github.com/Z-Wave-Me/Z-Uno-Core ... 17_I2CTest
- SHT31, humidity and temperature sensor - will consider
- Arduino TimerOne - Why do you need it? We have h/w timers in Z-Uno, but how do you want to use it?
- SSD1306, 128x64 OLED display - support of this display will be available next week in 2.0.5

Re: What libraries would you want to use with Z-Uno?

Posted: 13 Aug 2016 21:09
by maddam
PoltoS wrote: - SHT31, humidity and temperature sensor - will consider
- Arduino TimerOne - Why do you need it? We have h/w timers in Z-Uno, but how do you want to use it?
You can add whole Sensirion SHTxx family. SHT31 is latest one. SHT will be big bonus as sharp factory calibrated hum and temp sensor. This one I want to use in my z-uno project over DHT.

Timer:
-I did not find in references/examples how to use z-uno internal h/w timers
-timerone can automatically set and control pwm on pin
-timerone can control/set your own interruptions and service routines
If there is similar functionality in z-uno you can skip this one, anyway this one library has no top priority among othes.

Nice MCP and OLED are available, thanks.