New project code named: teensquitto

Status
Not open for further replies.
New additions & changes to the library for teensy:

* EEPROM support added
* WiFi, ESP, and SPIFFS classes are no longer called via constructor, they are preloaded by the library so you have access to them immediately in your sketch.
* AsyncUDP added, pre-constructed as above as "udp", user has the ability to create messages from AsyncUDPMessage class as well as receive callbacks using the original lambda library methods!

As an example, the AsyncUDP library by nomedev located at https://github.com/me-no-dev/ESPAsyncUDP/blob/master/examples/AsyncUDPServer/AsyncUDPServer.ino, everything BELOW the *AsyncUDP udp;* should compile on teensy now.
The library has both the "Udp" (WiFiUdp.H) and "udp" (AsyncUDP) classes and methods ready to use, so choose your poison :)

I also kept the AsyncUDP in a separate h/cpp file located in the library folder, and the teensquitto library and AsyncUDP talk to each other as needed over scope calls to access data as needed.

This video shows teensy as a sender only, not listening, which can be seen in Packet Sender app.
https://www.youtube.com/watch?v=tZa6ZK_ISHc

This video shows both MQTT working at sending & receiving, as well as sending & receiving UDP packets from teensy and Packet Sender
https://www.youtube.com/watch?v=jO6GUNfn8dY

This video shows a short log snippet of the packetsender window
https://www.youtube.com/watch?v=p4fcdjh8qqA

this is a demo sketch i ran using a AsyncUDP example modified just a little bit, works on teensy fine :)

Code:
#include <teensquitto.h>
teensquitto eep = teensquitto("EEPROM", &Serial1);

//#include <ESP8266WiFi.h>
//#include "ESPAsyncUDP.h"
const char * ssid = "Tony";
const char * password = "********";
//AsyncUDP udp;

void setup()
{
  Serial.begin(115200);
  Serial1.begin(1000000);
  WiFi.mode(WIFI_STA);
  WiFi.begin(ssid, password);
 
  if (WiFi.waitForConnectResult() != WL_CONNECTED) {
    Serial.println("WiFi Failed");
    while (1) {
      delay(1000);
    }
  }
  if (udp.listen(1234)) {
    Serial.print("UDP Listening on IP: ");
    Serial.println(WiFi.localIP());
    udp.onPacket([](AsyncUDPPacket packet) {
      Serial.print("UDP Packet Type: ");
      Serial.print(packet.isBroadcast() ? "Broadcast" : packet.isMulticast() ? "Multicast" : "Unicast");
      Serial.print(", From: ");
      Serial.print(packet.remoteIP());
      Serial.print(":");
      Serial.print(packet.remotePort());
      Serial.print(", To: ");
      Serial.print(packet.localIP());
      Serial.print(":");
      Serial.print(packet.localPort());
      Serial.print(", Length: ");
      Serial.print(packet.length());
      Serial.print(", Data: ");
      Serial.write(packet.data(), packet.length());
      Serial.println();
      //reply to the client
      packet.printf("Got %u bytes of data", packet.length());
    });
  }
}
void loop()
{
  delay(1000);
  uint8_t moo[] = "Anyone here?";
  udp.writeTo(moo, sizeof(moo), IPAddress(192, 168, 2, 122), 64866);
}

Tony
 
Last edited:
Next up on the table is asynchronous websockets for teensy. according to their documentation, asynchronous support is only available on esp8266. yeah right!:) i already added transparent handlers to the library for async websocket library by Link2004, and teensy will soon have async websocket support for both server and client modes. both handlers are working on teensy ATM using original example sketch from Link2004’s repo, i just need to start adding the methods in this week

https://www.youtube.com/watch?v=5H4WNRGchdI

thats a video demonstrating the async server and client handlers working on teensy for websockets.

I also added WiFiMulti support as well.

Tony
 
Is that IOT coming to Teensy over Serial :)

That is much better than native "AT" command set on the ESP8266! How big is the ESP sketch?

Will be interesting to see it and samples published. Have you ever gotten a onehorse ESP unit - would be nice with its form fitted mounted Teensy footprint..
 
no hardware yet, im surprised i didnt burn out the flash on the huzzah reflashing it for every tests! :)
but yeah uart speeds are 1 megabaud rates with dynamic buffer and crc, the floods the other day went on overnight in the tests for mqtt on teensy, but the data doesnt seem to be lost over the protocol in all the tests, which is a plus!

i posted a few compiles a few posts ago, im around 45% storage with program and about same for memory on the esp, but on the teensy end, ~10% program & 4% memory, other than the ipaddress.h include on teensy side, it’s all just methods used to control the ESP, all the original libraries are on the ESP of course (esp core, async udp, asynctcp, async mqtt, async websockets, etc). also, since the websockets handlers are already implemented on teensy, they are triggered over uart and are non blocking as well, even if you care to sprinkle in a few delays(), none of the handlers should be affected as opposed to the originals. theres a very long list of methods in the library and they are shared and identified between classes to run different links on the esp, probably close to ~100 (im not home to check...), but i made it elegant to add functions as needed to link to the esp, in order to add more capability. but yeah AT is a joke right now when working on this, i havnt pushed more than 1 megabaud yet but is very stable, no flow control, no packet loss, no corruption, using Serial1 on the teensy 3.6.

even with the breakout board tho still need to mod it i think, the tx1 of the ESP is connected to teensy serial1, but rx0 is connected to teensy serial1, as i chose a dedicated uart for teensy so i could debug during my cross-mcu-code, looks like the one on tindie is “retired”
 
Last edited:
at the very least, the hope of this project will get people coding on the teensy side to take advantage of the ESP rather than keep running ESP-ONLY libraries over transparency, worst case is i could add defines in the ESP code that disables/enables the includes with their respective functions. a very good feature of the code is if the function doesnt exist, the packet is dropped, this prevents teensy from running unknown code locations on the ESP. at the moment this project has exceeded what i had anticipated it to be, and ive pushed the mqtt teensy controller aside for now as this project could be better benefit to that one later on. but the mqtt teensy controller will definately be a teensy side library, which will be hopefully one of many libraries to take advantage of the transparency in teensquitto

Tony
 
without a project in mind for it - but having worked with ESP a bit this seems like a good way to offload the net stuff to ESP to wait for and arrange - assuming those time taking tasks are the ones that come back async - but not have to write and run a second set of code for the ESP.

It looks like the only onehorse offering to fit Teensy today is this $17 ESP8285 variant that only has 1MB of internal flash [ and seems aimed for T_3.2's Serial2 and middle 3V3/GND for power - so not a direct T_3.6 fit.] - which limits OTA code size to < half of that and makes SPIFFS less useful - unless OTA is traded off to get a smaller SPIFFS space. With this code on the ESP OTA would be less important as it would be a 'static library' of function.
 
yeah, theres no second set of code running, think of it at a link-pointer if you will, where only original methods are called based on uart packet. the real bonus is having non blocking handlers in this type of setup, where the esp updates the teensy transparent handler and continues it’s tasks even if teensy is busy in its handler... i doubt i will use OTA anyways since the code onward would be written on teensy, not ESP, except if you would want to upgrade the ESP core in future (2.5?;) ), but that alone will give you additional patches, fixes, and wont affect this library in the process. the only way to break it is to change the way the methods are called, like i said, if they decide to change the methods in their libraries, it wont only affect this library, but everyone’s sketches using it. however, adapting it to new methods or adding new methods wont be an issue as long as you send the proper packet on teensy end and handle it in the switch statement on ESP end.

