Create, Make, Code the Internet of Everything. Start programming the connected world w/ 500 bonus @temboo credits http://bit.ly/1xBR7Ls
Get link
Facebook
X
Pinterest
Email
Other Apps
Comments
Popular posts from this blog
CC3200 WIFI CAMERA WEB SERVER An attractive wireless camera node can be made using Texas Instruments CC3200 WiFi launchad . This wireless camera will captures image and stores the image on SD card. The CC3200 acts as Wi-Fi Web server. By entering the IP address of web server on browser a web page stored in the SD card is loaded. The image taken by camera is displayed on that webpage. Hardware requirements · CC3200 SimpleLink Wi-Fi LaunchPad , · Miniature TTL Serial JPEG Camera with NTSC Video, · SD card shield, · SD card, · Two 10 k resistors, · Jumper wires. The whole project is based on Energia platform. The Texas Instrum...
DWEET.IO ENERGIA TI CC3200(CODE INCLUDED IOT FREE THINGS CODE FOR DWEET YOUR ANALOG INPUT DATA TO DWEET SERVER AND SEE VISUALLY //#include <SPI.h> #ifndef __CC3200R1M1RGC__ #endif #include <WiFi.h> // your network name also called SSID char ssid[] = "SSID OF WIFI"; // your network password char password[] = "PSWD OF WIFI"; int status = WL_IDLE_STATUS; IPAddress server(3,213,104,195); // DWEET.IO SERVER // Initialize the client library // Dweet parameters #define thing_name "jktest" WiFiClient client; int temperature=0; void setup() { Serial.begin(9600); Serial.println("Attempting to connect to WPA network..."); ...
The Hypertext Transfer Protocol (HTTP) is designed to enable communications between clients and servers. HTTP works as a request-response protocol between a client and server. Using these HTTP requests I can upload my sensor data to ThingSpeak server. The light sensor outputs analog voltage value according to light intensity the ADC of msp430f5529 converts to digital and doing some calibrations percentage of light in our room can be seen on our thingspeak.com user page .We can make the sensor data to public by providing our sensor value streaming page.
Comments
Post a Comment