Monitor your Bonsai with the help of Arduino Uno

Bonsai trees are not like other plants. There’s no single watering schedule that can be applied to a bonsai and the best way to tell if the bonsai needs water is to touch the soil. Experienced growers know when a tree needs to be watered by observing the foliage or just by the weight of the pot. If you are not used to taking care of this type of tree, Bonsai Watchdog could be the perfect project for you. It runs on Arduino and Genuino Uno and makes it really easy to monitor the moisture level in the soil.

Thomas Baum, created it and shared it some days ago on the Arduino Community on G+ :
Two pencil leads, an Arduino and a 12864 (ST7565) LCD watches out my little bonsai. The filling level shows how often the sapling need to be watered.
source and discription (in german) you can find here:
http://tiny.systems/categorie/lcdProjekt/BonsaiWatchdog.html
January 26th, 2016 at 09:53:04
Really nice idea! Only issue is that the readings will degrade at ~1 month due to electrolysis
January 26th, 2016 at 21:18:05
He used graphite as electrodes.
January 28th, 2016 at 18:19:13
perche’ fa sta roba nel loop ?
————————-
pinMode (HUMIDITY_SENSOR, INPUT); // Moisture measurement
digitalWrite (HUMIDITY_SENSOR, HIGH);
Analog value = read (HUMIDITY_SENSOR);
digitalWrite (HUMIDITY_SENSOR, LOW);
pinMode (HUMIDITY_SENSOR, OUTPUT);
————————