Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

This is an advanced sample application that demonstrates deploying and running Swim on a network of Raspberry Pis and using configuration to change behavior. This version uses Docker Images for build and deployment to Azure Iot Edge devices.

License

swimos/greenhouse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Swim Greenhouse Demo

Overview

This is an advanced sample application that demonstrates many of the key capabilities enabled by Swim, such as:

  • The ability to deploy and run on edge devices, such as Raspberry Pi’s
  • The ability to distribute an application that shares consistency between nodes
  • The ability to aggregate data on a fabric at many levels
  • The ability to visualize data through a real-time UI

This application is deployed in the Swim office for monitoring our plants and serves as a demonstration of best practices. Therefore, the description of this application will be through a hypothetical greenhouse scenario even though the application could be applied to any use cases involving sensors and/or a network of devices.

Inside the greenhouse, there are a number of Raspberry Pi devices with various roles. These roles are: Plant Monitor, Automated Robot, and Data Aggregator. It’s important to note that all Raspberry Pi devices run the same software with minor configuration changes that define how they act and participate within the greenhouse network. This diagram provides a simple overview of the complete application and configurations.

Demo Application Map

Each device is also running a minimal NodeJS server alongside the Swim Web Agents. Node is used to serve the various status pages used by the web app and as a data bridge from the sensors into Swim. Unlike a traditional web application where all the pages are hosted in a central place, swim web applications can be hosted from each device. This ensures the UI is showing the real time data possible without the latency of being routed through various databases and/or cloud services.

A Plant Monitor device, or PlantMon for short, is a single Raspberry Pi running both Swim and Node. The device's role as a PlantMon is to report the current state of a single plant to which its attached. That Pi is connected to an Arduino via a serial connection which is read by a service in Node. That Arduino has one or more sensors attached to it and simply sends the values of each sensor over the serial connection as a JSON message. Those messages are picked up by the bridge, parsed and sent into Swim. In this case the bridge is in Node but it can also be in Java or Python. The Node bridge can be found here inside the OnSerialData method. Each sensor will automatically get its own Sensor Web Agent inside Swim. That Sensor Web Agent will have Lanes which hold the latest sensor value, a history of that sensor value, Alert Lanes and Alert Threshold Lanes which manage triggering alerts based on each sensor value. See (Sensor)

An Automated Robot, or just Bot for short, is functionally just a raspberry Pi with a SenseHat attachment. Bots sit idle within the greenhouse until an alert is triggered on one or more of of the PlantMon sensors. Alerts are automatically assigned by an Aggregator to the next idle Bot, and that Bot's task is cleared when the alert is cancelled. Like PlantMon, each Bot device runs both Swim and Node. In this case the data is bridged into Swim via Node which uses an third party JavaScript library to read the sensor values from the SensHat and pipe those values into Swim. This happens inside SenseHatService.js which can be found here.

The Aggregator device sits on the network and receives data from every plant and bot on the network. Like PlantMon and Bot, the Aggregator runs both Swim and Node however unlike the other two devices there is not a data bridge running. The role of the Aggregator is to monitor everything configured to report to it and provide a UI which displays the status of all the connected devices. The Aggregator is also responsible for assigning 'tasks' to Bots when one or more PlantMon devices report an alert. When one more alerts are sent from a PlantMon on the network, the aggregator will selected an idle Bot on that same network and assign the alert to that bot. At that point, hypothetically the bot is acting on the alert. In practice the bot can only acknowledge the alert and wait for the sensor value to go back up outside of the threshold range. Acknowledgement is shown by the animated Swim logo on the Bot's SenseHat screen turning from blue to red. Once an alert is cleared by either resolving the issue (such as watering the plant) or by adjusting the alert threshold, the 'task' will be cleared from the Aggregator and the Bot will return to an available status turning the Swim logo back to blue.

Every device on the network has a corresponding webpage which shows the current status of that particular device. As a user you are able to navigate between plants, bots, and the aggregator as if it were a single webapp despite each page being served from each device. The details of how each device acts and connects on the network is defined within the config files found in /config. This allows for every device to run identical software with only minor configuration changes defining how the device behaves.

