User Tools

Site Tools


amc2021:groupb:start

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
amc2021:groupb:start [2021/09/07 00:15] – [2.2.6 Server Infrastructure: Home Assistant, Mosquitto, ESPHome, InfluxDB, Grafana] jonas002amc2021:groupb:start [2023/01/05 14:38] (current) – external edit 127.0.0.1
Line 310: Line 310:
 Changing Enhanced tracking protection from strict to standard in firefox can solve the problem but using Google Chrome or a chromium based browser might allow the site to load.\\  Changing Enhanced tracking protection from strict to standard in firefox can solve the problem but using Google Chrome or a chromium based browser might allow the site to load.\\ 
  
-This is the configuration using Mosquitto MQTT broker, but we want to use ESPHome instead: +Open InfluxDB dashboard from the sidecard and create a new database named "farm"\\  
-<code> +{{:amc2021:groupb:2021-08-16-02-26-55.png?direct&400|}}\\ 
-sensor + 
-- platformmqtt +Allow the farmer user full acess to InfluxDB by typing in username and password and give all permissions\\  
-      state_topic'plant1/temperature' +{{:amc2021:groupb:2021-08-16-02-27-53.png?direct&400|}}\\  
-      name: ''Plant 1 Temperature” + 
-      unit_of_measurement: '°C' +Install Grafana as done with InfluxDB from the Add-on store.\\  
-influxdb: +Open Grafana dashboard and add the newly added InfluxDB "farm" as new source.\\  
-  hostlocalhost +{{:amc2021:groupb:2021-08-16-02-48-14.png?direct&400|}}\\  
-  port8086 +Input all necessary infos into the text fields\\   
-  database: farm +{{:amc2021:groupb:2021-08-16-02-54-51.png?direct&400|}}\\  
-  usernamefarmer +{{:amc2021:groupb:2021-08-16-02-55-19.png?direct&400|}}\\ 
-  passwordfarmerpassword +
-  max_retries3 +
-  default_measurement: state +
-  include: +
-     entities: +
-        sensor.Plant_1_Temperature +
-</code>+
  
 **ESPHome** **ESPHome**
 https://esphome.io/ https://esphome.io/
-https://github.com/esphome/ESPHome-Flasher+Install from Add-On store and start it like done with the other two applications.\\  
 +Open ESPHome from the sidecard and create a new ESPHome Node\\  
 +Enter Wifi SSID and password and chose ESP32 as platform\\  
 +{{:amc2021:groupb:2021-08-18-04-35-49.png?direct&400|}}\\
  
 +The basic configuration looks like this:\\ 
 +{{:amc2021:groupb:2021-08-18-04-37-27.png?direct&400|}}\\ 
  
-AlternativelyBuilding Arch Package https://aur.archlinux.org/packages/esphome-flasher+Click install and chose manual download\\  
 +{{:amc2021:groupb:2021-08-18-04-37-48.png?direct&400|}}\\ 
  
-https://esphome.io/#devices\\  +Let ESPHome compile the firmware and save it when finished\\  
-https://www.emadashi.com/2021/01/m5-atom-lite-home-assistant-esphome-and-capacitive-soil-sensor/\\ +{{:amc2021:groupb:2021-08-18-04-40-00.png?direct&400|}} 
 + 
 +A installation of ESPHome Flasher is required to flash the firmware to the ESP32. 
 +The ESP32 should be connected via USB. 
 + 
 +The software and install can be found here: https://github.com/esphome/ESPHome-Flasher 
 + 
 +Alternatively the arch package can be built: https://aur.archlinux.org/packages/esphome-flasher 
 + 
 +Run in terminal: 
 +<code> sudo esphomeflasher</code> 
 +Chose the binary file / firmware and click Flash ESP\\  
 +{{:amc2021:groupb:2021-08-18-05-04-21.png?direct&400|}}\\  
 + 
 +When the process was sucessfull, the ESP32 will connect to the wifi and the ESPHome integration and will show as online. From there on easy OverTheAir updates can be sent to this node.\\  
 +{{:amc2021:groupb:2021-08-18-05-07-25.png?direct&400|}}\\  
 + 
 + 
 +The devices and protocols that can be connected can be found documented here: https://esphome.io/#devices\\ 
  
-Measured voltage levels from Capacitive Soil Moisture Sensor: 
-  * 3.25V when dry in air 
-  * 1.45V when wet in a glass of water 
-{{:amc2021:groupb:img-20210819-wa0000.jpg?direct&400|}}\\  
-{{ :amc2021:groupb:vid-20210906-wa0016.mp4 |}}\\  
 To calibrate the sensor, this page is helpful: https://esphome.io/components/sensor/index.html#sensor-filters\\  To calibrate the sensor, this page is helpful: https://esphome.io/components/sensor/index.html#sensor-filters\\ 
  
Line 396: Line 408:
 </code> </code>
  
-Home Assistant configuration.yaml addidtion to store the HA sensor values in the influxDB:+Measured voltage levels from Capacitive Soil Moisture Sensor: 
 +  * 3.25V when dry in air 
 +  * 1.46V when wet in a glass of water 
 +Log output in ESPHome:\\  
 +{{:amc2021:groupb:img-20210819-wa0000.jpg?direct&400|}}\\  
 + 
 +After sucessfull OTA install the node should appear as a new device found in the Home Assistant Integrations.\\   
 +{{:amc2021:groupb:2021-08-19-00-17-43.png?direct&400|}}\\  
 +It can be added and will automatically be shown in the Home Assistant Dashboard / lovelace\\ 
 +{{:amc2021:groupb:2021-08-19-02-08-49.png?direct&400|}}\\  
 + 
 +Soil moisture sensor in a glass of water and removing it: 
 +{{ :amc2021:groupb:vid-20210906-wa0016.mp4 |}}\\  
 +{{:amc2021:groupb:20210819_004505.jpg?direct&400|}}\\  
 + 
 +Install the File Editor Add-On to edit Home Assistant's configuration.yaml\\ 
 +Home Assistant configuration.yaml addidtion to store the HA sensor values in the influxDB:\\ 
 <code> <code>
 influxdb: influxdb:
Line 411: Line 440:
 </code> </code>
  
 +Afterwards the recorded values can be observed in the grafana dashboard displaying the graph for soil moisture.\\ 
 +{{:amc2021:groupb:img-20210819-wa0011.jpg?direct&400|}}
  
 ==== 4. Discussion ==== ==== 4. Discussion ====
 The system is not finalized and needs to expanded to work independantly of human input or observation. The system is not finalized and needs to expanded to work independantly of human input or observation.
 +The relay module is not added to ESPHome yet, but integration is simple.
 +The Gafana plot can be added to the Home Assistant dashboard for an easier overview of the current and past soil moisture values.
 The automations and deciscion making algorithms need to be refined and expanded to ensure proper working autonomous farm operation. The automations and deciscion making algorithms need to be refined and expanded to ensure proper working autonomous farm operation.
 There are already prebuilt systems for farming management or IoT cloud but building our own system from freely available software has given many insights on how the IoT infrastructure works and how to connect multiple devices to a central instance.\\  There are already prebuilt systems for farming management or IoT cloud but building our own system from freely available software has given many insights on how the IoT infrastructure works and how to connect multiple devices to a central instance.\\ 
amc2021/groupb/start.1630966506.txt.gz · Last modified: 2023/01/05 14:38 (external edit)