Monitoring Battery Charger data on AWS cloud with an Edge IIoT Gateway
The cleverness of the SAE J1939 CAN Bus protocol makes it a popular deployment in the growing field of battery charging, ensuring that a common language & standardised communication protocol is held across manufacturers.
With the industrially certified nodeG5 gateway you can collect & send CAN J1939 charger data, together with location & other connected sensor data (optionally you can also add a cellular 4G/LTE backhaul for monitoring applications). The gateway organises all the data and sends it to a server or cloud using messaging protocols like MQTT. Integrated AWS, Azure & Ubidots cloud clients reduce the engineering time to set up on these platforms.
Furthermore, users can deploy edge data processing or machine learning inferencing for diverse applications from downstream equipment control to processes which allow ground assets to spend less time communicating with the server or cloud, react more quickly to changes, and operate reliably even in extended offline periods.

Our following tutorial gives a step-by-step example for monitoring battery chargers utilizing CAN Bus J1939 communication protocol on AWS.
Step 1: Wire up the J1939 CAN Bus Battery Charger to the IIoT Gateway.

We will start by connecting the devices together. You will need to refer to the respective user manuals for the pin out configuration of each device. The above diagram shows the signal connection from the CAN port of the Axiomatic battery charger to the CAN Port C of the nodeG5 IoT gateway using a shielded twisted pair cable.
Step 2. Match the baud rates of both devices.
The baud rates for both devices need to match. Since the Axiomatic battery charger communicates using a 29-bit protocol and 250000 bps baud rate, we need to match that on to the nodeG5 gateway.
To do that you need to log into the web configuration menu of the gateway. Then go to the <Port Settings> tab and enter the following settings below.

Once you are done click the 'UPDATE' button & REBOOT the gateway to save your settings.
Step 3. Map out the data parameters you want to collect.
Next, we will map out the individual sets of data that we want to collect from the ECU. Because different makers of CAN devices will utilise different Parameter Group Number (PGN) settings, if we want to be brand agnostic for cost or product feature reasons, we need to find a universal way to detail the instructions to the gateway. On top of that, data formatting requirements are also different between each cloud platform. This adds to the need for a nimble approach.
Without engineering codes from scratch, a simple but flexible method is to map the parameters we want to monitor onto a configurable file known as an 'iotasset' that's read by the gateway. The example below shows how the "Battery Voltage" parameter can be translated from the Axiomatic user manual to our J1939 iotasset.json format template.
We begin by obtaining the below PGN info from the product's user manual.

When we will follow the J1939 iotasset.json format template to configure the instructions for polling "Battery Voltage" to the gateway on a simple program like notepad, we get the following results. I have also added samples for other data such as 'Battery Current' and 'Charger Status' done using the same process.
"CANBUS": [
{
"Key": "BatteryVoltage", #a unique name for this parameter.
"IOTMODE": "1", #store data in the local database.
"CANBUSTYPE": "J1939", #specifies the CAN bus type.
"CANPORT": "canE", #uses the on-board CAN port.
"CANPGN": "FEEE", #replace this with correct PGN for your battery voltage.
"CANSA": "00", #replace this with the correct Source Address of your charger.
"BYTESTART": "1", #starts parsing from the 1st byte of the CAN message.
"BYTECOUNT": "2", #reads 2 bytes for the voltage value.
"DATATYPE": "UINT16HL", #interprets the 2 bytes as a 16-bit unsigned integer (high byte first).
"SCALEMUL": "0.1", #applies a scaling factor of 0.1 (e.g. to convert raw value to volts).
"SCALEADD": "0" #no offset is added.
}
]
}
{
"CANBUS": [
{
"Key": "BatteryCurrent",
"IOTMODE": "1",
"CANBUSTYPE": "J1939",
"CANPORT": "canE",
"CANPGN": "FEF5", #replace this with correct PGN for your battery current.
"CANSA": "00", #replace this with the correct Source Address of your charger.
"BYTESTART": "3",
"BYTECOUNT": "2",
"DATATYPE": "SINT16HL",
"SCALEMUL": “0.05", #applies a scaling factor of 0.05 (e.g. to convert raw value to amps).
"SCALEADD": "0"
}
]
}
{
"CANBUS": [
{
"Key": "ChargerStatus",
"IOTMODE": "1",
"CANBUSTYPE": "J1939",
"CANPORT": "canE",
"CANPGN": "FF00",
"CANSA": "00",
"BYTESTART": "1",
"BYTECOUNT": "1",
"DATATYPE": “UINT8" #Interprets the byte as an 8-bit integer assigned by your application logic.
}
]
}
Now that you have configured your device configuration file, we can update it to your nodeG5 gateway securely over the air. The gateway HTTPS connected web console must be accessible, if you do not have an Internet connection, you can follow the alternative steps here).
Log into the nodeG5 (the default address is 192.168.1.1) and enter in the user name and password. Go to the <Management> tab in the web configuration menu. Enable the SSH option (see below) and click the 'UPDATE' button to save your settings. Then reboot the gateway.

