Getting Started : FX30

What You'll learn

In this tutorial, we'll use Octave to:

  • observe the value of the Analog Input available on the power connector of the FX30 used as a sensor value;
  • generate repeated events for these sensor values;
  • forward the data to an external cloud service (webhook);
  • write an event handler that executes at the edge to extract the event values;
  • set the color of the user LED on an FX30.

Prerequisites

Before you start, you will need:

  • An FX30 with a pre-configured WP7702 2G/LTE-M module running Octave edge software and Sierra Wireless SIM card. If you don't have one yet, you can order one from Sierra Wireless' online store. You can also contact us.

1. Set up and Verify Communication

Follow the steps below to run your FX30 and verify that it is communicating with Octave:

  1. Attach the power cable to the FX30's power connector:
116
  1. Connect the cellular antenna:
652

📘

Note

For additional information, you can find the FX30 and FX30S user guides here.

  1. Power on the FX30, the Power LED color will be RED. Now you will have to activate the device on Octave before it can communicate.
  2. Sign up for an account to get access to the Octave web UI, API, and documentation.
  3. Open the Octave user interface in a browser on your development PC.
1327
  1. Activate your FX30 by entering the Serial Number (S/N) and IMEI printed on the side of the FX30, and enter a name you will use later to identify it on Octave.

📘

Note

The device name cannot be changed afterwards.

  1. Enter your billing information when prompted. For more information see Viewing and Managing Billing. It takes a few minutes to provision the device on the network, so make sure you keep the FX30 powered up during the process.

📘

Note

You won't be charged for the first three months of usage.

  1. As soon as the FX30 is activated it will communicate with Octave. You can check the Last seen field in the Device Details section, which indicates that the device reported within a few seconds (e.g., Less than 20 seconds ago).
1662

📘

Verifying Connectivity to the Cloud

Developer Mode is enabled by default on FX30 devices running firmware versions below 3.3.0. In 3.3.0 and above, Developer Mode is disabled by default.

In Developer Mode, the FX30 is always connected to the platform and any change in the cloud will be applied on the device within a few seconds.

If your device does not show that Developer Mode is enabled, reboot your device and enable the Developer Mode from the UI.

Before we go further, check the Last Seen date on the device details page of the web UI as shown above, and then check the Synchronized and Developer Mode statuses by clicking on the device icon as shown below.

If you have trouble connecting your device, you can double check that the Power LED is solid amber, the cellular antenna is correctly plugged in, and you are in an area with some cellular coverage. For additional assistance, contact Octave support.

608
  1. (Optional) Update the device's firmware to ensure you are on the latest version. You can either update it locally using these instructions, or deploy it to the device from Octave over the air.
1396

2. Commanding Resources

The FX30 has a user LED which is available for user applications. This LED is actually a combination of a green and a Red LED providing possibly three different colors: red, green, or amber.

Green is obtained by configuring the Green LED on and Red LED off.
Red is obtained by configuring Green LED off and Red LED on.
Amber is obtained by configuring Green LED on and Red LED on.

In Octave the Green and Red LEDs are managed by the GPIO service, as output pins of the FX30.
The GPIO service, once configured will represent them as Resources , so we can act on them.

Let's see how we can use Octave to control this.

  1. Navigate to Build > Device > Services
  2. Locate GPIO service and click Configure.
  3. In the Pin name enter LED_USR, select LED_USR_GRN, choose a name for the Resource (e.g., green). Enter the name into Resource (e.g., /io/green).
  4. Click on Add; the configuration is sent to the device, so it will provide a new Resource to control the green user LED.
  5. In Pin name, enter LED_USR, select LED_USR_RED, and choose a name for the Resource (e.g., red). Enter the name into Resource (e.g., /io/red).
  6. Click on Add.
  7. Navigate to Build > Device > Resources.
  8. Locate the io Resource, you will see the two resources created for the user LED.
1517

📘

Note

The logic of LED signals is inverted.

To switch on the LED you must set the Resource to false. Set the Resource value to true to turn it off.

LED Resources each have a /value appended to their names to indicate that their values can be configured. On the Resources screen, the Configured value column can be used to manually toggle the LEDs' boolean values to control their on/off states used at boot time.