I also mention that all methods also return original values, whether you read them or not, i try to make it as transparent as possible, and the handler outputs on ESP end are only activated when you activate them on teensy end, this reduces extra stream that gets discarded if you didnt enable a handler. it even took me a week to figure out how to replicate the lambda function of asyncUDP library, that was a pain, but all the handlers done in the library run like the original on the ESP.
 
yeah, mostly its async except core functions and stock libraries, (WiFiUdp.h)
AsyncUDP (udp) by menodev
AsyncMQTT by marvin
Asyncwebsockets by Links2004

theyre all async, heck, i even added Async wifi scanning :) (asyncscannetworks?) im not sure what the command is im not home, but its the original call going to the async handler.
 
Async client & server websockets are done!

I setup 2 ESP's since the ESP can't do loopbacks of client&server
I setup a dummy ESP with ESP websocket server, then booted up teensy's ESP without handlers/websocketserver/client initialized, and started this on teensy:

Code:
      webSocketServer.begin(); webSocketServer.setAuthorization("tony", "teensy");
      webSocketClient.onEvent(webSocketEventClient);
      webSocketServer.onEvent(webSocketEventServer);
      webSocketClient.disconnect();
      webSocketClient.begin("192.168.2.55", 43110, "/");
      webSocketClient.setAuthorization("tony", "teensy");
      webSocketClient.setReconnectInterval(5000);

then in teensy loop i call this every few seconds:

Code:
webSocketClient.sendTXT("Hello Server!, from Tony!");

