Skip to content

AllThingsTalk Arduino WiFi SDK v2.1

Compare
Choose a tag to compare
@epiller epiller released this 10 Dec 16:57
· 18 commits to master since this release

What's new?

  • Create assets on AllThingsTalk Maker right from your device!
    • Simply adding createAsset("temp", "Home Temperature", "sensor", "number") in your setup() function will create a new Sensor asset 'temp' with data type 'number' on your AllThingsTalk when the device boots.
    • When debug is enabled, you'll be able to see live results of new asset creation.
    • Almost all examples have been updated to utilize this new feature.
  • Added new methods for checking if SDK features are enabled or disabled:
    • wifiSignalReporting() returns true or false
    • connectionLed() returns true or false
  • Added boolean returns to functions (that were previously void) to enable user to check if actions were performed successfully:
    • wifiSignalReporting
    • connectionLed
    • setHostname
    • device.send (JSON, CBOR and Binary Payload)