1234567891011121314 |
- PubSubClient.h
- // MQTT_MAX_PACKET_SIZE : Maximum packet size
- #ifndef MQTT_MAX_PACKET_SIZE
- #define MQTT_MAX_PACKET_SIZE 512 // need to fix this here, because this define cannot be overruled within the Arduino sketch...
- #endif
- // MQTT_KEEPALIVE : keepAlive interval in Seconds
- #ifndef MQTT_KEEPALIVE
- #define MQTT_KEEPALIVE 30
- #endif
|