optimize memory usage

This commit is contained in:
technyon
2022-06-14 22:12:43 +02:00
parent 28025596bf
commit 2c0b9dcdfc
2 changed files with 10 additions and 8 deletions

View File

@@ -20,6 +20,6 @@ public:
virtual bool isConnected() = 0;
protected:
const uint16_t _mqttMaxBufferSize = 16384;
const uint16_t _mqttMaxBufferSize = 6144;
const String _hostname;
};