SmartVehicle-Sortic
SmartFactory
Configuration.h
Go to the documentation of this file.
1 
16 #ifndef CONFIGURATION_H
17 #define CONFIGURATION_H
18 
19 const unsigned int TIME_BETWEEN_PUBLISH = 300;
20 const unsigned int TIME_BETWEEN_PUBLISH_TOKEN = 200;
21 const unsigned int TIMEOUT_VACKS = 5 * 1000;
22 const unsigned int SORTIC_MAX_LINE = 3;
23 
24 // #define DEFAULT_HOSTNAME_RAND String(random(0xffff), HEX) ///< for Vehicles, used for MQTT and WiFi, must be unique in Network
25 const int DEFAUL_HOSTNAME_NUMBER = 2;
26 #define DEFAULT_HOSTNAME (String("SV") + String(DEFAUL_HOSTNAME_NUMBER))
27 
28 #endif
const unsigned int TIMEOUT_VACKS
How long the vehicle waits for acknoledgment from box.
Definition: Configuration.h:21
const unsigned int TIME_BETWEEN_PUBLISH_TOKEN
Time in ms between publish token.
Definition: Configuration.h:20
const int DEFAUL_HOSTNAME_NUMBER
defines also startline.
Definition: Configuration.h:25
const unsigned int TIME_BETWEEN_PUBLISH
Time in ms between publishs.
Definition: Configuration.h:19
const unsigned int SORTIC_MAX_LINE
How many lines are available. Needed atm to choose a free line without handshake with sortic.
Definition: Configuration.h:22