7. Cloud Integrations¶
Via HARDWARIO Cloud you can integrate your device with several services and platforms
7.1. Blynk IoT Platform¶
Blynk makes easy to build mobile IoT app. Follow these simple steps to integrate CHESTER with Blynk via HARDWARIO Cloud:
Download Blynk App from App Store or Google Play and create new project.
Add widgets to the application and assing virtual PINs for every metric you want to visualise.
Go to HARDWARIO Cloud and create or select the group that your device is part of.
Note
The Blynk API do not support sending multiple values for different PINs in one callback.
Now you have to create a unique callback for all your virtual PINs. Use these instructions:
Method
PUT
URL Address
http://blynk-cloud.com/<auth_token>/update/V<number>Replace <auth_token> by your generated token from Blynk and <number> with number of your virtual PIN.
Payload
[ <<value>> ]Instead of <<value>> use extracted value from original JSON message. For example:
[ data.sensor.hygrometer.temperature ]
7.1.1. CHESTER Clime example:¶
Now we are going to make an example with CHESTER Clime.
Download Blynk App from App Store or Google Play and scan QR Code in next step to copy dashboard:
Now scan Dashboard QR Code:
Now open HARDWARIO Cloud and navigate to Group Callbacks in HARDWARIO Cloud:
Select your Group callbacks with CHESTER Clime:
Add temperature callback:
For each quantity we will be setting special callback. For temperature name it Blynk temperature, method is PUT and URL address is
http://blynk-cloud.com/<AUTH TOKEN>/update/V0
![]()
Note
For CHESTER dashboard you revieved AUTH TOKEN to account email.
As payload put following code and click SAVE CALLBACK:
[ data.sensor.hygrometer.temperature ]![]()
Add left callback (humidity and orientation):
Repeat previous chapter, but use following callbacks and payloads and replace
<AUTH TOKEN>
with your own:Humidity:
URL
http://blynk-cloud.com/<AUTH TOKEN>/update/V1
Payload
[ data.sensor.hygrometer.humidity ]
Orientation:
URL
http://blynk-cloud.com/<AUTH TOKEN>/update/V2
Payload
[ data.sensor.accelerometer.orientation ]
After a while, CHESTER will send data and you will se them in Blynk app: