Next step after using S-Soil MTEC-02B sensor in Milestone 2: Outdoor single sensor and saving telemetry data via Fledge software framework we will setup an are going to setup a framework where developers can add new sensors from scratch and build a new software stack to provide secure, private, zero-touch deployments to a subset of Edge Nodes (IoT devices).
We will used RPi4 board for referencewill be used as Edge Node.
Deployments are distributed via completely customised Edge Server and can be deployed locally on developer workstation, in cloud infrastructure or on premises.
Being All components are open sourced and can be reconfigured and customised, interested parties may use any cloud infrastructure which support containerised servers deployments i.e. GCP, AWS, Azure, IBM Cloud, Alibaba Cloud, Digital Ocean, Oracle Cloud, VMware Cloud, Cisco Cloud.
In this case the containerised services software is deployed with Open Horizon to RPi4 board.
<Insert video here>
Goals
- Build OS image with BSP distribution for Edge Node and save it to SD card. Insert SD card with BSP to RPi4 board and start controlling the board remotely.
[~10 minutes] - Run local Edge Server on developer workstation with all needed services for software development and zero touch deployment.
[~3 minutes]
- Connect/solder S-Soil MTEC-02B with USB to RS485 converter and insert into RPi4 board.
- Build a custom stack for S-Soil MTEC-02B to extract realtime data - Total Dissolved Solids (TDS), Temperature, Salinity, Volumetric Water Content (VWC) with python script, send data to Edge Server with Telegraf.
Deploy new stack remotely without touching the board to Edge Node (RPi4 board) from developer workstation.
Edge Server will collect data in InfluxDB and telemetry data will be available to display Grafana dashboard.
[~4 minutes] - Update stack on developer workstation and redeploy stack into the Edge Node remotely.
[~3 minutes]
...
- Raspberry Pi4 model B 4GB+ RAM
- Industrial Soil Moisture & Temperature & EC Sensor MODBUS-RTU RS485 (S-Soil MTEC-02B)
- 16+ GB micro SD Card
- Power supply for Raspberry Pi 4
- SD card reader
- x64 (development workstation)
- USB to RS485 converter (or similar like USB-RS485-WE-1800-BT)
...
In this milestone container images are based on open source components to display, debug and analyse data from Edge Node with connected S-Soil MTEC-02B sensor.
From the software components structure of IoT device there are static BSP image and dynamic services which are deployed remotely to Edge Server and downloaded by Edge Nodes.
Stack services are managed by Edge Server and deployed automatically to device fleet according to business policies rules (deployment by edge node id is presented in this example) after device has been onboarded.
Edge Node should be pre-configured with BSP image, so the device could update itself after the boot and later when new services are uploaded and published.
The stack consist of one or more preconfigured and tested software components which are running in isolated containers on the board and managed by Deployment Agent.
To provide more secure board management none IP ports are exposed from the board outside in production (this is configured when initial BSP image for the board is created).
...
Here is a top view of ecosystem:
Also with added AI services, Edge Node may act as distributed AI node with federated learning capabilities.
Here is how the system components are deployed and updated:
1. Create OS image with BSP installed and create disk image to be used in Edge Node
2. Deploy and run Edge Server
3. Update software stack on the Edge Node by building container images, uploading them to private registry server
(or public registry
...
available via DockerHub, Amazon ECR, Google GCR, Microsoft ACR, etc.)
An Edge Node software stack can be any set of:
- Proprietary/open-source containerised services.
- Integrations with 3rd party PaaS/SaaS services (AWS IoT, GCP IoT Core, Particle, etc.)
- Complex software frameworks (EdgeX, ORRA, Fledge, etc.) with own architecture, services stack, software updates and management tools.
...
Stack can be single or multiple containerised services working together and incorporating designed business logic.
Steps to configure
- Clone SmartAg-foundation repo. And change directory to tools.
- Build BSP image, write to SD card.
...
- Insert 16GB+ SD card in drive and run Edge Node
sudo ./write_bsp_image example-edge-node
- Run Edge Server
./start_local_edgeserver
- Solder sensor and USB converter (described in p.6 from Milestone 2: Outdoor single sensor)
- Create new example
...
- stack. By default new stack will contain a workable solution with telegraf and exec plugin for S-Soil MTEC-02B.
./create_stack ssoil-mtec-02b-single
- Insert sensor to USB port of Edge Node
- Build stack to get retrieve data (Total Dissolved Solids (TDS), Temperature, Volumetric Water Content (VWC)) from S-Soil MTEC-02B, deploy
./build_and_deploy ssoil-mtec-02b-single example-edge-node
- Open Grafana from Edge Server http://localhost:3000/, login, explore and display telemetry data
Extend service with new logic to read soil salinity. Deploy and view new data on a dashboard.
- Connect/solder S-Soil MTEC-02B with USB to RS485 converter as shown below
Insert USB to RS485 into RPi4 board as shown below (do not connect power)
Clone GitHub repository with SmartAg-foundation and change directory to SmartAg-foundation/tools
git clone https://github.com/open-horizon-services/SmartAg-foundation SmartAg-foundation
cd SmartAg-foundation/tools
Download OS template image rename into target_os.img and put it into SmartAg-foundation/tools
Insert 16Gb+ SD card in drive and create/write initial BSP image by running the following command (example-edge-node should be unique Edge Node namefor your system):sudo ./write_bsp_image example-edge-node
Enter SSID name, network password and confirm.
After the BSP is written to disk, eject SD card, insert it into RPi4 and connect power.
After the board is initialised by default it will be running Fledge container from Milestone 2: Outdoor single sensor
Now let's create a custom stack with one containerised service telegraf and exec plugin which runs python script which in turn will read S-Soil MTEC-02B sensor data similar to what we did in fledge plugin in previous milestone.
./create_new_stack ../new_stack
By default new stack will contain a workable solution with telegraf and exec plugin for S-Soil MTEC-02B.
Before deploying a stack onto Edge Node, Edge Server needs to be started locally, to start Edge Server run:
./start_local_edgeserver
This script will register new Edge Node capabilities and run Edge Server containers.
To upload new_stack to the example-edge-node run the command, with Edge Node name (example-edge-node) and a new stack directory (new_stack):
./build_and_deploy example-edge-node ../new_stack
First time it will take few minutes to start.
<Add screenshots of Grafana>Once InfluxDB data source needs to be configured as below:
URL - http://influxdb:8086
Database - telegraf
User - user
Password - password
And press "Save and Test" - Open Explore tab (http://localhost:3000/explore)
You should see new measurement mtec-02b-sensor and fields for it (tds, temperature, vwc) - (Optional) Extend service with new logic to read soil salinity - check how to do it in this part of video https://youtu.be/mCqbzVYJyVs?t=1306
Deploy and view new data on a dashboard (salinity should be available)