Getting Started

NOTE: If you perfer using Docker, a Docker version of the app can be found on the feature/docker branch of this repo.

All the code required to deploy and run this application is located in this repository, including bash scripts to get things up and running. You will need to be running in a Unix like environment to be able to run this demo. We use both Debian and Ubuntu but you are not limited to just those distributions. For Windows you can setup an compatible environment inside a VM, or in either the Windows Subsystem for Linux or Cygwin. NodeJS 9.11.1 or greater, Java 9 or greater, Git, and Gradle are all required in order to run the demo. Be sure those are setup before continuing.

To get started:

  1. Clone the repo git clone https://github.com/swimos/greenhouse.git
  2. CD into the new directory cd greenhouse
  3. from the main project directory run:
    • ./bin/buildAll.sh config=raspi2, this will build both Swim and install NodeJS dependencies
    • ./bin/startAll.sh config=raspi2, this will start both Swim and NodeJS
  4. Navigate your browser to the address and port you configured your device to live at and verify that it serves out a page. If so you are setup!

Configuration

Each device gets two configuration files which define how that device acts on the network of devices. One file defines what is needed for the Swim Web Agent and the other holds what is needed for NodeJS. Within the /config folder these files live in /java/ and /node respectively. You can define which set of configuration files to use at startup using the 'config' command line parameter. See the Scripts section below for more information about how to use this parameter. It is important to follow the naming convention shown in the example files when creating configuration files for new devices. An overview of the options within both files is below.

  1. config/java/'deviceName'-app.properties - used by the SWIM service

    • aggregate.host.uri - this should be the websocket address of the device acting as the aggregator on the network
    • device.name - this the 'Bot Name' and is used in a number of places. Importantly the name needs to have 'Agg', 'Plant', or 'Bot'. Those are used in a number of places to decide what type of bot the current device is. The IP address is inside the name is used by the UI for linking between devices this mean the name format must be something like nameOfBot|ip.of.bot with a pipe separating the name and IP.
    • device.host.uri - this is the address of the current device. This is also used for linking devices together on the network.
    • swim.port - port of the swim service. default is 9001
    • sensor.resolution - The time in milliseconds over which we will sample time series data.
  2. config/node/'deviceName'Config.js

    • httpEnabled - this boolean value is used to turn on/off the express http server in NodeJS
    • showDebug - boolean which turns on debug output in the codebase
    • botName - name of the bot used app.properties
    • hostUrl - this is the address of the current device on the network
    • aggregateHost - this is the address of the device which is acting as the aggregator on the network
    • hostPort - this is the port which the http server will serve pages over
    • swimPort - post used by the SWIM service
    • senseHatConfig - SenseHats are the 'Bots' on the network
      • bot - configuration for the senseHat bot
        • enabled - boolean to turn on/off the senseHat Bot
      • service - configuration for senseHat service
        • enabled - boolean to turn on/off the senseHat Service
        • polling - used to define if polling should be used to handle serial data and what interval in milliseconds the polling interval will be
    • plantConfig - configuration which defines the PlantMon
      • bot - configuration for the PlantMon bot
        • enabled - boolean to turn on/off the plant monitor
      • service - configuration for PlantMon service
        • enabled - boolean to turn on/off the senseHat Service
        • arduinoAddress - address of the serial port the arduino is connected on.
        • baud - the baud rate at which to communicate over serial with arduino
        • polling - used to define if polling should be used to handle serial data and what interval in milliseconds the polling interval will be

Running

This example has a number of bash scripts which are used to manage both node and swim services as well as convenience scripts to manage both at the same time. The scripts expect to the run from the base directory of the project on your local machine and may throw errors of run anywhere else. The scripts will handle packaging, publishing, and deploying your local code to one or more remote devices.

In order to simplify using all the various scripts a parent bash script called AppManager is used to build, deploy, and start the app both locally and on remote devices.

The information below is also available on the command line by calling ./bin/appManager.sh help