Follow the steps below to change the color of the user LED to red:

  1. Click on the Configured value for green/value and set it to true.
  2. Click on the Configured value for red/value and set it to false.
  3. Apply the change. After a few seconds the user LED on the device should now display as red.

You can try to switch values to set the user LED to green or amber.

👍

Congrats !

You programmed your device from the Cloud.

3. Configuring Sensor Resources

Now we will observe the value of the Analog Input available on the power connector of the FX30 used as sensor value, Pin 5 (Green) of the connector described here.

Follow the steps below to enable the sensor and configure the frequency at which the input value will be polled by Octave:

  1. Navigate to the Build > Device > Services page
  2. Select the GPIO service
  3. In the Pïn name, enter EXT to filter the GPIO available on the rear port, enable Analog and Input to filter the analog input pin. Select the Pin EXT_IO2_AI
1286
  1. Choose a name for the Resource: sensor and click Add to save it.
1101
  1. Navigate to the Build > Device > Resources page and locate the io/sensor Resource.
  2. Locate the Resource's enable property and set it to true. Note the "M" icon to the right of the property's name, which indicates that the property must be configured to use it.
  3. Locate the Resource's period property. Set the value for Period to 4 (for four seconds). This controls how often the sensor's value will be polled by Octave, and in turn, how often Events corresponding to the sensor's reading will flow through Octave.
  4. Click Apply to save the change and send the new configuration to the device.
1513

After a few seconds you'll see updates to the reported value and timestamp.

1270

📘

Developer Mode

You see this update on the Resources screen because the device is in Developer Mode. Remember, in Developer Mode the device periodically updates all of it's last-known values for every Resource, regardless of whether if it is set to be observed or not.

4. Prepare an Observation for a Resource

In order to do something with the values being polled every 4 seconds from the sensor, we need to create an Observation. An Observation is a pipe through which Events flow from a Resource to various targets such as another Resource, to the cloud immediately (Cloud Stream), stored on the device and forwarded with other events at a given period (Store and Forward), or a script running on the device (i.e., an Edge Action):

981

Follow the steps below to create an Observation on the sensor Resource. This will be used to observe sensor readings from the Resource and send them immediately to the Cloud. Each new reading will be sent to as an Event (JSON document) in a Stream named according to the Observation:

  1. Navigate to Build > Device > Observations.
  2. Click Add Observation.
  3. (Optional) Give the Observation a descriptive name by clicking on the edit icon next to Observations near the top of the window.
  4. Click the Observed resource drop down and select /io/sensor/value.
  5. Set Send events to to Cloud Stream.
  6. Click Save.

You can view the new Observation created in the list.

Now you can navigate to Build > Device > Streams and check that a new stream was created in the cloud for that device:

1279

📘

Note

You can change the value reported by the FX30 by connecting the Green wire to the Black and Red.

You can click on the Stream to inspect the Events received from the FX30.

When new events arrive in the cloud from the device, Octave stores them in a Stream and adds additional meta-data. Note that both the time at the edge (generatedDate) , as well as the time received in the cloud (creationDate) are stored. Having both of these times available for each event is important when we try more sophisticated data orchestration strategies.

1102 1101

📘

Tools to Inspect Streams

You can inspect Events in Streams using filters on any element and graph numerical data.
An example is to visualize the sensor readings above 50 from 9 AM today:

1104

5. Sending Data Periodically

While some data benefits from being sent to the cloud instantly, there is a cost for choosing to do so. Firstly, every time we start and stop the cellular data session, power is consumed. Secondly, encapsulating each reading for transmission individually causes more data to be sent over the air. This is reflected in pricing.

In order to optimize our power and bandwidth consumption, we can chose to have our readings stored and forwarded on a periodic basis. The Cloud Interface service embedded in the device provides us with a buffer for Events we wish to store, and allows us to dynamically configure how often that buffer is sent to the cloud.

It is important to note that you are configuring the maximum time between transmissions. For example, if the store and forward buffer is set for 120 seconds and an "immediate" event is generated 30 seconds after the last transmission, the contents of the buffer will be sent with the "immediate" event, and the 120 second timer reset.

The /cloudInterface/store_forward Resource controls that maximum time between transmissions.

1271

For more details, check out our example here.

6. Forward Data to a Cloud Service

