TCP send example

Dependencies:   FXOS8700CQ mbed

Fork of StarterKit by Rick McConney

Committer:
stefanrousseau
Date:
Tue Jul 12 03:11:05 2016 +0000
Revision:
11:e6602513730f
Parent:
4:f83bedd9cab4
Child:
12:7c94ec5069dc
Fixed I2C issues.  ; a) Removed stop between HTS221 address and read; b) The latest MBED uses the slave address differently from the legacy.  Stick with the old for now and fixed the HTS221 address to BF instead of 5F.; c) Made I2C definitions externs.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JMF 2:0e2ef866af95 1 #ifndef __CONFIG_ME_H_
JMF 2:0e2ef866af95 2 #define __CONFIG_ME_H_
JMF 2:0e2ef866af95 3
JMF 2:0e2ef866af95 4 // User must set these for own context:
JMF 2:0e2ef866af95 5 static const char * MY_FLOW_DEVICE_ID_STR = "48482f";
stefanrousseau 11:e6602513730f 6 //static const char * MY_SERVER_URL = "run-east.att.io";
stefanrousseau 11:e6602513730f 7 static const char * MY_SERVER_URL = "run-west.att.io";
JMF 2:0e2ef866af95 8 static const char * MY_APN_STR = "m2m.com.attz";
JMF 2:0e2ef866af95 9 static const char * MY_PORT_STR = "80";
JMF 2:0e2ef866af95 10
JMF 2:0e2ef866af95 11 #endif