The dummy ESP responds from IP *.55 and replies back, which goes into the teensy client handler --> void webSocketEventClient(WStype_t type, uint8_t * payload, size_t length) {
Code:
[WSc] get text: SERVER: TEXT TO YOU

and from google chrome websocket client to teensy's websocket server IP *.168, i send:

Code:
teensy test

in the websocket handler (on teensy ) --> void webSocketEventServer(uint8_t num, WStype_t type, uint8_t * payload, size_t length) {

response:
Code:
[0] get Text: teensy test

clients & servers use authorization, which, as i mentioned, is set in teensy.

Tony
 
Demo Compile results for both ESP & Teensy:

Teensy:
Code:
Sketch uses 120920 bytes (11%) of program storage space. Maximum is 1048576 bytes.
Global variables use 9240 bytes (3%) of dynamic memory, leaving 252904 bytes for local variables. Maximum is 262144 bytes.

ESP:
Code:
Sketch uses 441592 bytes (42%) of program storage space. Maximum is 1044464 bytes.
Global variables use 42864 bytes (52%) of dynamic memory, leaving 39056 bytes for local variables. Maximum is 81920 bytes.

Note: max baud rate viewable for debug on teensy & esp is 2 megabaud, i bumped up the teensy and esp to 2megabaud rate and the communication so far is stable

ignore the byte packets, i have library debugging enabled while tweaking :)

2Megabaud uart teensy <->ESP communication
Code:
DEC:   AA 55 38 38 7 1 
DEC:   AA 55 38 38 10 1 
DEC:   AA 55 38 38 8 1 
DEC:   AA 55 38 38 12 1 
DEC:   AA 55 38 38 14 1 
DEC:   AA 55 38 38 3 1 
*** MQTT connected ***
DEC:   AA 55 38 38 0 0 1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 1 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 CE CE 1 1 
DEC:   AA 55 38 38 6 0 2 
Packet ID: 2
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[WSc] Connected to url: /
[WSc] get text: SERVER: Connected
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 3 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 3
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 4 
Packet ID: 4
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 5 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 5
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 6 
Packet ID: 6
[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[0] Disconnected!
connected server
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 7 
[WSc] get text: SERVER: TEXT TO YOU
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 7
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 8 
Packet ID: 8
[0] get Text: teensy test
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 9 
[WSc] get text: SERVER: TEXT TO YOU
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
Packet ID: 9
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
[0] get Text: teensy test
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
[0] get Text: teensy test
[0] get Text: teensy test
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 A 
Packet ID: 10
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 B 
[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 CE CE 5 0 0 0 14 
Packet ID: 11
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 C 
Packet ID: 12
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 D 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 13
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 E 
Packet ID: 14
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 F 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 15
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 10 
Packet ID: 16
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 11 
[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
Packet ID: 17
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 12 
Packet ID: 18
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 13 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 19
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 14 
Packet ID: 20
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 15 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 21
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 16 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
Packet ID: 22
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 CE CE 5 0 0 0 13 
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 17 
[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
Packet ID: 23
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 18 
Packet ID: 24
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 19 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 25
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 1A 
Packet ID: 26
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 1B 
[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 CE CE 5 0 0 0 14 
Packet ID: 27
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 1C 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 28
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 1D 
[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 CE CE 5 0 0 0 14 
Packet ID: 29
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 1E 
Packet ID: 30
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11

tested 3 Megabaud working with mqtt and websockets
anything above 3 megabaud doesnt seem to register anything readable under putty/terminal
just letting you know 3 megabaud is working so far with client & server sockets and mqtt send/receiving

3Mbaud teensy monitor:
Code:
WSc] get text: SERVER: TEXT TO YOU
[0] get Text: teensy test
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
[0] get Text: teensy test
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 32 
Packet ID: 50
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 33 
Packet ID: 51
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 34 
[WSc] get text: SERVER: TEXT TO YOU
Packet ID: 52
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 35 
Packet ID: 53
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 36 
Packet ID: 54
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 37 
Packet ID: 55
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 38 
Packet ID: 56
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 39 
Packet ID: 57
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 3A 
Packet ID: 58
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 3B 
Packet ID: 59
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


[WSc] get text: SERVER: TEXT TO YOU
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 3C 
Packet ID: 60
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
DEC:   AA 55 EA EA 11 1 
DEC:   AA 55 38 38 6 0 3D 
Packet ID: 61
[WSc] get text: SERVER: TEXT TO YOU
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14 
UDP Packet Type: Broadcast, From: 192.168.2.122:64866, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
UDP Packet Type: Unicast, From: 192.168.2.122:64866, To: 192.168.2.168:1234, Length: 22, Data: test from packetsender
DEC:   AA 55 CE CE 5 0 0 0 14
 
Last edited:
mqtt and websockets ran since yesturday, still is! :) i took a break today

regarding the 3M baud rate i was reading some forums of esp8266 and fell onto this

Thanks for updating Kevin. The 74880 on esp8266 is an artifact of the crystal speed (if you use a 40MHz crystal the baud rate is 115200, but everyone uses 26MHz crystals so it's proportionally lower.)

if thats true that explains the 3M baud (115200x26==2,995,200). with an xtal of 40 a 4,608,000 could be achieved
i guess that makes sense :)

furthermore, if thats still true, according to frankB’s XLS baud rate calulations, that gives an error rate on teensy 3.6 @ 180mhz of %0.16. (for 3Mbaud)

Tony
 
Last edited:
New feature, automatic ESP firmware uploading without affecting Serial Monitor from user/his code... no additional GPIOs used.

https://www.youtube.com/watch?v=okO9KeWpYpQ

in the video above, teensy is COM46. if you open Serial Monitor, you can use teensy as normal. However, when you go to flash an ESP firmware, close serial monitor and point ESP sketch to the teensy com port COM46.
The first packet esptool sends after toggling the DTR is a 36 byte static array of bytes, once a match is found, teensy goes into ESP programming mode automatically and then switches the LED ON (led is for demonstration of ESP program mode)
every byte transfered to the ESP from teensy is counted, with an additonal timer counter as well. What happens is i count if theres more than 1K bytes transfered, technically it was streaming, once the data stops and the timeout expires (which was always updated during the transfer), teensy goes back to regular user tasks. The demo shows teensy automatically programming the ESP at 921600 baud rate using the arduino IDE, followed by returning to the user code right after, probably will have it call reset on teensy just so it can reconfigure the ESP functions... but yeah, function is 23 lines as it is, and will use 3 uart wires, (Serial1 RX1/TX1 of teensy, and ALT TX1 of teensy for the Uart0 of ESP since regular TX1 is used by esp's GPIO2 (Serial1) port.

Now we can just wire up an ESP to teensy (5 wires(power,gnd,uart0RX,uart0TX,uart1TX)) and program both without rewiring anything, as long, as the library is on teensy of course

:)

Tony
 
Last edited:
This looks amazing! I've been wanting to make a board with a teensy 3.6, esp8266 and rfw95w. Not having to program both the teensy and the esp independently with separate connections would be perfect. Do you have any plans to share your library?
 
yup, im still working on the uploader portion however having issues with dtr toggling, so im still working on that, on the plus side, teensy can use the reset line gpio in user code to restart the esp when requested (you can still use ESP.reset() or ESP.restart(), but gpio is hard reset :) ) the rfw95w i presume you’ll run that on teensy side correct?

what is a rfw95w? :p

google searches informs me its an rfm95w radio
 
Last edited:
then yeah it should work fine, i added most of the transparent stuff including wificlient, not sure httpclient is needed yet or can just use wificlient as it is, still adding more esp code over to teensy end, but i need to finish off the auto uploading this week as its holding me back on more implementations, mqtt never crashed at all the last 2 weeks tho on teensy, publishing over esp link and receiving on teensy’s handler, using original functions transparently and a transparent non blocking handler :)

~ 4 hours ago i updated to latest git of the ESP, and it still compiles fine, because i dont port over the function’s code, i run the function directly while transferring the responses, its pretty hard to break this library code without changing the function overloads in the ESP code which would otherwise affect everyone else using it as well, but very easy to fix later on regardless :)

packet radio does sound nice, maybe in future ill make a teensy controller based on that
 
Last edited:
Posting this here for reference, ESP uploads can be quite....picky. What made the huzzah more stable at least for programming was to tie CH_EN and RST together when putting it into firmware update mode, it either has something to do with the way the breakout is designed or the type of ESP subversion used i guess. This auto uploader code will work at any supported speeds in the arduino IDE to upload to the ESP from teensy.

Teensy Pin Huzzah pin

D24 CH_EN & RST (tied)
D25 GPIO0
D0 (RX1) TX
D1 (TX1) RX

Sketch for Teensy 3.x

Code:
void setup() {
  Serial.begin(115200);
}
void loop() {
}
void serialEvent() {
  static bool _DTR = Serial.dtr();
  if ( _DTR != Serial.dtr() ) {
    uint8_t ESP_RESET = 24, ESP_GPIO0 = 25;
    static uint32_t _baud = 1;
    _DTR = Serial.dtr();
    if ( !_DTR ) {
      delay(100); while ( Serial.available() > 0 ) Serial.read();
    }
    else {
      if ( _baud != Serial.baud() ) {
        _baud = Serial.baud(); Serial1.begin(_baud);
      }
      delay(40); if ( Serial.peek() != 0xC0 ) return;
      pinMode(ESP_RESET, OUTPUT); digitalWriteFast(ESP_RESET, 0);
      pinMode(ESP_GPIO0, OUTPUT); digitalWriteFast(ESP_GPIO0, 0);
      while ( Serial.available() > 0 ) Serial.read();
      uint32_t _pulse = millis(), _count = 0, _program_timeout = millis();
      while (1) {
        if ( _baud != Serial.baud() ) {
          _baud = Serial.baud(); Serial1.begin(_baud);
        }
        digitalWriteFast(ESP_RESET, !Serial.dtr());
        if ( millis() - _program_timeout > 12000 ) {
          pinMode(ESP_GPIO0, INPUT_DISABLE); pinMode(ESP_RESET, INPUT_DISABLE); return;
        }
        while ( Serial.available() > 0 ) {
          _pulse = millis(); _count++;
          if ( _count > 3500 ) {
            _program_timeout = millis(); pinMode(ESP_GPIO0, INPUT_DISABLE);
            if ( millis() - _pulse > 500 ) {
              pinMode(ESP_RESET, INPUT_DISABLE); return;
            }
          }
          Serial1.write(Serial.read());
        }
        if ( Serial1.available() > 0 ) Serial.write(Serial1.read());
        if ( _count > 3500 ) {
          _program_timeout = millis(); pinMode(ESP_GPIO0, INPUT_DISABLE);
          if ( millis() - _pulse > 500 ) {
            pinMode(ESP_RESET, INPUT_DISABLE); return;
          }
        }
      }
    }
  }
}

It took alot of "tweaking" to get it upload more often, i get alot of good success rates, but still bound to a "retry", which is not bad considering thats normal in the ESP world ;)
I havn't been able to make it work together with user input in serial monitor, so if you plan on using it with serial monitor, no can do sorry...

Video demonstration uploading a blank ESP sketch to the ESP starting with baud rate of 115200, and then another at 921600:
https://www.youtube.com/watch?v=DnbBjAX1hQo
 
Slight modification for use in teensquitto to reflash the ESP, (provided your using Serial1 pins 0,1 and ALT pin 27)

Code:
void serialEvent() {
  static bool _DTR = Serial.dtr();
  if ( _DTR != Serial.dtr() ) {
    uint8_t ESP_RESET = 24, ESP_GPIO0 = 25;
    static uint32_t _baud = 1;
    _DTR = Serial.dtr();
    if ( !_DTR ) {
      delay(100); while ( Serial.available() > 0 ) Serial.read();
    }
    else {
      if ( _baud != Serial.baud() ) {
        _baud = Serial.baud(); pinMode(0, INPUT_DISABLE); Serial1.setRX(27); Serial1.begin(_baud);
      }
      delay(40); if ( Serial.peek() != 0xC0 ) return;
      pinMode(ESP_RESET, OUTPUT); digitalWriteFast(ESP_RESET, 0);
      pinMode(ESP_GPIO0, OUTPUT); digitalWriteFast(ESP_GPIO0, 0);
      while ( Serial.available() > 0 ) Serial.read();
      uint32_t _pulse = millis(), _count = 0, _program_timeout = millis();
      while (1) {
        if ( _baud != Serial.baud() ) {
          _baud = Serial.baud(); Serial1.begin(_baud);
        }
        digitalWriteFast(ESP_RESET, !Serial.dtr());
        if ( millis() - _program_timeout > 12000 ) {
          pinMode(ESP_GPIO0, INPUT_DISABLE); digitalWriteFast(ESP_RESET,0); delay(100); pinMode(ESP_RESET, INPUT_DISABLE);
          Serial1.setRX(0); pinMode(27, INPUT_DISABLE); Serial1.begin(2000000); return;
        }
        while ( Serial.available() > 0 ) {
          _pulse = millis(); _count++;
          if ( _count > 3500 ) {
            _program_timeout = millis(); pinMode(ESP_GPIO0, INPUT_DISABLE);
            if ( millis() - _pulse > 500 ) {
              pinMode(ESP_RESET, INPUT_DISABLE); ((*(volatile uint32_t *)0xE000ED0C) = (0x5FA0004));
            }
          }
          Serial1.write(Serial.read());
        }
        if ( Serial1.available() > 0 ) Serial.write(Serial1.read());
        if ( _count > 3500 ) {
          _program_timeout = millis(); pinMode(ESP_GPIO0, INPUT_DISABLE);
          if ( millis() - _pulse > 500 ) {
            pinMode(ESP_RESET, INPUT_DISABLE); ((*(volatile uint32_t *)0xE000ED0C) = (0x5FA0004));
          }
        }
      }
    }
  }
}

This allows teensy to reboot after reprogramming the ESP, so setup() can run again your ESP configurations... Code Swaps to ALT RX1 pin 27 where ESP's uart0 TX is attached, because ESP's uart1 TX is attached to pin 0...

Video demonstrating mqtt & UDP running on teensy, closing the monitor before clicking on ESP code upload pointed to teensy's COM46 port, as soon as the data is transfered teensy resets, i reopen the serial monitor on COM46 to show teensy startup and UDP & mqtt running again..

https://www.youtube.com/watch?v=PC3GiiDSXFw
 
I'm working on the ESP detection code once again and it works quite well, 250ms pulses when ESP is offline to query the ESP uart, and timeout of 5 seconds when "online", timeout resets for every valid CRC packet that passes when a function is called. When the ESP is offline, 250ms pulses ping the ESP until its detected, at the same time, all functions are disabled giving the loop() full speed (non blocking).

Now a question for the packet already implemented for "ESP was reset" signal. This is an addition to the detected on/off signal used by the library, this notifies the library when an ESP reset was detected. When the ESP boots up it sends a uart packet to teensy telling it, "hey, i reset, you might want to reinitialize all your setup() or init data to configure me?".

Any suggestions on whether I should create an "init"() handler, or just have teensy "reboot" when that signal is detected?
in one scenario with the handler, the user can reconfigure his own set of setup parameters to run on a fresh boot (without the need to reset teensy), on the other end, simpler would be to reboot teensy, and that will obviously stop other things that teensy /could be doing/... if a handler is a good idea, what should we call it? obviously this wouldnt be part of the ESP transparency as it's a new function ( WiFi.onReset(handle) ? ) ;P
or should we do a fallback idea?

We create a handler for the ESP init code, if the user doesnt create the handler(NULL), should it fallback to a reset method automatically instead?
 
I think having an init call would make most sense. It's going to be very frustrating for a user who doesn't understand this functionality, if their application code on their teensy is constantly resetting because their ESP has a power issue or something! :)
 
