ARM TechCon Hands on Lab 11/1 web socket LCD text message display app.

Dependencies:   C12832_lcd SprintUSBModem mbed-rtos mbed WebSocketClient

This app builds on the Sprint cookbook and content Chris Styles and Qi Chen presented today at ARM TechCon 2012. It has an accompanying iOS application that uses Web Sockets to send text entered by the user to the mbed LPC1768. The required hardware includes the mbed, application board and Sprint USB cellular modem.

The accompanying iOS app project requires XCode 4.5 and depends on the Square SocketRocket web sockets framework to communicate with the web sockets server. I've published it to my github account here:

https://github.com/davidswi/ARM_TechCon

Files at this revision

API Documentation at this revision

Comitter:
davidswi
Date:
Fri Nov 02 00:42:26 2012 +0000
Commit message:
Initial working implementation of web socket LCD message display app.

Changed in this revision

C12832_lcd.lib Show annotated file Show diff for this revision Revisions of this file
SprintUSBModem.lib Show annotated file Show diff for this revision Revisions of this file
SprintUSBModemWebsocketTest-Temp/WebSocketClient.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed-rtos.lib Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/C12832_lcd.lib	Fri Nov 02 00:42:26 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/dreschpe/code/C12832_lcd/#468cdccff7af
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SprintUSBModem.lib	Fri Nov 02 00:42:26 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/SprintUSBModem/#0fe5bc472b73
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SprintUSBModemWebsocketTest-Temp/WebSocketClient.lib	Fri Nov 02 00:42:26 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/samux/code/WebSocketClient/#86e89a0369b9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Nov 02 00:42:26 2012 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+#include "C12832_lcd.h"
+
+
+
+int main() {
+    C12832_LCD lcd;
+
+    lcd.cls();
+    lcd.locate(0,3);
+    lcd.printf("mbed application board!");
+    
+    // while(1);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-rtos.lib	Fri Nov 02 00:42:26 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed-rtos/#9654a71f5a90
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Fri Nov 02 00:42:26 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/e2ed12d17f06
\ No newline at end of file