An m2x sample code that uses accelerometers. Not working yet.

Dependencies:   MMA8451Q SocketModem jsonlite mbed

Fork of MTS_M2x_Example by Multi-Hackers

Files at this revision

API Documentation at this revision

Comitter:
mfiore
Date:
Sat Jan 04 05:55:16 2014 +0000
Child:
1:b12a128aae0e
Commit message:
M2X sample initial commit

Changed in this revision

M2XStreamClient.lib Show annotated file Show diff for this revision Revisions of this file
SocketModem.lib Show annotated file Show diff for this revision Revisions of this file
jsonlite.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.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/M2XStreamClient.lib	Sat Jan 04 05:55:16 2014 +0000
@@ -0,0 +1,1 @@
+https://mbed.org/users/jb8414/code/M2XStreamClient/#95482e2b09ef
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SocketModem.lib	Sat Jan 04 05:55:16 2014 +0000
@@ -0,0 +1,1 @@
+https://mbed.org/teams/Multi-Hackers/code/SocketModem/#a233b9775f93
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/jsonlite.lib	Sat Jan 04 05:55:16 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/citrusbyte/code/jsonlite/#01a2f8de46c8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Jan 04 05:55:16 2014 +0000
@@ -0,0 +1,96 @@
+#include "mbed.h"
+#include "M2XStreamClient.h"
+#include "include_me.h"
+
+using namespace mts;
+
+const char key[] = "1f706ed9764457981e61b427767f65a5";
+const char feed[] = "5996c26815bd3245c8ec35089d51b614";
+const char stream[] = "test_test_test";
+
+int main() {
+    /* bring up PPP link */
+    /*
+    MTSSerialFlowControl* serial = new MTSSerialFlowControl(PTD3, PTD2, PTA12, PTC8);
+    serial->baud(115200);
+    Cellular* cell = Cellular::getInstance();
+    cell->init(serial);
+
+    int max_tries = 5;
+    int i;
+    std::string apn = "wap.cingular";
+    
+    wait(10);
+    printf("waiting for radio to come up\n\r");
+    wait(10);
+    
+    i = 0;
+    while (i++ < max_tries) {
+        if (cell->getRegistration() == Cellular::REGISTERED) {
+            printf("registered with tower\n\r");
+            break;
+        } else if (i >= max_tries) {
+            printf("failed to register with tower\n\r");
+        } else {
+            wait(3);
+        }
+    }
+    
+    i = 0;
+    while (i++ < max_tries) {
+        if (cell->setApn(apn) == SUCCESS) {
+            printf("successfully set APN\n\r");
+            break;
+        } else if (i >= max_tries) {
+            printf("failed to set APN\n\r");
+        } else {
+            wait(1);
+        }
+    }
+    
+    i = 0;
+    while (i++ < max_tries) {
+        if (cell->connect()) {
+            printf("PPP link is up\n\r");
+            break;
+        } else if (i >= max_tries) {
+            printf("failed to bring PPP link up\n\r");
+        } else {
+            wait(1);
+        }
+    }
+    
+    if (! cell->isConnected()) {
+        printf("could not connect\n\r");
+        return 1;
+    }
+    */
+    
+    printf("Program Started\n\r");
+    MTSSerial* serial = new MTSSerial(PTD3, PTD2, 256, 256);
+    serial->baud(9600);
+    Transport::setTransport(Transport::WIFI);
+    Client client;
+    //M2XStreamClient m2xClient(&client, key, "54.214.25.232");
+    M2XStreamClient m2xClient(&client, key);
+    Wifi* wifi = Wifi::getInstance();
+    printf("Init: %s\n\r", wifi->init(serial) ? "SUCCESS" : "FAILURE");
+    printf("Set Network: %s\n\r", getCodeNames(wifi->setNetwork("Multi-Tech", Wifi::WPA2, "VivaLasVegas2014")).c_str());
+    //printf("Set Static: %s\n\r", getCodeNames(wifi->setDeviceIP("192.168.18.164")).c_str());
+    printf("Set DHCP: %s\n\r", getCodeNames(wifi->setDeviceIP("DHCP")).c_str());
+    printf("Signal Strnegth (dBm): %d\n\r", wifi->getSignalStrength());
+    printf("Is Connected: %s\n\r", wifi->isConnected() ? "True" : "False");
+    printf("Connect: %s\n\r", wifi->connect() ? "Success" : "Failure");
+    printf("Is Connected: %s\n\r", wifi->isConnected() ? "True" : "False");
+    
+    /* send some data */
+    int ret;
+    int num;
+    while (true) {
+        num = rand();
+        printf("sending %d\r\n", num);
+        ret = m2xClient.send(feed, stream, num);
+        printf("send() returned %d\r\n", ret);
+        wait(5);
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sat Jan 04 05:55:16 2014 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/a842253909c9
\ No newline at end of file