the other problem is the user probably wont know also why the ESP is partially working when its not reconfigured from teensy :eek:
 
or we could do a “combined” handler just for “connected”/“disconnected”/“reset” states (WiFi.onEvent(xxx)) so a user can run other code if the ESP is disconnected, it’ll fireoff a callback so the user can handle his code accordingly
 
Hi all, I ended up using an anonymous function callback for teensquitto that can be ran in setup() as follows:

Code:
void setup() {
  Serial.begin(1);
  Serial1.begin(2000000);
  delay(2000);  // stabilize both uarts...

  ESP.onDetect([]() {
    IPAddress ip(192, 168, 2, 168);
    IPAddress gate(192, 168, 2, 1);
    IPAddress sub(255, 255, 255, 0);
    WiFi.mode(WIFI_STA);
    WiFi.begin("Tony", "*******");
    WiFi.waitForConnectResult();
    WiFi.config(ip, gate, sub);
    // setup MQTT handlers
    mqtt.onConnect(onMqttConnect);
    mqtt.onDisconnect(onMqttDisconnect);
    mqtt.onSubscribe(onMqttSubscribe);
    mqtt.onUnsubscribe(onMqttUnsubscribe);
    mqtt.onMessage(onMqttMessage);
    mqtt.onPublish(onMqttPublish);
    WiFi.onStationModeGotIP(onWifiConnect);
    WiFi.onStationModeDisconnected(onWifiDisconnect);
    // setup MQTT connection
    IPAddress _server = { 192, 168, 2, 122 };
    mqtt.setKeepAlive(8);
    mqtt.setMaxTopicLength(128);
    mqtt.setClientId("Tony");
    mqtt.setCredentials("ESP02", "tony");
    mqtt.setServer(_server, 1883);
    mqtt.connect();

    webSocketClient.onEvent(webSocketEventClient);
    webSocketServer.onEvent(webSocketEventServer);

    webSocketServer.begin(); webSocketServer.setAuthorization("tony", "teensy");
    webSocketClient.disconnect();
    webSocketClient.setReconnectInterval(5000);

    if (  udp.listen(1234) ) {
      udp.onPacket([](AsyncUDPPacket packet) {
        Serial.print("UDP Packet Type: ");
        Serial.print(packet.isBroadcast() ? "Broadcast" : packet.isMulticast() ? "Multicast" : "Unicast");
        Serial.print(", From: ");
        Serial.print(packet.remoteIP());
        Serial.print(":");
        Serial.print(packet.remotePort());
        Serial.print(", To: ");
        Serial.print(packet.localIP());
        Serial.print(":");
        Serial.print(packet.localPort());
        Serial.print(", Length: ");
        Serial.print(packet.length());
        Serial.print(", Data: ");
        Serial.write(packet.data(), packet.length());
        Serial.println();
        // reply to the client
        packet.printf("Got %u bytes of data", packet.length());
      });
    }


  }); // end of onDetect callback

}

