Class 13: Wireless 1 - WiFi
Slides:
Working with the nRF24L01 Serial module
- Example code shown in class: https://developer.mbed.org/users/Owen/code/nRF24L01P_Hello_World/ Links to an external site.
Connecting directly to the Web with the CC3000 WiFi breakout board
- We will use the Adafruit CC3000 breakout board, which is based on the Texas Instruments CC3000 chip.
- You will connect using the open CalVisitor wireless network, which is available all over campus, but has some restrictions - you may not be able to access ports outside http and https (ports 80 and 443). You cannot use AirBears or AirBears2 - the hardware does not support web login or WPA2 Enterprise authentication.
- We also have a backup network called "idd-local" with WPA2 Personal key "devicedesign". It isn't connected to the internet, but we have a local server running at 192.168.1.101.
Wire up the breakout board
- Solder header pins that face downwards (so you can place the module into a breadboard with the CC3000 facing up).
- Adafruit has a detailed CC3000 Wiring Tutorial for Arduino - the given pin numbers will work on your mbed. For reference:
From CC3000 to mbed:
-
- IRQ => (pin D3)
- Enable => (pin D5)
- SPI CS => (pin D10)
- SPI MOSI => (pin D11)
- SPI MISO => (pin D12)
- SPI CLK => (pin D13 - this is also the blue LED (a design flaw); use PTC5 alternatively)
- VIN => 5V or Vin
- GND => GND
Simple Demo: Confirm that you can get online
- Import this demo CC3000 Demo.
- Change the 30th line's SSID and PASSWORD and SECURITY to:
- "CalVisitor", "", and NONE to get online
- "idd-local", "devicedesign" and WPA2 to use our local in-room network.
- Compile and download the program. When you run it, a successful run will look like this:
C3000 Sample Program IP address: 128.32.XX.XXX >
If you have problems, you can get debug output to appear by editing cc3000.h to change debug output from 0 to 1 (there are a number of different debug levels you can show):
// Debug - General Debug #define CC3000_DEBUG 1 // Change from 0 to 1
Once you are online, you can type a URL and hit enter. (copy & paste might be better)
- USe http://husk.eecs.berkeley.edu/projects/cc3000/hello.txt if you are connected to CalVisitor.
- use http://192.168.1.101/hello.txt Links to an external site. if you are connected to idd-local
> Requested http://husk.eecs.berkeley.edu/projects/cc3000/hello.txt Page fetched successfully - read 16 characters Result: Hello, CC3000!
The first request might return an error state. It has something to do with the library we are using (HTTPClient is buggy)
> Error - ret = 8 - HTTP return code = 0
Using the CC3000 as a Web Client
Get data from a web server
You've done it with the above template code.
Send data to a web server using CC3000
- The easiest way to send data to a web server is to encode it as URL parameters in a GET request as follows:
GET /relative_path?param1=value¶m2=value¶m3=value... HTTP/1.1
- URL parameters and values need to be URL-encoded according to RFC3986. Here's a C implementation.
- You already have an HTTPClient library, which takes care of some of this for you. You can simply execute:
char url[]="http://husk.eecs.berkeley.edu/projects/cc3000/sendchat.php?msg=ON"; int ret = http.get(url, str, 128); //str is where up to 128 bytes of results will be stored
- We have set up a very simple chat interface with two pages to experiment with URL parameters:
- http://husk.eecs.berkeley.edu/projects/cc3000/showchat.php (or http://192.168.1.101/showchat.php Links to an external site. ) simply shows a listing of all received chat messages from all clients, with IP addresses and timestamps.
- http://husk.eecs.berkeley.edu/projects/cc3000/sendchat.php (or http://192.168.1.101/sendchat.php Links to an external site. ) accepts a message passed in via URL parameter msg as follows:http://husk.eecs.berkeley.edu/projects/cc3000/sendchat.php?msg=Test%20message%20from%20the%20wiki%20page
- Clicking on the link above will add a line to the chat - reload showchat.php to see it.
- Your turn: Modify the code example so your mbed now can add a message to the chat log whenever a button is pressed or released.
- Example code for chat: http://developer.mbed.org/teams/Interactive-Device-Design/code/idd_cc3000_chat/
- Next Steps: Send sensor data to one of the existing IOT web services that consume and visualize such data - we recommend trying http://data.sparkfun.com/ Links to an external site. - first create a stream, then publish data to it using HTTP GET or POST requests.
- The general format is:
http://data.sparkfun.com/input/[publicKey]?private_key=[privateKey]&field1=[value]&field2=[value]...
Parse structured data received from a web server
- You don't have a lot of space to receive and parse data retreived from a server. However, if you are in control of the server, you may be able to efficiently pack the data.
- Take a look at http://developer.mbed.org/users/samux/code/MbedJSONValue/docs/tip/classMbedJSONValue.html for a small JSON parser.
Additional Server Code Examples
We have code examples of various server setups (written for Arduino hardware) in a git repo at:
https://github.com/bjo3rn/idd-examples/