GSwifiInterface (interface for GainSpan Wi-Fi GS1011 modules) see https://mbed.org/users/gsfan/notebook/GSwifiInterface/
Dependencies: GSwifiInterface mbed
Fork of Wifly_HelloWorld by
main.cpp
- Committer:
- samux
- Date:
- 2011-11-06
- Revision:
- 0:90ba0f51aa64
- Child:
- 1:49e1e9ed6e39
File content as of revision 0:90ba0f51aa64:
#include "mbed.h" #include "Wifly.h" Wifly wifly(p9, p10, p20, "network", "password", true); Serial pc(USBTX, USBRX); int main() { if(wifly.join()) pc.printf("network joined!\r\n"); else pc.printf("join failed!\r\n"); }