BRX Do-More PLC HTTP JSON Instructions

We will now look at the BRX Do-More HTTP JSON instructions in the PLC. One of the features of the BRX Do-More Series PLC is the ability to expand its capability to fit your application. Software and hardware changes are ongoing so the PLC can grow with your needs. Communication is something that the BRX Do-More PLC can do very well. As part of the internet of things (IoT), the BRX Do-More will share and exchange data. You can also refer to this as the industrial internet of things. This will suit several industrial applications.
BRX Do-More PLC HTTP JSON Instructions
The Do-more Updates Release 2.5.2 on April 22, 2019, has introduced new instructions. Here are the instructions that we will be using:
HTTPCMD – HTTP Request / Response with Server (BRX only) Do-More
JSONPARSE – Parse JSON Text (BRX only) Do-More
We will be using these instructions to read the weather conditions from a website. Let’s get started.


Previously in this BRX series PLC, we have discussed:
System HardwareVideo
Unboxing – Video
Installing the SoftwareVideo
Establishing CommunicationVideo
Firmware Update – Video
Numbering Systems and AddressingVideo
First ProgramVideo
Monitoring and Testing the ProgramVideo
Online Editing and Debug ModeVideo
TimersVideo
CountersVideo
High-Speed IOVideo
Compare InstructionsVideo
Math InstructionsVideo
Program ControlVideo
Shifting InstructionsVideo
Drum InstructionVideo
Serial Communication – Modbus RTU to Solo Process Temperature ControllerVideo
Data LoggingVideo
Email – Text SMS Messaging GmailVideo
Secure Email Communication Video
AdvancedHMI Communication – Modbus TCPVideo
Analog IO – System ConfigurationVideo

See the video below to watch how easy it is to retrieve JSON information from a website using the HTTPCMD and JSONPARSE instructions in our BRX Series PLC. (Do-More Designer Simulator)

Weather Data – BRX Do-More JSON Instructions

We will be using the Open Weather Map website to get the current weather information in Atlanta, USA.
BRX Do-More PLC HTTP JSON Instructions
The Open Weather Map Documentation will be shown on the website for the JSON format that we will be using.
BRX Do-More PLC HTTP JSON Instructions

We are currently using a sample from the website but you can sign up to use this information free of charge for a certain number of calls.
Here is the URL we will be using to get our current weather in Atlanta in imperial units.
BRX Do-More PLC HTTP JSON Instructions
TCP Connection – openweathermap.org
HTTP Request – /data/2.5/weather?q=Atlanta,us&units=imperial&appid=b6907d289e10d714a6e88b30761fae22
Note: The application identification (appid) will be assigned to you when you register on the website.

Weather Format – JSON 

Our URL above responded with the following JSON formatted data.{“coord”:{“lon”:-84.39,”lat”:33.75},”weather”:[{“id”:701,”main”:”Mist”,”description”:”mist”,”icon”:”50d”}],”base”:”stations”,”main”:{“temp”:68.16,”pressure”:1018,”humidity”:73,”temp_min”:64.4,”temp_max”:72},”visibility”:16093,”wind”:{“speed”:4.7,”deg”:260},”clouds”:{“all”:40},”dt”:1558353930,”sys”:{“type”:1,”id”:3335,”message”:0.0097,”country”:”US”,”sunrise”:1558348417,”sunset”:1558398889},”id”:4180439,”name”:”Atlanta”,”cod”:200}

JSON stands for JavaScript Object Notation. It is a method of storing and exchanging data. You can see that this text based data usually generated by JavaScript is easily understood. Example: Our humidity is 73%.
More information on JSON can be found at w3schools.

To make the JSON data even easier to read, an online parser can be used. Copy our data into the INPUT and we can see the OUTPUT.
BRX Do-More PLC HTTP JSON Instructions
Here is the resulting output from the parser.

{
• “coord” : -{                                     0
o “lon” : -84.39,
o “lat” : 33.75
},
• “weather” : -[                              1
o -{
 “id” : 701,
 “main” : Mist,
 “description” : mist,
 “icon” : 50d
}
• ],
• “base” : stations,                      2
• “main” : -{                                     3
o “temp” : 68.16,
o “pressure” : 1018,
o “humidity” : 73,
o “temp_min” : 64.4,
o “temp_max” : 72
},
• “visibility” : 16093,                 4
• “wind” : -{                                      5
o “speed” : 4.7,
o “deg” : 260
},
• “clouds” : -{                                   6
o “all” : 40
},
• “dt” : 1558353930,                 7
• “sys” : -{                                          8
o “type” : 1,
o “id” : 3335,
o “message” : 0.0097,
o “country” : US,
o “sunrise” : 1558348417,
o “sunset” : 1558398889
},
• “id” : 4180439,                         9
• “name” : Atlanta,                     10
• “cod” : 200                                  11
}

Note: I have added the Field Index Number to the JSON for reference. This will assist us in our PLC program.


Size of the Returned Data – JSON 