As you can see from the code, UDP, MQTT, WEBSOCKETS, and other things are re-registered whenever the ESP is detected, or rebooted.

I uploaded a video of pushing reset on the huzzah, and teensy reconfiguring the chip automagically from the callback, and literally, that callback configuration is huge, but successful :)

https://www.youtube.com/watch?v=AEgg5LwGVh0

I haven't added a disconnect handler, dont think it's really needed. I could add a public bool function ESP.connected() in case a user needs to identify whether an ESP is connected or not (which can be rare but, if you put the ESP to sleep, your teensy becomes non blocking as the library disables all functions
 
WiFiClientSecure.h ported over.
In previous posts, I had SPIFFS object handle File functions remotely since it's driven on another MCU, which allowed read/writing to the SPIFFS filesystem from Teensy
The 3 last functions of WiFiClientSecure:

Code:
  bool loadCACert(Stream& stream, size_t size);
  bool loadCertificate(Stream& stream, size_t size);
  bool loadPrivateKey(Stream& stream, size_t size);

were ported over to teensy as:
Code:
  bool loadCACert();
  bool loadCertificate();
  bool loadPrivateKey();

calling it uses the File that was opened with SPIFFS. So by calling it in teensy as:

Code:
if ( SPIFFS.open("/ca.der", "r") ) sclient.loadCACert(); // if file opens, load it's certificate

It will technically run sclient.loadCACert(f); at the other end of the ESP link

since those functions return bool, you'll get a 0 if failed to load file, or 1 if successful
 
Code:
Sketch uses 129560 bytes (12%) of program storage space. Maximum is 1048576 bytes.
Global variables use 11448 bytes (4%) of dynamic memory, leaving 250696 bytes for local variables. Maximum is 262144 bytes.

T3.6 @ 180MHz

in this test demo sketch, we're flooding mqtt publishes at 25ms intervals while PacketSender(win32 app) sending UDP packets every few seconds to teensy.
Reason? testing out a new handler queueing system :)
The implementation of std::vectors with std::deque container, it's now possible to push sizeable handlers into queue to process when a function is not busy waiting for it's own response.
If a function, for example publishes, and the next data is handler data which is irrelevant to it, it will automatically be queued, and processed when WiFi.events() is called. I uploaded a demo to youtube to demonstrate the test:

https://www.youtube.com/watch?v=a1k1lWzBfTo


sample log posted below:
Code:
DEC:   AA 55 A2 A2 39 1 
DEC:   AA 55 A2 A2 1 3 
DEC:   AA 55 A2 A2 10 3 
DEC:   AA 55 A2 A2 4 1 
DEC:   AA 55 38 38 7 1 
DEC:   AA 55 38 38 10 1 
DEC:   AA 55 38 38 8 1 
DEC:   AA 55 38 38 12 1 
DEC:   AA 55 38 38 14 1 
DEC:   AA 55 38 38 3 1 
DEC:   AA 55 CE CE 1 1 
*** WiFi Status 6: WL_DISCONNECTED ***
*** MQTT disconnected ***
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F A8 
Packet ID: 16296
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F A9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16297
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F AA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F AB 
*** WiFi Status 3: WL_CONNECTED ***
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F AC 
Packet ID: 16298
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F AD 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 63 171 144 
Packet ID: 16299
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 63 172 151 
Packet ID: 16300
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16301
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F AE 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16302
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F AF 
Packet ID: 16303
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B0 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16304
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B1 
Packet ID: 16305
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B2 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16306
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B4 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 4 63 179 136 
Packet ID: 16307
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16308
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F B9 
Packet ID: 16309
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16310
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16311
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16312
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16313
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F BA 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16314
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F BB 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16315
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F BC 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16316
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F BD 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16317
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F BE 
Packet ID: 16318
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F BF 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C0 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 63 191 132 
Packet ID: 16319
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16320
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C2 
Packet ID: 16321
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C3 
Packet ID: 16322
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16323
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C4 
Packet ID: 16324
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C5 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C6 
Packet ID: 16325
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16326
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F C9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F CA 
Packet ID: 16327
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F CB 
Packet ID: 16328
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16329
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16330
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16331
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F CC 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16332
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F CD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F CE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F CF 
Packet ID: 16333
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16334
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16335
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D0 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16336
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16337
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D4 
Packet ID: 16338
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D5 
Packet ID: 16339
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16340
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16341
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D6 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D7 
Packet ID: 16342
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16343
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F D9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F DA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F DB 
Packet ID: 16344
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16345
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16346
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F DC 
Packet ID: 16347
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16348
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F DD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F DE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F DF 
Packet ID: 16349
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E0 
Packet ID: 16350
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16351
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16352
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16353
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E2 
Packet ID: 16354
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E3 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16355
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E4 
Packet ID: 16356
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E5 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16357
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E6 
Packet ID: 16358
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E7 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16359
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E8 
Packet ID: 16360
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F E9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16361
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F EA 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16362
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F EB 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16363
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F EC 
Packet ID: 16364
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F ED 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16365
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F EE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F EF 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F0 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F1 
Packet ID: 16366
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16367
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16368
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F2 
Packet ID: 16369
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16370
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F4 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F5 
Packet ID: 16371
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F6 
Packet ID: 16372
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16373
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F7 
Packet ID: 16374
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16375
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F F9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F FA 
Packet ID: 16376
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F FB 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 63 249 194 
Packet ID: 16377
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 63 250 193 
Packet ID: 16378
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16379
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F FC 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16380
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F FD 
Packet ID: 16381
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F FE 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16382
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 3F FF 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 0 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 2 
Packet ID: 16383
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16384
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16385
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16386
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 3 
Packet ID: 16387
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 4 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16388
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 7 
Packet ID: 16389
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16390
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16391
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 8 
Packet ID: 16392
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A 
Packet ID: 16393
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16394
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D 
             DeQueing Handler!  Queue size: 1
PROCESS?: 207 207 0 1 0 192 168 2 122 237 53 255 255 255 255 4 210 0 6 116 101 101 110 115 121 9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16395
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16396
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16397
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F 
Packet ID: 16398
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16399
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 10 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 11 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 12 
Packet ID: 16400
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16401
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 13 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 18 86 
Packet ID: 16402
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16403
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 14 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
             DeQueing Handler!  Queue size: 1
