September 2016
Intermediate to advanced
495 pages
9h 37m
English
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, ...
Read now
Unlock full access