Search found 242 matches

by p0lyg0n1
12 Oct 2020 13:44
Forum: Z-Uno
Topic: Veml7700
Replies: 1
Views: 1700

Re: Veml7700

Hi, I didn't try this sensor myself yet(I dont have Veml7700), but lets try to get it work together: 1) Lets test that sensor says "Ack" when you call its address. Use this code to check your i2c bus: /* * I2CScanner * Scans all devices connected to I2C bus. * SCL = PIN #9 of Z-Uno * SDA =...
by p0lyg0n1
15 May 2020 11:25
Forum: Z-Uno
Topic: Z-UNO compatibility issue on Mac OS, boot loader
Replies: 12
Views: 9401

Re: Z-UNO compatibility issue on Mac OS, boot loader

Hi, we have released the next beta with MacOS X Catalina support last night. :!: You have to accept 3d-part software and sdcc (5 different binaries) in your OS X security settings during the first compilation. You can install the last version from "beta" repository (http://z-uno.z-wave.me/...
by p0lyg0n1
08 May 2020 14:00
Forum: Обсуждение на русском / Discussions in Russian
Topic: Z-uno 1-wire
Replies: 7
Views: 5878

Re: Z-uno 1-wire

Здравствуйте! Тут есть несколько советов. 1) по-умолчанию для подобных задач можно использовать только пины с 9-го по 16-ый (PWM4), т.н. s_pin. У Z-Uno реализация шины 1-Wire полностью программная и вы можете создать несколько объектов шины OneWire и объектов датчиков DS18B20 с нужной шиной. 2) Для ...
by p0lyg0n1
08 Apr 2020 15:26
Forum: Z-Uno
Topic: Problem with Adafruit_AMG88xx.h library
Replies: 3
Views: 4274

Re: Problem with Adafruit_AMG88xx.h library

Hi, The main problem is that Adafruit library was written for AVR microprocessors. Z-Uno uses power efficient, but very old factory standard i8051 core. To get library to work with Z-Uno you have to port library according to Z-Uno limitations in stack and inner compiler limitations. Z-Uno has only 1...
by p0lyg0n1
03 Apr 2020 20:45
Forum: Z-Uno
Topic: millis() returns zero
Replies: 8
Views: 8222

Re: millis() returns zero

Hi, guys! Thanks for your reports! ove.nystas my congratulations for you! Great job! Awesome test case! Finally we have found the problem. Anyone can try new version of bootloader. I have attached it here. ove.nystas test sketch output is like this: 10011, 10012, -1 20019, 20020, -1 30012, 30013, -1...
by p0lyg0n1
02 Dec 2019 11:35
Forum: Обсуждение на русском / Discussions in Russian
Topic: Z-Uno +BME280
Replies: 4
Views: 9839

Re: Z-Uno +BME280

Здравствуйте! Ну во 1-ых при обновлении данных необходимо отправить Report на контроллер, чтобы тот узнал новое значение. zunoSendReport(номер_канала); См. справку https://z-uno.z-wave.me/Reference/zunoSendReport/ в Вашем случае это 3,4,5 каналы: добавьте перед delay(10000) в loop код: // ... zunoSe...
by p0lyg0n1
21 Oct 2019 15:36
Forum: Z-Uno
Topic: User sketch not starting at power up
Replies: 2
Views: 3772

Re: User sketch not starting at power up

Hi, I have tried your sketch. For me it works right. You have to add some delay to see the white led is blinking. I have found some things that make work of the sketch unstable or they lead to some unpredictable behavior: 1. It's a bad idea to use Serial for debugging purposes, cause it uses full sp...
by p0lyg0n1
21 Oct 2019 14:34
Forum: Обсуждение на русском / Discussions in Russian
Topic: Удаленная отладка Z-uno
Replies: 4
Views: 5315

Re: Удаленная отладка Z-uno

Здравствуйте, Есть несколько моментов, которые точно нужно учесть: 1. Датчики I2C не могут работать на большой длинне шинных проводов. Это обусловлено тем, что шина для этого не предназначена. Для задач, которые требуют большИх расстояний целесообразно использовать шины поддерживающие манчестерское ...
by p0lyg0n1
21 Oct 2019 11:10
Forum: Z-Uno
Topic: Z-Uno Sensor Binary and Fibaro HC2 not working properly
Replies: 11
Views: 17317

Re: Z-Uno Sensor Binary and Fibaro HC2 not working properly

Hi, Seems you don't setup a multichannel association on Fibaro. You have to setup association destination to something like 1.x (for ex. 1.1) instead of 1. Check the association map on the controller. ZUNO_DISABLE(NO_MULTIBINARY_SWITCH0); this disables only 2 switches in the 0 channel not the sensor...
by p0lyg0n1
03 Oct 2019 14:06
Forum: Z-Uno
Topic: Z-Uno not sending anymore when controller is down for several hours
Replies: 1
Views: 2827

Re: Z-Uno not sending anymore when controller is down for several hours

Hi, It sounds strange. Could you check that device is working when the controller goes down. Check that the green led is blinking. It means that device goes to the event loop continiously. What version of core-files do you use? To undestand what the reason of the problem you can enable logging of sy...