Sending data to dweet.io
The first step in this project is really to send data to the web so it is stored online. For this, we'll use a service called dweet.io. You can check it out at https://dweet.io/.
This is the main welcome page:
This is the complete Arduino code for this project:
// Libraries #include <Adafruit_CC3000.h> #include <SPI.h> #include "DHT.h" #include <avr/wdt.h> // Define CC3000 chip pins #define ADAFRUIT_CC3000_IRQ 3 #define ADAFRUIT_CC3000_VBAT 5 #define ADAFRUIT_CC3000_CS 10 // DHT sensor #define DHTPIN 6 #define DHTTYPE DHT11 // Create CC3000 instances Adafruit_CC3000 cc3000 = Adafruit_CC3000(ADAFRUIT_CC3000_CS, ADAFRUIT_CC3000_IRQ, ...
Get Arduino: Building exciting LED based projects and espionage devices now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.