As we have seen in the previous steps, device Events are organized into entities called "Streams" represented by a single path (e.g., /company_xxx/devices/device_yyy/sensor_2_cloud).

On Octave, Stream Events can be processed by Cloud Actions. A Cloud Action is a script written in Javascript and is triggered when new Events are written in a Stream. The Cloud Action takes an Event as input and can produce zero or more events in any pre-defined stream while also accessing data from other Streams and executing REST requests.

The following Cloud Action takes the events coming from the sensor, adds the device name and timestamp, and forwards the event via a webHook to a REST endpoint.

In the following example, we use https://webhook.site to represent a cloud service receiving data from Octave:

  1. Navigate with your Web browser to https://webhook.site.
  2. Copy the URL of the webhook they have generated for you.
814
  1. In Octave, navigate to Cloud > Cloud Action.
  2. Click Add Cloud Action.
  3. In the form, choose the input stream containing Events from a sensor (e.g., /company_xxx/devices/device_yyy/sensor_to_cloud)
  4. Paste the following code and change the webhook site url with the one you received in Step 2.
function(event) {
  var data = event.elems;
  var deviceId = event.path.split("/")[3];
  var company = event.path.split("/")[1];
  
  // options is not used here, but in most real Cloud services implementation, there are authentication headers ...
  var options = {
    'Content-Type': 'application/json',
  };

  var body = JSON.stringify({
    "event_received": data,
    "deviceId": deviceId,
    "company": company
  });

  // Post the data to the test cloud service (dump)
  var resultPost = Octave.Http.post("https://webhook.site/YOUR_ID/post", options, body);
  // console log to view server reply: you can see logs using Simulate 
  console.log(resultPost);
}
  1. Save.
  2. Check that every 4 seconds, readings are sent to the cloud service webhook
1362

👍

Integrate with the Cloud Service you are Using

Webhook.site is used in this guide to give an example. You can adapt the Cloud Action to format the data and forward it to the cloud service as required by your application.

7. Processing Data in an Edge Action

Going one step further, we can use an Edge Action to process data locally, avoiding the round trip to the Cloud and being more efficient.

In the following example we create an Observation for sending sensor values to an Edge Action. The Edge Action turns on FX30's user LED from red, amber to green depending on the value.

First create the Observation and send it to the Action Runner.

Follow the steps below to create an Observation on the /io/sensor/value Resource. This will be used to observe sensor readings from the Resource and send them to an Edge Action as Events. An Edge Action is an Event handler that runs on the device to perform some action on an Event:

  1. In Octave, navigate to Build > Device > Observations.
  2. Click Add Observation.
  3. (Optional) Give the Observation a descriptive name by clicking on the edit icon next to Observations near the top of the window.
  4. Click the Observed resource drop down and select /io/sensor/value.
  5. Enter a descriptive Observation name to uniquely identify the Observation.
  6. Set Send events to to Edge Action. You will implement an Edge Action in the next section that will extract the sensor value and turn on/off the user LED.
  7. Click Save.

An Edge Action is a powerful mechanism for handling event data on the device (hence the name Edge Action), and routing it to other targets.

Follow the steps below to create an Edge Action that handles the sensor event routed through the Observable, and turns on FX30's user LED from red, amber to green depending on the actual value read:

  1. Navigate to Build > Device > Edge Actions.
  2. Click Add Edge Action.
  3. Click on Source Observation and select the Observation created in the previous section.
  4. Enter a descriptive Edge Action name to uniquely identify the Edge Action.
  5. Click on the Documentation tab. Octave provides a number of example scripts that you can use as a starting point.
  6. Copy and paste the code into the Code section.
function(event){
  var sensorReading = event.value;
  var isGreen=false;
  var isRed=false;

  if (sensorReading > 5000) { isGreen = true; isRed = false; } else
  if (sensorReading > 500) { isGreen = true; isRed = true; }
  else { isGreen = false; isRed = true; }

  return { "dh://io/green/value": [!isGreen],"dh://io/red/value":[!isRed] }
}
  1. Click Save.
  2. Wait for the four-second Resource polling period to elapse and then view the user LED on the FX30, ensuring it changes color based on the value read on the ADC.

8. Next steps

Now that you have set up communications between your FX30 and Octave you are ready to move on to the following topics for setting up IO between the FX30, your asset(s), and Octave: