Search found 22 matches

by Baylos
Mon Jan 04, 2021 5:21 pm
Forum: Home Assistant Gardening
Topic: Hydropronic Farming: Water TDS, PH level hassio
Replies: 9
Views: 3830

Re: Hydropronic Farming: Water TDS, PH level hassio

Hi, my current code is below. They're still a working area in it! Especially the code in the field void onConnectionEstablished. I faced later that Arduino saves the code every time I compile it, that why there some changes from last time to it. What I like to do later on is to move calibration (thi...
by Baylos
Sun Jan 03, 2021 10:00 pm
Forum: Home Assistant Gardening
Topic: SEN0193 + ESP32
Replies: 13
Views: 2214

Re: SEN0193 + ESP32

Hi,

I like sensors where the electronics are encapsulated. I remember to this here
https://pino-tech.eu/product/soilwatch-10/

It is expensive, but looks reliable.


Greetings
by Baylos
Sun Jan 03, 2021 6:16 pm
Forum: Home Assistant Gardening
Topic: Hydropronic Farming: Water TDS, PH level hassio
Replies: 9
Views: 3830

Re: Hydropronic Farming: Water TDS, PH level hassio

Hi Barcardi, for the wiring of ESP32 with ADC11x5, I found this youtube video useful: https://www.youtube.com/watch?v=XxUMc1jnI9U&t=122s . I use DFRobot Probe and the following library helped me get it done. https://github.com/GreenPonik/DFRobot_ESP_PH_WITH_ADC_BY_GREENPONIK . (I use SEN0169.) I had...
by Baylos
Sat Jan 02, 2021 4:07 pm
Forum: Home Assistant Gardening
Topic: Creating An Automation For Dosing Pumps
Replies: 5
Views: 1900

Re: Creating An Automation For Dosing Pumps

Dears,

Thanks a lot to all of you. Only with your information, I was able to build my control box.

I purchase Adafriut peristaltic pump (1150). I also had to adjust the value to 1300. I wait for the final parts of my housing and assembly of everything once got it.

Greetings
by Baylos
Tue Dec 22, 2020 10:11 pm
Forum: Home Assistant Gardening
Topic: lovelace mini graph card
Replies: 3
Views: 5579

lovelace mini graph card

Hi, I was searching for a way for a graphical showing of my ph value. As Lovelace was not offering so many options I searched and found a mini graph card addon. It is from HACS. As I found nothing on my search I like to share it herewith to you. I set it up and now my card in Lovelace looks like thi...
by Baylos
Sun Dec 20, 2020 6:29 pm
Forum: Home Assistant Gardening
Topic: Hydropronic Farming: Water TDS, PH level hassio
Replies: 9
Views: 3830

Re: Hydropronic Farming: Water TDS, PH level hassio

Hey Barcardi,

I would assume the resolution of the ADC from the ESP32 is not high enough. You can give a separate ADC a try. I use ads1115 and it works with DFrobot SEN0169 and ESP32. Also, I have a temperature sensor on it too, it is important for calculating the correct ph.

Greetings

B
by Baylos
Tue Dec 15, 2020 8:20 pm
Forum: Home Assistant Gardening
Topic: ESP32 PH & TDS
Replies: 7
Views: 1327

Re: ESP32 PH & TDS

Hi, without any detail, it is difficult to provide you an answer. At least what kind of code you use and what you have tried so far would be nice to know. I use ESP32 with SEN0169. There are some examples at GitHub. I used greenponik together with additional ADC. I posted my code here: https://ledga...
by Baylos
Sun Dec 13, 2020 3:00 pm
Forum: Home Assistant Gardening
Topic: Cheaper alternative to Atlas Scientific?
Replies: 36
Views: 17337

Re: Cheaper alternative to Atlas Scientific?

Hi, Thanks for the post above. This was helping me to understand the System interactions. I was playing last week a bit around. I found "mysensor" and this was very interesting to me. But not was I searching for. My last programming was BASIC. After getting some understanding of C I change the code....
by Baylos
Mon Nov 16, 2020 9:55 pm
Forum: Home Assistant Gardening
Topic: Cheaper alternative to Atlas Scientific?
Replies: 36
Views: 17337

Re: Cheaper alternative to Atlas Scientific?

Thanks a lot!

I was experimenting with some code, so step by step.

I will try next weekend.


Best Regards

B
by Baylos
Sun Nov 15, 2020 10:24 pm
Forum: Home Assistant Gardening
Topic: Cheaper alternative to Atlas Scientific?
Replies: 36
Views: 17337

Re: Cheaper alternative to Atlas Scientific?

Hello, I set up an ESP32 with the ADS1115, PH, and Temperature probe. Works find and calibration too. I used the greenponik code on Github. #include <Arduino.h> #include "DFRobot_ESP_PH_WITH_ADC.h" #include "OneWire.h" #include "DallasTemperature.h" #include "Adafruit_ADS1015.h" #include "EEPROM.h" ...