GSMA version

Dependencies:   FXOS8700CQ mbed

Fork of AvnetATT_shape_hackathon by Rick McConney

Committer:
stefanrousseau
Date:
Wed Jul 13 05:55:06 2016 +0000
Revision:
15:61df4a452d38
Parent:
13:df9c49662797
Added JSON parsing and displaying the LED color

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:
stefanrousseau 12:7c94ec5069dc 5 //static const char * MY_SERVER_URL = "run-east.att.io";
stefanrousseau 12:7c94ec5069dc 6 static const char * MY_SERVER_URL = "run-west.att.io";
stefanrousseau 15:61df4a452d38 7 #define FLOW_BASE_URL "/65ee161068e0c/b383e73c5e84/7d9de0eee5f9dc0/in/flow"
stefanrousseau 12:7c94ec5069dc 8 #define FLOW_INPUT_NAME "/climate"
stefanrousseau 12:7c94ec5069dc 9 #define FLOW_DEVICE_NAME "vstarterkit001"
stefanrousseau 12:7c94ec5069dc 10 #define FLOW_URL_TYPE " HTTP/1.1\r\nHost: "
stefanrousseau 12:7c94ec5069dc 11
stefanrousseau 12:7c94ec5069dc 12 #define TEMP_HUMIDITY_ONLY 1
stefanrousseau 12:7c94ec5069dc 13 #define TEMP_HUMIDITY_ACCELEROMETER 2
stefanrousseau 12:7c94ec5069dc 14 #define TEMP_HUMIDITY_ACCELEROMETER_PMODSENSORS 3
stefanrousseau 13:df9c49662797 15 static int iSensorsToReport = TEMP_HUMIDITY_ONLY;
stefanrousseau 12:7c94ec5069dc 16
stefanrousseau 12:7c94ec5069dc 17 static const char * MY_APN_STR = "m2m.com.attz";
stefanrousseau 12:7c94ec5069dc 18 static const char * MY_PORT_STR = "80"; //This is for normal HTTP. If you want to use TCP to a specific port, change that here
JMF 2:0e2ef866af95 19
JMF 2:0e2ef866af95 20 #endif