n/a

Dependencies:   C12832 mbed-http

Fork of HTTP-Python-Demo by Cambridge Hackathon

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers config.h Source File

config.h

00001 #ifndef _CONFIG_H
00002 #define _CONFIG_H
00003 
00004 #define SERVERNAME          "Bianca"
00005 #define GETTIMERINIT        5
00006 #define REPORTTIMERINIT     10
00007 #define ALERTLISTSIZE       32
00008 
00009 /* These macros are to be set to 0 when the sensor is not used. When the sensor is used, the corresponding macro should be 1 (and not any other number;
00010    this is important for calculating array indices, sizes etc... */ 
00011 #define USING_TEMPERATURE   1
00012 #define USING_LIGHT         1
00013 #define USING_AIR           1
00014 #define USING_LASER         0
00015 #define USING_ACCEL         1
00016 
00017 #endif //_CONFIG_H