PROCESS?: 207 207 0 1 0 192 168 2 122 237 53 255 255 255 255 4 210 0 6 116 101 101 110 115 121 9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 15 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 20 80 
Packet ID: 16404
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16405
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 16 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16406
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 17 
Packet ID: 16407
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 18 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16408
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 19 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 1A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 1B 
Packet ID: 16409
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16410
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16411
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 1C 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16412
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 1D 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16413
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 1E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 1F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 20 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 21 
Packet ID: 16414
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16415
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16416
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 22 
Packet ID: 16417
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16418
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 23 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 24 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 25 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 26 
Packet ID: 16419
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16420
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16421
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16422
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 27 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 28 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 29 
Packet ID: 16423
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16424
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16425
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 2A 
Packet ID: 16426
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 2B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 2C 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 2D 
Packet ID: 16427
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 2E 
Packet ID: 16428
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16429
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16430
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 2F 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16431
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 30 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 31 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 32 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 33 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 48 116 
Packet ID: 16432
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16433
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16434
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16435
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 34 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16436
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 35 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 36 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 37 
Packet ID: 16437
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16438
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16439
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 38 
Packet ID: 16440
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 39 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16441
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 3A 
Packet ID: 16442
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 3B 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16443
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 3C 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 3D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 3E 
Packet ID: 16444
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16445
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16446
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 3F 
Packet ID: 16447
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 40 
Packet ID: 16448
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 41 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16449
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 42 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 43 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 44 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 45 
Packet ID: 16450
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16451
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16452
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 46 
Packet ID: 16453
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16454
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 47 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16455
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 48 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 49 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 4A 
Packet ID: 16456
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16457
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16458
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 4B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 4C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 4D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 4E 
Packet ID: 16459
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16460
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16461
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16462
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 4F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 50 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 51 
Packet ID: 16463
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16464
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16465
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 52 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 53 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 54 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 55 
Packet ID: 16466
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16467
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16468
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16469
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 56 
Packet ID: 16470
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 57 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 87 19 
Packet ID: 16471
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 58 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 59 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 5A 
Packet ID: 16472
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16473
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16474
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 5B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 5C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 5D 
Packet ID: 16475
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16476
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16477
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 5E 
Packet ID: 16478
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 5F 
Packet ID: 16479
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 60 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16480
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 61 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 62 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 63 
Packet ID: 16481
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 64 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 64 98 38 
Packet ID: 16482
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 99 39 
Packet ID: 16483
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16484
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 65 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16485
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 66 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 67 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 68 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 69 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 6A 
Packet ID: 16486
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16487
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16488
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 6B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 6C 
Packet ID: 16489
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16490
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 6D 
Packet ID: 16491
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 6E 
Packet ID: 16492
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 6F 
Packet ID: 16493
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 70 
Packet ID: 16494
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 71 
Packet ID: 16495
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 72 
Packet ID: 16496
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16497
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 73 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 74 
Packet ID: 16498
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 75 
Packet ID: 16499
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 76 
Packet ID: 16500
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 77 
Packet ID: 16501
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 78 
Packet ID: 16502
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 79 
Packet ID: 16503
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16504
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16505
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 7A 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 7B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 7C 
Packet ID: 16506
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 7D 
Packet ID: 16507
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16508
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 7E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 7F 
Packet ID: 16509
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 80 
Packet ID: 16510
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 81 
Packet ID: 16511
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 82 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 83 
Packet ID: 16512
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 84 
Packet ID: 16513
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 85 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 86 
Packet ID: 16514
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16515
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 87 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 88 
Packet ID: 16516
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 89 
Packet ID: 16517
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16518
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16519
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16520
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 8A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 8B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 8C 
Packet ID: 16521
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 8D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 8E 
Packet ID: 16522
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16523
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16524
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16525
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 8F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 90 
Packet ID: 16526
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 91 
Packet ID: 16527
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16528
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 92 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 93 
Packet ID: 16529
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16530
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16531
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 94 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 95 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 96 
Packet ID: 16532
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 97 
Packet ID: 16533
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16534
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16535
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 98 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16536
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 99 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 9A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 9B 
Packet ID: 16537
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 9C 
Packet ID: 16538
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16539
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16540
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 9D 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16541
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 9E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 9F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A0 
Packet ID: 16542
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A1 
Packet ID: 16543
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16544
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16545
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A2 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16546
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A4 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A5 
Packet ID: 16547
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16548
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16549
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A6 
Packet ID: 16550
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A7 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16551
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 A9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 AA 
Packet ID: 16552
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16553
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16554
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 AB 
Packet ID: 16555
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 AC 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16556
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 AD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 AE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 AF 
Packet ID: 16557
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16558
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B0 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 175 235 
Packet ID: 16559
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16560
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16561
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B4 
Packet ID: 16562
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16563
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16564
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B5 
Packet ID: 16565
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B6 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16566
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 B9 
Packet ID: 16567
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 BA 
Packet ID: 16568
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16569
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16570
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 BB 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16571
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 BC 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 BD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 BE 
Packet ID: 16572
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16573
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16574
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 BF 
Packet ID: 16575
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C0 
Packet ID: 16576
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16577
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C4 
Packet ID: 16578
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16579
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16580
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C7 
Packet ID: 16581
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16582
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16583
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C8 
Packet ID: 16584
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 C9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 CA 
             DeQueing Handler!  Queue size: 1
PROCESS?: 207 207 0 1 0 192 168 2 122 237 53 255 255 255 255 4 210 0 6 116 101 101 110 115 121 9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16585
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16586
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 CB 
Packet ID: 16587
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 CC 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16588
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 CD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 CE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 CF 
Packet ID: 16589
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16590
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16591
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D0 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D1 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
             DeQueing Handler!  Queue size: 1
