can't make getStream() work
-
Hi everybody,
I'm new to this forum and here is my first problem. I want to print on the gateway (oled display of my lora ttgo) each payload of incoming messages from nodes. it works when I use getInt() or other getters but it would be easier to do it with getStream() because I read it works with all types of messages. I tryed many things but I'm stucked here and some help would be welcome.
Thanks
-
@Mizar03 sorry for the late response.
getStream()
only works for firmware transfers. I'd suggestgetString()
, this should also work for all types of payloads, as they are normaly ASCII and not binary data.