Search found 22 matches

by fredfit
08 Jul 2021 12:47
Forum: Z-Uno
Topic: Surpassing a condition from a Jeedom board
Replies: 1
Views: 2120

Re: Surpassing a condition from a Jeedom board

I found myself a solution for point 2 by replacing "valveValue == HIGH" by "valveValue > 0" here: //Valve is opened if moisture <20% and tank is not empty, or forced from Jeedom if ((valueMoisture < 20 && currentLevelState == LOW) || valveValue > 0) { digitalWrite(pinValv...
by fredfit
08 Jul 2021 00:31
Forum: Z-Uno
Topic: Surpassing a condition from a Jeedom board
Replies: 1
Views: 2120

Surpassing a condition from a Jeedom board

Hi all, Here is my code for a watering system that includes: - a moisture sensor - a valve - a water tank with a level sensor #include "Wire.h" #define pinValve 19 #define pinMoisture 4 // Moisture sensor on ADC1 #define pinLevel 12 // Water tank sensor (0 when full) byte valveValue; byte ...
by fredfit
07 Jul 2021 19:31
Forum: Z-Uno
Topic: Limitation in "SENSOR_MULTILEVEL" number ?
Replies: 4
Views: 3225

Re: Limitation in "SENSOR_MULTILEVEL" number ?

Update: I also added a dummy moisture sensor, now I see all my sensors ... including the 2 dummy sensors ! That finally makes a not very clean code but it does the job. I hope it will help those who uses Jeedom domotics system, and that this behaviour with Jeedom will be fixed with the future Z-Uno...
by fredfit
05 Jul 2021 12:10
Forum: Z-Uno
Topic: Limitation in "SENSOR_MULTILEVEL" number ?
Replies: 4
Views: 3225

Re: Limitation in "SENSOR_MULTILEVEL" number ?

Thank you PoltoS ! A little improvement ... but also a regression :( After having added a dummy Voltage Sensor in my code, I can see both of them (49/1/15 and 49/2/15), but only 2 of the 3 moisture sensors (49/3/31 and 49/4/31). Here is my code: ZUNO_SETUP_CHANNELS( ZUNO_SWITCH_BINARY(getterVanne1, ...
by fredfit
01 Jul 2021 12:23
Forum: Z-Uno
Topic: Limitation in "SENSOR_MULTILEVEL" number ?
Replies: 4
Views: 3225

Re: Limitation in "SENSOR_MULTILEVEL" number ?

I tried to come back to 2.1.6 (Board manager of Arduino IDE + Burned bootloader), same issue ... I'm desperate, this bug is blocking me in my project. Please help me ! My bug report: Z-Uno bootloader version: 2.1.6 or 2.1.7 Security: none Frequency: EU Device included: yes Device included securely b...
by fredfit
29 Jun 2021 18:56
Forum: Z-Uno
Topic: Limitation in "SENSOR_MULTILEVEL" number ?
Replies: 4
Views: 3225

Limitation in "SENSOR_MULTILEVEL" number ?

Hi all, I'm facing a strange behaviour with my Z-Uno: I have different types of switches/sensors in my project. If at the ZUNO_SETUP_CHANNELS level, I declare : ZUNO_SENSOR_MULTILEVEL(ZUNO_SENSOR_MULTILEVEL_TYPE_VOLTAGE, SENSOR_MULTILEVEL_SCALE_VOLT, SENSOR_MULTILEVEL_SIZE_FOUR_BYTES, SENSOR_MULTILE...
by fredfit
07 Jun 2021 11:20
Forum: Z-Uno
Topic: Z-Uno Full electronic diagram
Replies: 5
Views: 3526

Re: Z-Uno Full electronic diagram

Ok thanks
Just one last question: do you confirm the SMD size of 0402 ?
by fredfit
06 Jun 2021 09:54
Forum: Z-Uno
Topic: Z-Uno Full electronic diagram
Replies: 5
Views: 3526

Re: Z-Uno Full electronic diagram

Thank you PoltoS.
Very low value for a capacitor. Is it a coupling capacitor between the antenna and the rest of the RF circuit ?
Can I replace it by just a short circuit ? Because it's very very tiny and it would be hard to solder an new one in place.
by fredfit
05 Jun 2021 20:53
Forum: Z-Uno
Topic: Z-Uno Full electronic diagram
Replies: 5
Views: 3526

Z-Uno Full electronic diagram

Hi all,
Is there a full electronic diagram of the Z-Uno available somewhere ?
I'm trying to find the value of C13 which is the very small SMD capacitor close to the antenna.
I unfortunately removed it accidentely while desoldering the antenna and I lost it.
Thanks !
by fredfit
09 Mar 2021 12:47
Forum: Z-Uno
Topic: Version 2.1.7 - WHere are the release notes
Replies: 6
Views: 5598

Re: Version 2.1.7 - WHere are the release notes

Does version 2.1.7 work for you in Arduino IDE 1.8.13? I get compiler errors like Stream_sdcpp_.cpp:16:26:error:unknown type name 'uint32_t' I'm also waiting since november for the release notes of 2.1.7. I didn't notice any issue with 2.1.7 + IDE 1.8.13 except with the FLIRS mode that seems to not...