Our returned size of the data is good to know when we start our PLC program. We can copy our result from the URL to bytesizematters. This will display the number of bytes that we will be using.
BRX Do-More PLC HTTP JSON Instructions
In our case, we are using 433 bytes of data.

Retrieved Information Format – JSON

The data parameters that we will be retrieving with the PLC are main (Index 3) and wind (Index 5). This will give us temperature, pressure, humidity, wind speed and direction.
main
– main.temp – Temperature. Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit.
– main.pressure – Atmospheric pressure (on the sea level, if there is no sea_level or grnd_level data), hPa
– main.humidity – Humidity, %
– main.temp_min – Minimum temperature at the moment. This is deviation from current temp that is possible for large cities and megalopolises geographically expanded (use these parameter optionally). Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit.
– main.temp_max – Maximum temperature at the moment. This is deviation from current temp that is possible for large cities and megalopolises geographically expanded (use these parameter optionally). Unit Default: Kelvin, Metric: Celsius, Imperial: Fahrenheit
wind
– wind.speed – Wind speed. Unit Default: meter/sec, Metric: meter/sec, Imperial: miles/hour.
– wind.deg – Wind direction, degrees (meteorological)

PLC Program – BRX Do-More JSON Instructions

We will be using the Do-More Designer Simulator for our program. The instructions that we are using are only included in version 2.5.2 and higher in our Do-More Designer Software. The Simulator and the BRX PLC can only be used for these instructions.
HTTPCMD – HTTP Request / Response with Server (BRX only) Do-More
The BRX Do-More PLC as an http/https client, send a GET, POST, PUT, HEAD, or DELETE request to a server, and receive the response. Along with the new JSONPARSE and JSONBUILD instructions (see below), HTTPCMD can provide a useful interface between your PLC and data-rich services utilizing REST APIs.
BRX Do-More PLC HTTP JSON Instructions
The HTTPCMD will be the first instruction that we will be using. TCP Client Device will need to be set. Double click on the device. This is part of the TCP Connection group of this instruction.
BRX Do-More PLC HTTP JSON Instructions
Our device configuration dialog will now appear. This is part of the system configuration of the PLC in which we will create our new TCP Client Device.
BRX Do-More PLC HTTP JSON Instructions
We will name this TCPClient. Select OK.
BRX Do-More PLC HTTP JSON Instructions
We will now fill in our TCP Connection information.
Ensure that the radio button Establish TCP Connection to HTTP Server is on. The Open Weather Map website uses a secure connection so check the ‘Use SSL/TLS’ selection. This will automatically select TCP Port Number 443. Under the https by name enter “openweathermap.org”.
BRX Do-More PLC HTTP JSON Instructions
Here is the completed TCP Connection.
We will now fill out the HTTP Request information.
BRX Do-More PLC HTTP JSON Instructions
Our request method will be GET. The Request information will be “/data/2.5/weather?q=Atlanta,us&units=imperial&appid=b6907d289e10d714a6e88b30761fae22″. This represents the weather in Atlanta USA in Fahrenheit.
BRX Do-More PLC HTTP JSON Instructions
Under the HTTP Response, we will use D0 as our response status code. SS1 will be used as our response full status line text and response header.
Check the response body and select the numeric data buffer. Click the Create Byte Buffer.
BRX Do-More PLC HTTP JSON Instructions
We will create an unsigned byte data block called HTTPCMDBuff. The number of elements will be set for 1000. This will give users additional room in the block if information changes.
BRX Do-More PLC HTTP JSON Instructions
Our data block will be memory retentive. (Retains values after a power loss.)
Select OK.
BRX Do-More PLC HTTP JSON Instructions
Our HTTPCMD instruction is now complete. Click the check mark in the upper left corner.
BRX Do-More PLC HTTP JSON Instructions
An information message will be displayed indicating the version of the software and firmware required for this instruction. Click OK.
PLC Ladder Logic Sample Program
We will use input X0 to trigger this instruction. The instruction is already edge triggered so it will only execute once during a transition of off to on with the input.
If we download and execute this one line of ladder code we can then monitor the result.
BRX Do-More PLC HTTP JSON Instructions
Select New Memory View from the main menu | Debug.
BRX Do-More PLC HTTP JSON Instructions
Select the HTTPCMDBuffer that we just created. View Entire Block and select OK.
BRX Do-More PLC HTTP JSON Instructions
Select 30 cols and ASCII.
BRX Do-More PLC HTTP JSON Instructions
We can see how the information from the website is now in our PLC memory block.


We will now use JSONPARSE to extract the information from this JSON memory block.
BRX Do-More PLC HTTP JSON Instructions

JSONPARSE – Parse JSON Text (BRX only) Do-More

