The sys admin's daily grind: Mi Flora sensors

Salad Grower

Article from Issue 225/2019
Author(s):

Columnist Charly Kühnast recently attached Mi Flora humidity sensors to his potted plants. At first, they only transmitted junk on Bluetooth, but armed with the right tools and a Rasp Pi, Charly now reaps a rich harvest of data.

A long time ago, I wrote about my little Pomodo Pi project [1] in this magazine. It involved me monitoring my tomato plant's soil humidity and watering the plants when there was a risk of them drying out by automatically opening a solenoid valve when the humidity dropped below a certain value. The Vegetronix sensors I still use for this are high quality and durable, but, unfortunately, they need an extra A/D converter and wiring them involved some tinkering.

Meanwhile, I have bought some humidity Mi Flora plant sensors (Figure 1). Their manufacturer, Xiaomi, envisages sending the data to a smartphone app, but I never bothered installing it; instead I pick up the data directly via Bluetooth.

Figure 1: The Mi Flora sensor, which uses Bluetooth, is a spin-off product from the Chinese smartphone gadget market.

I run the whole thing on a Raspberry Pi, but of course any Linux PC equipped with Bluetooth hardware will do. Software-wise you need the bluez, python3, and python-pexpect packages, which are quickly installed.

Recording the Weather with Bluetooth

The next step is to scan the environment for Bluetooth transmitters. This can usually be done with the command

sudo hcitool scan

but since the sensor is capable of low-energy transmission, I did the scan by typing:

sudo hcitool lescan

The result was a list of MAC addresses and the short names of nearby devices that can speak Bluetooth Low Energy. Hey presto, one of them was my sensor:

[...]
C4:7C:8D:6A:5E:17 Flower care

Now I have the MAC address and want to see if the sensor is sending any data:

sudo gatttool --device=C4:7C:8D:6A:5E:17--char-read -a 0x35

The feedback doesn't need to mean anything to me at first glance:

Characteristic value/descriptor: aa bb cc dd ee ff 99 88 77 66 00 00 0000 00 00 00

The important thing is that there is a response at all, because on GitHub there is a small tool that can interpret the data from the sensor. I cloned it to my current directory, as follows:

git clone https://github.com/open-homeautomation/miflora.git

The package contains a small Python script by the name of demo.py, which reads and displays different measured values from the sensor. Now let's run it:

python3 /home/pi/miflora/demo.py--backend gatttool pollC4:7C:8D:6A:5E:17

Voila! The output looks good:

Getting data from Mi Flora
FW: 3.2.1
Name: Flower care
Temperature: 23.0°C
Moisture: 40
Light: 193
Conductivity: 247
Battery: 100

The humidity is given as a percentage and the luminous intensity in lux. The Conductivity is shown in microsiemens – it indirectly says something about the nutrient content of the soil.

That's the full extent of my electronic green thumb (at the moment, Figure 2), and I'm already looking forward to the grand opening of my salad bar.

Figure 2: 24 hours in the life of a potted plant under Charly's care.

Infos

  1. "Pomodo Pi" by Charly Kühnast, Linux Magazine, issue 177, August 2015, http://www.linux-magazine.com/Issues/2015/177/Charly-s-Column-PomodoPi/(language)/eng-US

The Author

Charly Kühnast manages Unix systems in a data center in the Lower Rhine region of Germany. His responsibilities include ensuring the security and availability of firewalls and the DMZ.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Charly's Column: PomodoPi

    Charly starts the tomato and dill season aboveground with a traffic light and underground with a soaker hose, along with assistance from two gardeners and the ubiquitous Raspberry Pi board.

  • Automated Irrigation

    An automated watering system comprising a Raspberry Pi Zero W, an analog-to-digital converter, and an inexpensive irrigation kit can help keep your potted plants from dying of thirst.

  • Charly's Column: Weather Page

    To find out what the weather is like, sys admin columnist Charly Kühnast no longer needs to go outdoors get wet, blown away, frozen to death, or sunburned.

  • Charly's Column – Doorbell Pi

    When Charly puts on his headphones at home, he often fails to hear the doorbell. So, he dreamed up a solution with a Raspberry Pi Zero, a noise detector, and a power outlet with a LAN connection.

  • Instrumented Garden

    Place long-range wireless sensors in a garden and keep track of ambient conditions with gauges and time-based graphs.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News