Then log in again, go to the <IOT Hardware> menu to set the CAN bus mode to "J1939 mode" and register the polling configuration as required by the user. Click 'UPDATE' to save your settings.
(Note that all other interfaces like Modbus and BLE can also run concurrently).

Next, click “Upload iotasset.txt” button and in the new window, use the 'CHOOSE FILE' tab to select the above prepared file from your local folder to to send over to nodeG5. After the upload is successful you will need to close the page and log in again for security purpose. The user can also confirm the status of iotasset.txt file upload by clicking on Diagnostics::Check File.

After these settings are updated, REBOOT the gateway. The user can then check the CAN BUS battery charger data collected (Diagnostics::JSON Data) or delete for testing.
Step 4. Connect the collected data to your AWS IoT Cloud Service
Now that the connectivity between the Axiomatic battery charger and the nodeG5 gateway has been set, we will then look at getting the data onto a designated cloud service. We support an open customer software and 3rd party API (e.g. REST API for HTTP, HTTPS and MQTT) integration to connect to a chosen cloud data or dashboard service (or to use for on board data processing).
Direct deployment on Azure, AWS IoT or Ubidots can also be done as these IoT clients have been integrated on the nodeG5 Gateway. For this project, we are going to showcase using AWS IoT (note that an AWS account is required to continue this tutorial).
4A. Create a new AWS IoT Thing
First log into your AWS IoT Management Console and create a Thing:
AWS IoT > Manage > Thing > Create
Next go to:
Secure > Certificates
Then download the 'Certificate' & 'Private Key File'.
Ensure the Certificate is "Active", otherwise activate it under ACTIONS in
Things > Your Certificate > Security

4B. Update your IIoT Gateway
Create a new local folder and name it "AWS".
Save the downloaded certificate files into this folder and rename them as the following:
"certificate.pem.crt"
"private.pem.key"
Next zip the folder (ensure that you zip the entire folder and not just the files inside). Then log into your web console and go to the <Management> tab.
Patch the zipped folder to the gateway using the UPDATE FIRMWARE button.
4C. Create a Security Policy for your Thing
In your AWS IoT Management Console go to:
Secure > Policies > Create

At <Things>, select your new Thing then click on
Security > Certificates > Policies
Under <Actions>, choose to Attach a Policy:

4D. Configure your nodeG5 IIoT Gateway to send data to your AWS Account
Now, you are ready to configure your gateway to send AWS IoT endpoint to feed data to your AWS applications. In the web configuration menu, go to the <IoT Client> tab and configure your AWS client settings according as per your AWS end point and Thing settings. Then REBOOT your gateway.

Next go back to go your AWS IoT console and subscribe to the Topic to "Test" that data is being received.

Congratulations! You have succesfully sent your Modbus or CAN bus data to your AWS IoT endpoint and ready to, for example, push the data to a S3 bucket using a Rule in 'Act > Rules'.
The nodeG5 AWS IoT client side is built using AWS IoT Device SDK for Python and users are free to install, modify our device client codes for enhanced edge capabilities or other required functionalities.
See our guides below for connecting to other supported IoT platforms includes Azure IoT and Ubidots. Here is a sample dashboard from PowerBI.
