n/a

Dependencies:   C12832 mbed-http

Fork of HTTP-Python-Demo by Cambridge Hackathon

Committer:
BKasza
Date:
Sun Nov 26 07:24:36 2017 +0000
Revision:
4:14c774cf7ac2
Parent:
3:8135a6313648
It gets compiled - Let's ship it

Who changed what in which revision?

UserRevisionLine numberNew contents of line
BKasza 3:8135a6313648 1 #ifndef _CONFIG_H
BKasza 3:8135a6313648 2 #define _CONFIG_H
BKasza 3:8135a6313648 3
BKasza 4:14c774cf7ac2 4 #define SERVERNAME "Bianca"
BKasza 4:14c774cf7ac2 5 #define GETTIMERINIT 5
BKasza 4:14c774cf7ac2 6 #define REPORTTIMERINIT 10
BKasza 4:14c774cf7ac2 7 #define ALERTLISTSIZE 32
BKasza 4:14c774cf7ac2 8
BKasza 4:14c774cf7ac2 9 /* 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;
BKasza 4:14c774cf7ac2 10 this is important for calculating array indices, sizes etc... */
BKasza 4:14c774cf7ac2 11 #define USING_TEMPERATURE 1
BKasza 4:14c774cf7ac2 12 #define USING_LIGHT 1
BKasza 4:14c774cf7ac2 13 #define USING_AIR 1
BKasza 4:14c774cf7ac2 14 #define USING_LASER 0
BKasza 4:14c774cf7ac2 15 #define USING_ACCEL 1
BKasza 3:8135a6313648 16
BKasza 3:8135a6313648 17 #endif //_CONFIG_H