changes an Libs.txt 348 B

1234567891011121314
  1. PubSubClient.h
  2. // MQTT_MAX_PACKET_SIZE : Maximum packet size
  3. #ifndef MQTT_MAX_PACKET_SIZE
  4. #define MQTT_MAX_PACKET_SIZE 512 // need to fix this here, because this define cannot be overruled within the Arduino sketch...
  5. #endif
  6. // MQTT_KEEPALIVE : keepAlive interval in Seconds
  7. #ifndef MQTT_KEEPALIVE
  8. #define MQTT_KEEPALIVE 30
  9. #endif