MessagePack Support?
Created by: mahmed8003
Is it possible to have MessagePack support.
Instead of printing JSON string to buffer using this method
size_t prettyPrintTo(char *buffer, size_t bufferSize)
can we have another method like
size_t msgPackPrintTo(char *buffer, size_t bufferSize)
Use case:
- Final buffer size could be smaller and it can reduce the network data usage where sensor sending lot of data in json string.
- Instead of storing plain JSON string to SPIFFS we can store small msgPack buffer. It will reduce file size.