I'm having a following problem:
#include <MKRWAN.h>
modem.write(0x01);
modem.write(0x02);
modem.write(0x03);
modem.write(0x04);
Will result the "payload_hex": "01000000020000000300000004000000" on receiving end. For some reason plenty of zeroes are added to sending just simple numbers and thus efficiency is lost. Is there any way to get rid of those zeroes before they are sent over the air?