GadgetKeeper Weather Station

by sibuntu in Circuits > Websites

3510 Views, 21 Favorites, 0 Comments

GadgetKeeper Weather Station

3787551442843710906.png

GadgetKeeper development platform provides a complete application design, runtime, and intelligence environment allowing the rapid creation of IoT solutions to connect your sensors, devices, and equipment (“Things”) with people and systems.

GadgetKeeper provides a simple development environment, robust APIs and worry-free hosting, you can accelerate your application development and take advantage of simple scalability as the application and the number of your devices grows.

You can easily integrate your application with external IT systems through our powerful APIs, web services, and a completely hands-free hosting environment that automatically scales to meet any demand, whether you’re serving several devices or several million.

In this Instructable I'll make a simple weather station using GadgetKeeper IoT Cloud Platform.

Parts

download.jpg
ArduinoEthernetShieldV3.jpg
download (1).jpg
images.jpg

1× Arduino UNO board

1× Arduino Ethernet shield

1× DHT11/22 temperature/Humidity sensor

1x 10k resistor

Prepare the Hardware

2196601442843691048.jpg

Since most of the Arduino shields are usable as a stack, you need to apply less effort to setup the hardware. The final setup will be as follows. The connection with DHT11 is described in picture above.

Add Required Additional Arduino Libraries

I have used Arduino 1.5.6-r2 version as the IDE.You can download it from this url.(http://arduino.cc/en/Main/Software). Also the required libraries can be downloaded from following links.

HttpClient library

DHT11 library

All other required libraries are available as standard libraries with the IDE.

Configure GadgetKeeper

8059861442843815172.png

After successfully creating account on GadgetKeeper, go to console and create the "weatherStation" thing first.

Configure GadgetKeeper

7181801442843860333.png
1176911442843927756.png

Then create the "temperature" and "humidity" properties under weatherStation as follows.

Arduino Sketch

This is the arduino sketch for uploading temperature and humidity values to the GadgetKeeper.

Weather-Station.ino

Information about uploading Arduino Sketch can be found here.