Sample code for AT&T IoT Services DevLab with IoT StarterKit.

Dependencies:   FXOS8700CQ M2XStreamClient-JMF WNCInterface jsonlite mbed-rtos mbed

Fork of WNCInterface_M2Xdemo by Avnet

config_me.h

Committer:
jk431j
Date:
2017-12-11
Revision:
13:ee72ca4ca7d4
Parent:
10:a8495b430849

File content as of revision 13:ee72ca4ca7d4:

// Configure all M2X related values here

char deviceId[33] = "beefbeefbeefbeefbeefbeefbeefbeef"; // Device you want to post to
char m2xKey[33]   = "cafecafecafecafecafecafecafecafe"; // Your M2X API Key or Master API Key

const char* hStreamName = "humidity";                      // Humidity stream ID
const char* tStreamName = "temp";                          // Temperature stream ID
const char* accelStreamNames[] = { "accelX", "accelY", "accelZ" };  // Accelerometer stream IDs

int commandDelay = 10;                               // how many seconds we should wait between polling for a command
int commandPolls = 6;                                // how many times we should poll for a command
// these two also define how often we will be sending the data to M2X, 
// the interval is commandPolls * commandDelay seconds, the default is 60 seconds (6 * 10 = 60s)