AppManager Usage

./bin/appManager.sh [command] ["list of raspi IDs"] [remotePassword]

  • [command] - required. See below for the full list of commands
  • ["list of raspi IDs"] - (remote only) list of pis to be managed. Does lookup into iplist in global.sh
  • [remotePassword] - (remote only) ssh password for the device(s)

AppManager Commands

Local App Management Commands

  • start - start up both node and swim
  • startNode - start up just node
  • startSwim - start up just swim
  • stop - stop node, swim, and chromium
  • stopNode - stop just node
  • stopSwim - stop just swim
  • build - build both node (npm) and swim (gradle)
  • buildNode - build node with npm
  • buildSwim - build swim with gradle and untar to dist
  • package - creates a gzip package file to the /dist directory of both node and swim codebase which is then used for remote deployment
  • packageNode - creates a package of just the node side of the app
  • packageSwim - creates a package of just the SWIM side of the app

Remote AppManager Commands

  • testssh - used to verify that you are able to use sshpass to ssh into the remote device
  • publish - Pushes the package file to each device and unpacks it into the runtime folder
  • publishNode - Pushes just the node the package file to each device and unpacks it into the runtime folder
  • publishSwim - Pushes just the swim the package file to each device and unpacks it into the runtime folder
  • all - Does a full package, publish and build to each device. Removes target install and build folders before publish and restarts the device once coplete
  • startRemote - Stops and restarts target device. Cleans out temp files and swim db before start up.
  • stopRemote - Stops target device.
  • updateRemote - Pushes the full package file to each remote device, unpacks over the existing runtime, builds swim again and restarts the device$
  • updateNode - Pushes the just node and python to each remote device, unpacks over the existing runtime and restarts the device$

AppManager Examples

  • Build, package, deploy the app to raspi3, 4, 5 , and 10 followed by restarting each device

    ./bin/appManager.sh all "3 10 4 5 6" MyPassWord

  • Like the 'all' command but does not remove existing files or build node again. Faster then running all.

    ./bin/appManager.sh updateRemote "3 10 4 5 6" MyPassWord

  • Stop and restart raspi3, 4, 5 , and 10

    ./bin/appManager.sh startRemote "3 10 4 5 6" MyPassWord

  • Start up the full app locally

    ./bin/appManager.sh start

  • Build the full app locally

    ./bin/appManager.sh build

  • Build just the swim side of the app locally

    ./bin/appManager.sh buildSwim

Data Bridges

This example provides a number of example data bridges which bring the the sensor data into Swim. Fundamentally all the bridges simply call command lanes on the Swim services to inject data into Swim.

Swim Services

The exact same bundle is deployed to every device. Consequently, every device contains the exact same Swim Service definitions; varying the configuration only affects the Service instantiations. In this project, every service descibed here can also be considered a Swim Web Agent.

  1. SensorService - A physical sensor's digital twin. It exposes both the latest value and a history of values measured by its corresponding sensor. A configurable threshold can be defined within each SensorService, and deviating from it will raise an alert.
  2. DeviceService - A device's digital twin. It exposes the latest value from all sensors attached to the device and contains the logic to communicate with any bots assigned to diagnose issues with these sensors.
  3. BotService - A bot's digital twin. It directly observes SensorServices for alerts, then resolves them via communication with the reporting SensorServices' DeviceServices.
  4. AggregateService - The greenhouse's digital twin. Data-wise, it provides summary statistics across all fields being observed by all devices. Operation-wise, it reports the status of all bots and health of all devices in its greenhouse.

NodeJS Application Structure

The NodeJS server has three parts. First is a simple Express Server to serve out the various webpages which make up the web app. The second part is called 'services' and essentially act as the data bridges into Swim. The third part are called 'bots' and they can act upon data derived from the various Swim Lanes the Swim service provides.

About

This is an advanced sample application that demonstrates deploying and running Swim on a network of Raspberry Pis and using configuration to change behavior. This version uses Docker Images for build and deployment to Azure Iot Edge devices.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published