-
Notifications
You must be signed in to change notification settings - Fork 5
IoT Platforms
tamberg edited this page Jun 7, 2020
·
1 revision
These platforms are used in the course.
- http://dweet.io/
- Host: dweet.io
- Port: 443
- POST /dweet/for/THING_NAME?name=value
- POST /dweet/for/THING_NAME?name=value&name2=value2
- GET /get/latest/dweet/for/THING_NAME
- GET /get/dweets/for/THING_NAME
-
$ curl -vX POST https://dweet.io/dweet/for/THING_NAME?name=value
-
$ curl -vX POST "https://dweet.io/dweet/for/THING_NAME?name=value&name2=value2"
-
$ curl -v https://dweet.io/get/latest/dweet/for/THING_NAME
-
$ curl -v https://dweet.io/get/dweets/for/THING_NAME
- https://thingspeak.com/
- https://www.mathworks.com/help/thingspeak
- Host: api.thingspeak.com
- Port: 80 or 443
- POST /update?api_key=WRITE_API_KEY&field1=42
- POST /update?api_key=WRITE_API_KEY&field1=7&created_at=2019-05-03T00:00:00Z
- GET /channels/CHANNEL_ID/feed.json?api_key=READ_API_KEY
- Library: Sketch > Include Library > Manage Libraries... >ThingSpeak > Install
- Example: File > Examples > ThingSpeak > ESP8266 > WriteMultipleFields.ino
-
$ curl -vX POST "http://api.thingspeak.com/update?api_key=WRITE_API_KEY&field1=42"
-
$ curl -vX POST "http://api.thingspeak.com/update?api_key=WRITE_API_KEY&field1=42&created_at=2019-05-03T00:00:00Z"
-
$ curl -v http://api.thingspeak.com/channels/CHANNEL_ID/feed.json?api_key=READ_API_KEY