Sometimes data received via MQTT or HTTP REST APIs can come in JSON format. The Parse JSON Text instruction looks up a value based on a Field Name or a 0-based array index within a JSON Input record. The Found Value can be returned as text or as Numeric or Bit values, depending upon the JSON record format. The Return Results DWORD contains details about the result of the parse: any JSON parsing errors• if no parsing error, information on the• JSON Input, whether it was an object, array, or value if no parsing error, information on the• Found Value type, whether it was a nested object, an array, a number, a quoted string, or one of the predefined null, false, true values
BRX Do-More PLC HTTP JSON Instructions
Under the JSON input, we will select the HTTPCMDBuff(0) that we created in the HTTPCMD instruction above. The number of bytes will be set for D1 from the same instruction above.
Select the 0-based Array/Field Index under the ‘Lookup Value by’ section and enter the value 3.
Under the found value select (Text Values that are Stings, Objects, Arrays, Numbers, Booleans) Select the Create Byte Buffer.
BRX Do-More PLC HTTP JSON Instructions
Create a byte data block called JSONParseThree. It will contain 500 elements and be memory retentive. Select OK.
BRX Do-More PLC HTTP JSON Instructions
The number of bytes parsed will be put in D10 and the return results will be put in D11. Select the check mark at the top left of the instruction.
PLC Ladder Logic Sample Program
We will use the leading edge of the HTTPCMD success bit (C0) to trigger our JSONPARSE instruction.
BRX Do-More PLC HTTP JSON Instructions
If we were to run our program now, the result that we will see is the field level 3 information from our original data retrieved.

PLC Ladder Logic Sample Program
We will now use the JSONPARSE instruction again to look for a specific field string name that we returned previously.
The JSON input will be JSONParseThree(0) and the number of bytes will be D10 from our previous instruction.
Our lookup value by field name string will be set for “temp”. This will return our current temperature.
Under the found value select string and store this information in SL0. Our return results will be set for D15. Select the check mark in the upper left corner.
PLC Ladder Logic Sample Program
If the result word from our previous JSONPARSE instruction is successful, (D11:W1 = 1) then execute the find temp value.
PLC Ladder Logic Sample Program
We will also find the other information in field index 3 of our JSON data.

We will now find the values under the field index 5 of our JSON data. (wind)
PLC Ladder Logic Sample Program
Select the 0-based Array/Field Index under the ‘Lookup Value by’ section and enter the value 5.
Under the found value select (Text Values that are Stings, Objects, Arrays, Numbers, Booleans) Select the Create Byte Buffer. Create a byte data block called JSONParseFive. It will contain 500 elements and be memory retentive. Select OK.
PLC Ladder Logic Sample Program
We will use the leading edge of the HTTPCMD success bit (C0) to trigger our JSONPARSE instruction.
PLC Ladder Logic Sample Program
If we were to run our program now, the result that we will see is the field level 5 information from our original data retrieved.
PLC Ladder Logic Sample Program
We will now use the JSONPARSE instruction again to look for a specific field string name that we returned previously.
The JSON input will be JSONParseFive(0) and the number of bytes will be D20 from our previous instruction.
Our lookup value by field name string will be set for “speed”. This will return our current wind speed.
Under the found value select string and store this information in SL5. Our return results will be set for D25. Select the check mark in the upper left corner.
PLC Ladder Logic Sample Program
If the result word from our previous JSONPARSE instruction is successful, (D11:W1 = 1) then execute the find temp value.
PLC Ladder Logic Sample Program
We will also find the other information in field index 5 of our JSON data. (wind direction)

Our final rung of the ladder logic will reset our Data Byte Blocks and the HTTPCMD success and error bits.
PLC Ladder Logic Sample Program
This will be triggered on X1 or the leading edge of the HTTPCMD error condition.
PLC Ladder Logic Sample Program
Using Data Monitor we can see all of the values that we have returned from the website.

See the video below to watch the retrieval of the JSON information from a website using the HTTPCMD and JSONPARSE instructions in our BRX Do-More Series PLC. (Do-More Designer Simulator)

You can download the program here.

BRX Do-More Series PLC from Automation Direct – Power to deliver
Overview Link (Configure and purchase a system)
Manuals and Product Inserts (Installation and Setup Instruction)
Do-More Designer Software v2.0.3 (Free Download Link) – The software will contain all of the instruction sets and help files for the BRX Do-More Series PLC.

Watch on YouTube: BRX PLC HTTP JSON Instructions

BRX Do-More PLC HTTP JSON Instructi...
BRX Do-More PLC HTTP JSON Instructions

If you have any questions or need further information please contact me.
Thank you,
Garry



If you’re like most of my readers, you’re committed to learning about technology. Numbering systems used in PLC’s are not difficult to learn and understand. We will walk through the numbering systems used in PLCs. This includes Bits, Decimal, Hexadecimal, ASCII and Floating Point.

To get this free article, subscribe to my free email newsletter.


Use the information to inform other people how numbering systems work. Sign up now.

The ‘Robust Data Logging for Free’ eBook is also available as a free download. The link is included when you subscribe to ACC Automation.


2 thoughts on “BRX Do-More PLC HTTP JSON Instructions”

Leave a Reply to garrys Cancel reply