A ShipIoT tutorial for connecting a FRDM-K64F to bip.io
Dependencies: EthernetInterface FXOS8700Q mbed-rtos mbed
Diff: main.cpp
- Revision:
- 0:c07fa8c822d2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Aug 17 14:46:26 2015 +0000 @@ -0,0 +1,60 @@ +#include <mbed.h> +#include <EthernetInterface.h> +#include "FXOS8700Q.h" + +int main(int argc, char** argv) { + + int16_t X, Y, Z; + + Serial pc(USBTX, USBRX); + pc.baud(115200); + + I2C i2c(PTE25,PTE24); + FXOS8700QAccelerometer acc(i2c, FXOS8700CQ_SLAVE_ADDR1); + acc.enable(); + + pc.printf("Welcome to the FRDM + Bipio\r\n"); + + EthernetInterface eth; + eth.init(); + eth.connect(); + + pc.printf("IP Addr: %s\r\n", eth.getIPAddress()); + + while(true) { + pc.printf("Polling x,y,z\r\n"); + TCPSocketConnection sock; + sock.connect("david.api.shipiot.net",80); + + acc.getX(X); + acc.getY(Y); + acc.getZ(Z); + + char http_request[] = "POST /bip/http/accel HTTP/1.1\r\n" + "Host: username.api.shipiot.net\r\n" // change the username to your username + "Content-Type: application/json\r\n" + "Content-Length: %d\r\n" + "Authorization: Basic dGVzdDp0ZXN0\r\n" // change the dGVzdDp0ZXN0 to your auth token + "\r\n" + "%s"; + + char buffer[255]; + char json[] = "{ \"x\": %d, \"y\": %d, \"z\": %d }"; + + sprintf(buffer,json,X,Y,Z); + + char request[512]; + + sprintf(request,http_request,strlen(buffer), buffer); + + sock.send_all(request, strlen(request)); + + pc.printf(buffer); + + sock.close(); + + wait(1.0); + + } + // should never get here... +} \ No newline at end of file