IoT Apps: Intel Edison

Flogo can run almost anywhere. From the largest clouds, to the smallest of devices and everything in between. Take this lab to get yourself familiar with how to develop apps for IoT devices using the Flogo CLI. Let’s look at building for Intel Edison!

What you’ll need

Flogo CLI

This demo makes use of the Flogo CLI. If you don’t have that one running yet, please check out Getting Started with the Flogo CLI

IoT How-to

This demo makes use of the IoT Apps tutorial. If you haven’t done that one yet, this is a great time to do so!

Need help

If you have any questions, feel free to post an issue on GitHub and tag it as a question or chat with the team and community:

Building an app

To build a Flogo application for BeagleBone, you simply use the build command with the appropriate enviroment variables set to compile to Go code for an 386 architecture processor.

On macOS or Linux machines the additional parameters you need to set when building Flogo apps are:

env GOARCH=386 GOOS=linux flogo build -e

On Windows the additional parameters you need to set when building Flogo apps are:

SET GOARCH=386
SET GOOS=linux
flogo build -e