PROCESS?: 207 207 0 1 0 192 168 2 122 237 53 255 255 255 255 4 210 0 6 116 101 101 110 115 121 9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D3 
Packet ID: 16592
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16593
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16594
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D4 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 211 151 
Packet ID: 16595
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16596
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D5 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16597
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D6 
Packet ID: 16598
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D7 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16599
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 D9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 DA 
Packet ID: 16600
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 DB 
Packet ID: 16601
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16602
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16603
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 DC 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16604
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 DD 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 DE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 DF 
Packet ID: 16605
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16606
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E0 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 223 155 
Packet ID: 16607
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E1 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 4 64 224 164 
Packet ID: 16608
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16609
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E4 
Packet ID: 16610
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16611
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16612
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E5 
Packet ID: 16613
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E6 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16614
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 E9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16615
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 EA 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 64 232 172 
Packet ID: 16616
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 64 233 173 
Packet ID: 16617
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16618
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 EB 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16619
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 EC 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 ED 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 EE 
Packet ID: 16620
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16621
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16622
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 EF 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F0 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F1 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16623
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F2 
Packet ID: 16624
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16625
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16626
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F3 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16627
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F4 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F6 
Packet ID: 16628
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16629
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F7 
Packet ID: 16630
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F8 
Packet ID: 16631
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16632
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 F9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 FA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 FB 
Packet ID: 16633
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16634
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16635
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 FC 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 FD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 FE 
Packet ID: 16636
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 40 FF 
Packet ID: 16637
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16638
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16639
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 0 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16640
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 4 
Packet ID: 16641
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16642
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16643
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16644
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 7 
Packet ID: 16645
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16646
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16647
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A 
Packet ID: 16648
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16649
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16650
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B 
Packet ID: 16651
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16652
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F 
Packet ID: 16653
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16654
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16655
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 10 
Packet ID: 16656
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 11 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16657
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 12 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 14 
Packet ID: 16658
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16659
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16660
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 15 
Packet ID: 16661
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 16 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16662
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 17 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 18 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 19 
Packet ID: 16663
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16664
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16665
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 1A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 1B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 1C 
Packet ID: 16666
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16667
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16668
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 1D 
Packet ID: 16669
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 1E 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16670
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 1F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 20 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 21 
Packet ID: 16671
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16672
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16673
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 22 
Packet ID: 16674
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 23 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16675
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 24 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 25 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 26 
Packet ID: 16676
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16677
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16678
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 27 
Packet ID: 16679
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 28 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16680
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 29 
Packet ID: 16681
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 2A 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16682
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 2B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 2C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 2D 
Packet ID: 16683
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16684
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16685
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 2E 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16686
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 2F 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16687
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 30 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 31 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 32 
Packet ID: 16688
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 33 
Packet ID: 16689
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16690
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16691
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 34 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16692
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 35 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 36 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 37 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 38 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 53 112 
Packet ID: 16693
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16694
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16695
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16696
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 39 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16697
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 3A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 3B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 3C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 3D 
Packet ID: 16698
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16699
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16700
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 3E 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 61 120 
Packet ID: 16701
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 3F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 40 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 41 
Packet ID: 16702
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 42 
Packet ID: 16703
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16704
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16705
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16706
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 43 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16707
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 44 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 45 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 46 
Packet ID: 16708
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16709
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16710
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 47 
Packet ID: 16711
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 48 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16712
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 49 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 4A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 4B 
Packet ID: 16713
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 4C 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 65 74 15 
Packet ID: 16714
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 75 14 
Packet ID: 16715
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16716
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 4D 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16717
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 4E 
Packet ID: 16718
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 4F 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16719
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 50 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 51 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 52 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 53 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 54 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 55 
Packet ID: 16720
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 56 
Packet ID: 16721
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16722
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16723
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16724
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 57 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 85 16 
Packet ID: 16725
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16726
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16727
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 58 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16728
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 59 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 5A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 5B 
Packet ID: 16729
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 5C 
Packet ID: 16730
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16731
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16732
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 5D 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16733
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 5E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 5F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 60 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 61 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 94 27 
Packet ID: 16734
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16735
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16736
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16737
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 62 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16738
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 63 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 64 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 65 
Packet ID: 16739
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16740
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16741
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 66 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 67 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 68 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 69 
Packet ID: 16742
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16743
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16744
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16745
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 6A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 6B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 6C 
Packet ID: 16746
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 6D 
Packet ID: 16747
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16748
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16749
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 6E 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16750
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 6F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 70 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 71 
Packet ID: 16751
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16752
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16753
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 72 
Packet ID: 16754
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 73 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16755
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 74 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 75 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 76 
Packet ID: 16756
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16757
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16758
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 77 
Packet ID: 16759
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 78 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 79 
Packet ID: 16760
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16761
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 7A 
Packet ID: 16762
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 7B 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16763
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 7C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 7D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 7E 
Packet ID: 16764
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 7F 
Packet ID: 16765
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16766
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16767
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 80 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16768
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 81 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 82 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 83 
Packet ID: 16769
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16770
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16771
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 84 
Packet ID: 16772
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 85 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16773
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 86 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 87 
             DeQueing Handler!  Queue size: 1
PROCESS?: 207 207 0 1 0 192 168 2 122 237 53 255 255 255 255 4 210 0 6 116 101 101 110 115 121 9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 88 
Packet ID: 16774
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 89 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 135 194 
Packet ID: 16775
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16776
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16777
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 8A 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16778
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 8B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 8C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 8D 
Packet ID: 16779
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16780
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16781
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 8E 
Packet ID: 16782
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 8F 
             DeQueing Handler!  Queue size: 1
PROCESS?: 207 207 0 1 0 192 168 2 122 237 53 255 255 255 255 4 210 0 6 116 101 101 110 115 121 9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16783
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 90 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 91 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 92 
Packet ID: 16784
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 93 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 65 145 212 
Packet ID: 16785
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 146 215 
Packet ID: 16786
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16787
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 94 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16788
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 95 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 96 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 97 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 98 
Packet ID: 16789
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16790
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16791
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16792
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 99 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 9A 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 9B 
Packet ID: 16793
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16794
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16795
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 9C 
Packet ID: 16796
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 9D 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16797
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 9E 
Packet ID: 16798
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 9F 
Packet ID: 16799
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A0 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16800
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A3 
Packet ID: 16801
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16802
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16803
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A4 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A7 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 164 225 
Packet ID: 16804
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16805
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16806
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16807
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A8 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16808
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 A9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 AA 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 AB 
Packet ID: 16809
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16810
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16811
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 AC 
Packet ID: 16812
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 AD 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16813
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 AE 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 AF 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B0 
Packet ID: 16814
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16815
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16816
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B1 
Packet ID: 16817
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B2 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16818
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B4 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B5 
Packet ID: 16819
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16820
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16821
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B6 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B8 
Packet ID: 16822
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16823
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16824
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 B9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 BA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 BB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 BC 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 BD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 BE 
Packet ID: 16825
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16826
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16827
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16828
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16829
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16830
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 BF 
Packet ID: 16831
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C0 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16832
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C3 
Packet ID: 16833
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16834
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16835
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C4 
Packet ID: 16836
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C5 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16837
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C8 
Packet ID: 16838
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16839
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16840
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 C9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 CA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 CB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 CC 
Packet ID: 16841
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16842
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16843
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16844
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 CD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 CE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 CF 
Packet ID: 16845
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16846
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D0 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 65 207 138 
Packet ID: 16847
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16848
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16849
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D4 
Packet ID: 16850
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16851
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16852
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D5 
Packet ID: 16853
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D6 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16854
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 D9 
Packet ID: 16855
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16856
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16857
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 DA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 DB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 DC 
Packet ID: 16858
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16859
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16860
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 DD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 DE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 DF 
Packet ID: 16861
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16862
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16863
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E0 
Packet ID: 16864
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E1 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E2 
Packet ID: 16865
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16866
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E3 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16867
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E4 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E6 
Packet ID: 16868
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16869
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16870
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E7 
Packet ID: 16871
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E8 
Packet ID: 16872
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 E9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16873
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 EA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 EB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 EC 
Packet ID: 16874
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16875
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16876
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 ED 
Packet ID: 16877
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 EE 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16878
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 EF 
Packet ID: 16879
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F0 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16880
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F3 
Packet ID: 16881
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16882
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16883
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F4 
Packet ID: 16884
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F5 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16885
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F7 
Packet ID: 16886
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16887
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F8 
Packet ID: 16888
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 F9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16889
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 FA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 FB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 FC 
Packet ID: 16890
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16891
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16892
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 FD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 FE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 41 FF 
Packet ID: 16893
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16894
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16895
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 0 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 2 
Packet ID: 16896
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16897
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16898
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 3 
Packet ID: 16899
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 4 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16900
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 7 
Packet ID: 16901
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16902
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16903
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 9 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A 
Packet ID: 16904
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16905
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16906
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B 
Packet ID: 16907
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16908
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 F 
Packet ID: 16909
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16910
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16911
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 10 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 11 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 12 
Packet ID: 16912
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 13 
Packet ID: 16913
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16914
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16915
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 14 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 15 
Packet ID: 16916
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16917
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 16 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 17 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 18 
Packet ID: 16918
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16919
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16920
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 19 
Packet ID: 16921
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 1A 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16922
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 1B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 1C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 1D 
Packet ID: 16923
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16924
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16925
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 1E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 1F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 20 
Packet ID: 16926
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 21 
Packet ID: 16927
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16928
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16929
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 22 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16930
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 23 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 24 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 25 
Packet ID: 16931
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 26 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 66 36 98 
Packet ID: 16932
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 66 37 99 
Packet ID: 16933
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 27 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 28 
Packet ID: 16934
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16935
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 29 
Packet ID: 16936
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16937
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 2A 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16938
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 2B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 2C 
Packet ID: 16939
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 2D 
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16940
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16941
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 2E 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16942
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 2F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 30 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 31 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 32 
Packet ID: 16943
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16944
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16945
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16946
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 33 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 34 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 35 
Packet ID: 16947
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16948
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 36 
Packet ID: 16949
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16950
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 37 
Packet ID: 16951
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 38 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16952
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 39 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 3A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 3B 
Packet ID: 16953
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16954
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16955
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 3C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 3D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 3E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 3F 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 66 60 122 
Packet ID: 16956
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16957
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16958
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16959
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 40 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16960
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 41 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 42 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 43 
Packet ID: 16961
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16962
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16963
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 44 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16964
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 45 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16965
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 46 
Packet ID: 16966
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 47 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 48 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 49 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 4A 
Packet ID: 16967
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16968
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16969
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16970
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 4B 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 4C 
             DeQueing Handler!  Queue size: 1
