char test[500];
Bridge.get("my_sales",test,24);
Why is test 474 elements larger than you tell get() about?
I'm also confused by the return value of .get()...The function returns the length of the read byte of the requested value...Of what use is that?
The function appears to not NULL terminate the array. The return value tells you how much oversize your array is, or where to put the NULL.