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
Revision 0:6463a9af1af8, committed 2012-11-02
- 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
diff -r 000000000000 -r 6463a9af1af8 C12832_lcd.lib --- /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
diff -r 000000000000 -r 6463a9af1af8 SprintUSBModem.lib --- /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
diff -r 000000000000 -r 6463a9af1af8 SprintUSBModemWebsocketTest-Temp/WebSocketClient.lib --- /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
diff -r 000000000000 -r 6463a9af1af8 main.cpp --- /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); +}
diff -r 000000000000 -r 6463a9af1af8 mbed-rtos.lib --- /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
diff -r 000000000000 -r 6463a9af1af8 mbed.bld --- /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