Line 29: Line 29:
 
<script src="https://gist.github.com/SaheblalBagwan/39f374e6513292f9158b6d00b727e2a2.js"></script>
 
<script src="https://gist.github.com/SaheblalBagwan/39f374e6513292f9158b6d00b727e2a2.js"></script>
 
</html>
 
</html>
 +
 +
=Hornbill IO Functions=
 +
{| class="table table-striped table-hover table-condensed table-bordered"
 +
|-class="info"
 +
!Function Name|| int parseRequest(char *json_string, hornbill_IO_type_t *ioReq);
 +
|-
 +
|Arguments ||
 +
*json_string--> Received json string
 +
*ioReq--> Parsed '''operation''', '''pinNum''' and '''value''' is copied to this structure
 +
|-
 +
|return value ||
 +
*HORNBILL_IO_REQUEST_VALID = 0,
 +
*HORNBILL_IO_REQUEST_JSON_INVALID = 1,
 +
*HORNBILL_IO_REQUEST_NOACTION = 2
 +
|-
 +
|description || This function parses the input string and extract the requested '''operation''', pinNum , value and copies them to I/p structure pointer.
 +
|}
 +
<br><br><br><br>
  
 
=Code=
 
=Code=

Revision as of 19:12, 13 April 2017

In the last tutorial we saw how to use the Arduino ESP32 AWS IOT library to configure an AWS client to subscribe/publish to a topic/thing. At the end of the tutorial we logged the temperature and humidity using DTH11 sensor.

Hornbill IO operation

In this tutorial we will see how to control the ESP32 pins using the AWS IOT. For this we will be using the Hornbill_IO library. Hornbill_IO library currently supports the below four operation which will be extended in the near future.

  1. digitalRead
  2. digitalWrite
  3. analogRead
  4. analogWrite

Hornbill IO JSON Format

We have a specific protocol/json format defined for the IO operation. Below is the Json format for sending the data from Control Unit to ESP32 for writing a logic 1 to pin 13.


Below is the Json format for reporting the data from ESP32 to Server. The device is reporting the analog value(1023) of pin 36 to the server. .

Hornbill IO Structure

The above Json format is mapped to internal Hornbill IO control structure as below. This may change in the future as we add more functionality to Hornbill IO library.

Hornbill IO Functions

Function Name int parseRequest(char *json_string, hornbill_IO_type_t *ioReq);
Arguments
  • json_string--> Received json string
  • ioReq--> Parsed operation, pinNum and value is copied to this structure
return value
  • HORNBILL_IO_REQUEST_VALID = 0,
  • HORNBILL_IO_REQUEST_JSON_INVALID = 1,
  • HORNBILL_IO_REQUEST_NOACTION = 2
description This function parses the input string and extract the requested operation, pinNum , value and copies them to I/p structure pointer.





Code

Testing

digitalRead

digitalWrite

analogRead

analogWrite