PROCESS?: 207 207 0 1 0 192 168 2 122 237 53 255 255 255 255 4 210 0 6 116 101 101 110 115 121 9 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 4D 
Packet ID: 16971
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16972
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16973
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 4E 
Packet ID: 16974
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 4F 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16975
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 50 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 51 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 52 
Packet ID: 16976
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16977
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16978
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 53 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 54 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 55 
Packet ID: 16979
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16980
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16981
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 56 
Packet ID: 16982
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 57 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 58 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 59 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 5A 
Packet ID: 16983
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16984
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16985
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16986
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 5B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 5C 
Packet ID: 16987
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 5D 
Packet ID: 16988
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16989
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 5E 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16990
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 5F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 60 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 61 
Packet ID: 16991
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16992
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16993
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 62 
Packet ID: 16994
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 63 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16995
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 64 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 65 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 66 
Packet ID: 16996
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16997
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 16998
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 67 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 16999
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 68 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17000
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 69 
Packet ID: 17001
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 6A 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17002
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 6B 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 6C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 6D 
Packet ID: 17003
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 6E 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 66 108 42 
Packet ID: 17004
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 66 109 43 
Packet ID: 17005
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17006
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 6F 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17007
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 70 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 71 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 72 
Packet ID: 17008
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17009
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17010
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 73 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
Packet ID: 17011
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 74 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 75 
Packet ID: 17012
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17013
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 76 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 77 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 78 
Packet ID: 17014
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17015
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 79 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 66 120 62 
Packet ID: 17016
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17017
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 7A 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17018
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 7B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 7C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 7D 
Packet ID: 17019
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17020
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17021
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 7E 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 7F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 80 
Packet ID: 17022
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17023
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17024
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 81 
Packet ID: 17025
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 82 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17026
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 83 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 84 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 85 
Packet ID: 17027
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17028
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17029
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 86 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 87 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 88 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 89 
Packet ID: 17030
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17031
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17032
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17033
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 8A 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 8B 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 8C 
Packet ID: 17034
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17035
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17036
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 8D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 8E 
UDP Packet Type: Broadcast, From: 192.168.2.122:60725, To: 255.255.255.255:1234, Length: 6, Data: teensy
DEC:   AA 55 CE CE 5 0 0 0 13 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 8F 
Packet ID: 17037
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 90 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 66 142 200 
Packet ID: 17038
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 66 143 201 
Packet ID: 17039
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17040
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 91 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17041
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 92 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 93 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 94 
Packet ID: 17042
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17043
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17044
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 95 
Packet ID: 17045
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 96 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17046
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 97 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 98 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 99 
Packet ID: 17047
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17048
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17049
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 9A 
Packet ID: 17050
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 9B 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17051
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 9C 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 9D 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 9E 
Packet ID: 17052
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 9F 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A0 
Packet ID: 17053
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A2 
             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 66 158 216 
Packet ID: 17054
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17055
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17056
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17057
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17058
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A3 
Packet ID: 17059
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A4 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17060
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A7 
Packet ID: 17061
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17062
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17063
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A8 
Packet ID: 17064
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 A9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17065
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 AA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 AB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 AC 
Packet ID: 17066
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17067
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17068
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 AD 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 AE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 AF 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B0 
Packet ID: 17069
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17070
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17071
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B1 
Packet ID: 17072
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17073
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B4 
Packet ID: 17074
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17075
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17076
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B5 
Packet ID: 17077
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B6 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17078
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B7 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B8 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 B9 
Packet ID: 17079
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17080
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17081
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 BA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 BB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 BC 
Packet ID: 17082
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 BD 
             DeQueing Handler!  Queue size: 4
PROCESS?: 175 175 4 66 187 253 
Packet ID: 17083
             DeQueing Handler!  Queue size: 3
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


             DeQueing Handler!  Queue size: 2
PROCESS?: 175 175 4 66 188 250 
Packet ID: 17084
             DeQueing Handler!  Queue size: 1
PROCESS?: 175 175 5 0 12 2 0 0 0 0 0 11 0 0 0 0 0 0 0 11 116 101 101 110 115 113 117 105 116 116 111 47 104 101 108 108 111 32 119 111 114 108 100 111 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17085
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 BE 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 BF 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C0 
Packet ID: 17086
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17087
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17088
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C1 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C2 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C3 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C4 
Packet ID: 17089
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17090
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17091
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17092
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C5 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C6 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C7 
Packet ID: 17093
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17094
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17095
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C8 
Packet ID: 17096
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 C9 
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


Packet ID: 17097
****************************
Publish received.
 topic: teensquitto/ payload: hello world
 qos: 2 dup: 0
 retain: 0 len: 11 index: 0 total: 11


DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 CA 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 CB 
DEC:   AA 55 EA EA 11 0 
DEC:   AA 55 38 38 6 42 CC 
Packet ID: 17098
****************************

the current test is running at 2megabaud speeds

queues are being popped from the front and pushed in the back :)
 
Status
Not open for further replies.
Back
Top