#IoT :Network of two CC3200 sensor nodes through Internet.
Exploiting the features of #dweet and #Temboo and our Texas Instruments #CC3200 we can make a sensor network over Internet. We can show each sensor node status by sending some code to dweet server under a my-thing-name. To read the latest dweet for a thing, you can go to the web address https://dweet.io/get/latest/dweet/for/my-thing-name . Note that dweet.io holds on to the last 500 dweets over a 24 hour period. If the thing hasn't dweeted in the last 24 hours, only its history will be removed. We can’t identify if the node fails. By checking the codes on thing we can easily identify whether the node fails. For HTTP Get request we can use Temboo library. Each run of choreo on another CC3200 get response from dweet through HTTP get request. The chunk response filtered for codes. If one code is received and verified it checks for second code. We can design a network in which each node is sending its status to dweet and also check for other node’s status by using Tembo...