Fork with SeeedStudio Xadow GPS v2 enabled

Dependencies:   FXOS8700CQ MODSERIAL XadowGPS mbed

Fork of Avnet_ATT_Cellular_IOT by Avnet

config_me.h

Committer:
stefanrousseau
Date:
2016-07-13
Revision:
15:61df4a452d38
Parent:
13:df9c49662797

File content as of revision 15:61df4a452d38:

#ifndef __CONFIG_ME_H_
#define __CONFIG_ME_H_

// User must set these for own context:
//static const char * MY_SERVER_URL       = "run-east.att.io";
static const char * MY_SERVER_URL       = "run-west.att.io";
#define FLOW_BASE_URL                   "/65ee161068e0c/b383e73c5e84/7d9de0eee5f9dc0/in/flow"
#define FLOW_INPUT_NAME                 "/climate"
#define FLOW_DEVICE_NAME                "vstarterkit001"
#define FLOW_URL_TYPE                   " HTTP/1.1\r\nHost: "

#define TEMP_HUMIDITY_ONLY                      1
#define TEMP_HUMIDITY_ACCELEROMETER             2
#define TEMP_HUMIDITY_ACCELEROMETER_PMODSENSORS 3
static int iSensorsToReport = TEMP_HUMIDITY_ONLY;

static const char * MY_APN_STR          = "m2m.com.attz";
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

#endif