19 lines
346 B
C
19 lines
346 B
C
|
/*
|
||
|
* file: config.h
|
||
|
*/
|
||
|
|
||
|
/* endpoint */
|
||
|
#define SERVER_URL "status.kraut.space"
|
||
|
#define SERVER_PORT 10001
|
||
|
|
||
|
/* serial interface settings */
|
||
|
#define BAUD_RATE 115200
|
||
|
#define DEBUG true
|
||
|
|
||
|
/* frequence to read the pin */
|
||
|
#define FREQUENCY 10000
|
||
|
|
||
|
/* time server settings */
|
||
|
#define NTP_URL "pool.ntp.org"
|
||
|
#define TZ_STRING "CET-1CDT,M3.5.0,M10.5.0/3"
|