esp32-snippets
esp32-snippets copied to clipboard
Timeout on BLE (Random disconnect)
I got most of the code from nkolban with minimal changes for reading an analog value and relaying to a cordova app.
I can connect and get values; however, what seems like after 5 seconds to 2 minutes, I get an error on the cordova app that "The connection has timed out". I similarly get the nRF Connect app to connect and read values but all of a sudden it disconnects in a similar way so I don't think it's the phone software.
I have tried updating the arduino library as stated by replacing this repository (nkolban cpp_utils), restarting arduino, but it didn't work.
Any ideas? Did I do something stupid or should I test anything? I would like to avoid constantly reconnecting if possible.
#include <BLEDevice.h>
#include <BLEServer.h>
#include <BLEUtils.h>
#include <BLE2902.h>
BLECharacteristic* pCharacteristic = NULL;
// See the following for generating UUIDs:
// https://www.uuidgenerator.net/
#define SERVICE_UUID "F8D61858-DD19-4CED-B921-6E6CCE526D48"
#define CHARACTERISTIC_UUID "9F576249-8BE9-40B0-B009-C31FB8781207"
#define DESCRIPTOR_UUID "a928d2aa-d48e-45aa-a8c1-51e2b44a7c45"
bool deviceConnected = false;
bool oldDeviceConnected = false;
//uint8_t value = 0;
class MyServerCallbacks: public BLEServerCallbacks {
void onConnect(BLEServer* pServer) {
deviceConnected = true;
};
void onDisconnect(BLEServer* pServer) {
deviceConnected = false;
}
};
void setup() {
BLEServer* pServer = NULL;
BLEDescriptor* pDescriptor = NULL;
// Create the BLE Device
BLEDevice::init("ESP32");
// Create the BLE Server
pServer = BLEDevice::createServer();
pServer->setCallbacks(new MyServerCallbacks());
// Create the BLE Service
BLEService *pService = pServer->createService(SERVICE_UUID);
// Create a BLE Characteristic
pCharacteristic = pService->createCharacteristic(
CHARACTERISTIC_UUID,
BLECharacteristic::PROPERTY_NOTIFY
);
// https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.descriptor.gatt.client_characteristic_configuration.xml
// Create a BLE Descriptor
pCharacteristic->addDescriptor(new BLE2902());
// Start the service
pService->start();
// Start advertising
pServer->getAdvertising()->addServiceUUID(pService->getUUID());
pServer->getAdvertising()->start();
}
void loop() {
int analogValue = 0;
// notify changed value
if (deviceConnected) {
pCharacteristic->setValue(analogValue);
pCharacteristic->notify();
delay(250); // bluetooth stack will go into congestion, if too many packets are sent
}
....
}
Here is the verbose log from arduino
[D][BLECharacteristic.cpp:664] setValue(): >> setValue: length=4, data=ae070000, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 [D][BLECharacteristic.cpp:671] setValue(): << setValue [D][BLECharacteristic.cpp:524] notify(): >> notify: length: 4 [D][BLEDevice.cpp:96] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... ESP_GATTS_CONF_EVT [D][BLEUtils.cpp:1647] dumpGattServerEvent(): GATT ServerEvent: ESP_GATTS_CONF_EVT [D][BLEUtils.cpp:1692] dumpGattServerEvent(): [status: ESP_GATT_OK, conn_id: 0x00] [D][BLEServer.cpp:177] handleGATTServerEvent(): >> handleGATTServerEvent: ESP_GATTS_CONF_EVT [D][BLECharacteristic.cpp:209] handleGATTServerEvent(): >> handleGATTServerEvent: ESP_GATTS_CONF_EVT [D][BLECharacteristic.cpp:566] notify(): << notify [D][BLECharacteristic.cpp:461] handleGATTServerEvent(): << handleGATTServerEvent [D][BLEServer.cpp:295] handleGATTServerEvent(): << handleGATTServerEvent [D][BLEDevice.cpp:96] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... ESP_GATTS_DISCONNECT_EVT [D][BLEUtils.cpp:1647] dumpGattServerEvent(): GATT ServerEvent: ESP_GATTS_DISCONNECT_EVT [D][BLEUtils.cpp:1723] dumpGattServerEvent(): [conn_id: 0, remote_bda: 65:c3:41:74:59:c6] [D][BLEServer.cpp:177] handleGATTServerEvent(): >> handleGATTServerEvent: ESP_GATTS_DISCONNECT_EVT [D][BLECharacteristic.cpp:209] handleGATTServerEvent(): >> handleGATTServerEvent: ESP_GATTS_DISCONNECT_EVT [D][BLECharacteristic.cpp:461] handleGATTServerEvent(): << handleGATTServerEvent
This now works without disconnect when using @chegewara repository.
https://github.com/chegewara/esp32-snippets-enchancements-test
Thank you everyone for this library, and Thanks @chegewara for your work on improving the code
Hmmm, if I change delay from 250 to 100 I am back where I started. I know you mentioned you had 70Hz, but this seems like it is only 4Hz. Is it because I am sending an int?
Hi @msj121 I will try to test it asap with arduino, because my high performance was from esp-idf.
Thanks!
@msj121 Here is log from nRF connect. First time ive got situation when my samsung S9+ got problem with copy/paste nRF connect logs after few seconds connection (so many logs):
nRF Connect, 2018-11-29
No name (30:AE:A4:43:A1:72)
D 00:25:31.330 gatt.close()
D 00:25:31.340 wait(200)
V 00:25:31.545 Connecting to 30:AE:A4:43:A1:72...
D 00:25:31.546 gatt = device.connectGatt(autoConnect = false, TRANSPORT_LE, preferred PHY = LE 1M)
D 00:25:31.852 [Server callback] Connection state changed with status: 0 and new state: CONNECTED (2)
I 00:25:31.852 [Server] Device with address 30:AE:A4:43:A1:72 connected
D 00:25:31.872 [Callback] Connection state changed with status: 0 and new state: CONNECTED (2)
I 00:25:31.872 Connected to 30:AE:A4:43:A1:72
D 00:25:31.874 [Broadcast] Action received: android.bluetooth.device.action.ACL_CONNECTED
V 00:25:31.894 Discovering services...
D 00:25:31.894 gatt.discoverServices()
I 00:25:32.347 Connection parameters updated (interval: 7.5ms, latency: 0, timeout: 5000ms)
D 00:25:32.553 [Callback] Services discovered with status: 0
I 00:25:32.553 Services discovered
V 00:25:32.561 Generic Attribute (0x1801)
- Service Changed [I] (0x2A05)
Client Characteristic Configuration (0x2902)
Generic Access (0x1800)
- Device Name [R] (0x2A00)
- Appearance [R] (0x2A01)
- Central Address Resolution [R] (0x2AA6)
Unknown Service (4fafc201-1fb5-459e-8fcc-c5c9c331914b)
- Unknown Characteristic [I N R W] (beb5483e-36e1-4688-b7f5-ea07361b26a8)
Client Characteristic Configuration (0x2902)
D 00:25:32.561 gatt.setCharacteristicNotification(00002a05-0000-1000-8000-00805f9b34fb, true)
D 00:25:32.563 gatt.setCharacteristicNotification(beb5483e-36e1-4688-b7f5-ea07361b26a8, true)
I 00:25:32.576 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 01
A 00:25:32.576 "(0x) 01" received
I 00:25:32.584 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 02
A 00:25:32.584 "(0x) 02" received
I 00:25:32.592 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 03
A 00:25:32.592 "(0x) 03" received
I 00:25:32.600 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 04
A 00:25:32.600 "(0x) 04" received
I 00:25:32.607 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 05
A 00:25:32.607 "(0x) 05" received
I 00:25:32.667 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 06
A 00:25:32.667 "(0x) 06" received
I 00:25:32.675 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 07
A 00:25:32.675 "(0x) 07" received
I 00:25:32.680 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 08
A 00:25:32.680 "(0x) 08" received
I 00:25:32.689 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 09
A 00:25:32.689 "(0x) 09" received
I 00:25:32.695 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0A
A 00:25:32.695 "(0x) 0A" received
I 00:25:32.703 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0B
A 00:25:32.703 "(0x) 0B" received
I 00:25:32.710 Connection parameters updated (interval: 48.75ms, latency: 0, timeout: 5000ms)
I 00:25:32.719 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0C
A 00:25:32.719 "(0x) 0C" received
I 00:25:32.727 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0D
A 00:25:32.727 "(0x) 0D" received
I 00:25:32.735 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0E
A 00:25:32.735 "(0x) 0E" received
I 00:25:32.741 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0F
A 00:25:32.741 "(0x) 0F" received
I 00:25:32.750 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 10
A 00:25:32.750 "(0x) 10" received
I 00:25:32.764 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 11
A 00:25:32.764 "(0x) 11" received
I 00:25:32.764 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 12
A 00:25:32.764 "(0x) 12" received
I 00:25:32.770 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 13
A 00:25:32.770 "(0x) 13" received
I 00:25:32.776 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 14
A 00:25:32.776 "(0x) 14" received
I 00:25:32.782 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 15
A 00:25:32.782 "(0x) 15" received
I 00:25:32.813 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 16
A 00:25:32.813 "(0x) 16" received
I 00:25:32.820 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 17
A 00:25:32.820 "(0x) 17" received
I 00:25:32.826 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 18
A 00:25:32.826 "(0x) 18" received
I 00:25:32.832 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 19
A 00:25:32.832 "(0x) 19" received
I 00:25:32.840 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1A
A 00:25:32.840 "(0x) 1A" received
I 00:25:32.862 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1B
A 00:25:32.862 "(0x) 1B" received
I 00:25:32.869 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1C
A 00:25:32.869 "(0x) 1C" received
I 00:25:32.875 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1D
A 00:25:32.875 "(0x) 1D" received
I 00:25:32.882 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1E
A 00:25:32.882 "(0x) 1E" received
I 00:25:32.910 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1F
A 00:25:32.910 "(0x) 1F" received
I 00:25:32.917 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 20, " "
A 00:25:32.917 "(0x) 20, " "" received
I 00:25:32.923 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 21, "!"
A 00:25:32.923 "(0x) 21, "!"" received
I 00:25:32.929 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 22, """
A 00:25:32.929 "(0x) 22, """" received
I 00:25:32.938 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 23, "#"
A 00:25:32.938 "(0x) 23, "#"" received
I 00:25:32.959 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 24, "$"
A 00:25:32.959 "(0x) 24, "$"" received
I 00:25:32.966 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 25, "%"
A 00:25:32.966 "(0x) 25, "%"" received
I 00:25:32.973 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 26, "&"
A 00:25:32.973 "(0x) 26, "&"" received
I 00:25:32.979 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 27, "'"
A 00:25:32.979 "(0x) 27, "'"" received
I 00:25:32.986 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 28, "("
A 00:25:32.986 "(0x) 28, "("" received
I 00:25:33.008 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 29, ")"
A 00:25:33.008 "(0x) 29, ")"" received
I 00:25:33.014 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2A, "*"
A 00:25:33.014 "(0x) 2A, "*"" received
I 00:25:33.020 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2B, "+"
A 00:25:33.020 "(0x) 2B, "+"" received
I 00:25:33.026 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2C, ","
A 00:25:33.026 "(0x) 2C, ","" received
I 00:25:33.032 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2D, "-"
A 00:25:33.032 "(0x) 2D, "-"" received
I 00:25:33.057 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2E, "."
A 00:25:33.057 "(0x) 2E, "."" received
I 00:25:33.062 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2F, "/"
A 00:25:33.062 "(0x) 2F, "/"" received
I 00:25:33.068 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 30, "0"
A 00:25:33.068 "(0x) 30, "0"" received
I 00:25:33.077 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 31, "1"
A 00:25:33.077 "(0x) 31, "1"" received
I 00:25:33.085 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 32, "2"
A 00:25:33.085 "(0x) 32, "2"" received
I 00:25:33.105 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 33, "3"
A 00:25:33.105 "(0x) 33, "3"" received
I 00:25:33.111 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 34, "4"
A 00:25:33.111 "(0x) 34, "4"" received
I 00:25:33.117 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 35, "5"
A 00:25:33.117 "(0x) 35, "5"" received
I 00:25:33.123 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 36, "6"
A 00:25:33.123 "(0x) 36, "6"" received
I 00:25:33.130 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 37, "7"
A 00:25:33.130 "(0x) 37, "7"" received
I 00:25:33.154 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 38, "8"
A 00:25:33.154 "(0x) 38, "8"" received
I 00:25:33.162 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 39, "9"
A 00:25:33.162 "(0x) 39, "9"" received
I 00:25:33.167 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3A, ":"
A 00:25:33.167 "(0x) 3A, ":"" received
I 00:25:33.172 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3B, ";"
A 00:25:33.173 "(0x) 3B, ";"" received
I 00:25:33.178 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3C, "<"
A 00:25:33.178 "(0x) 3C, "<"" received
I 00:25:33.203 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3D, "="
A 00:25:33.203 "(0x) 3D, "="" received
I 00:25:33.209 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3E, ">"
A 00:25:33.209 "(0x) 3E, ">"" received
I 00:25:33.214 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3F, "?"
A 00:25:33.214 "(0x) 3F, "?"" received
I 00:25:33.226 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 40, "@"
A 00:25:33.226 "(0x) 40, "@"" received
I 00:25:33.231 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 41, "A"
A 00:25:33.231 "(0x) 41, "A"" received
I 00:25:33.252 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 42, "B"
A 00:25:33.252 "(0x) 42, "B"" received
I 00:25:33.259 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 43, "C"
A 00:25:33.259 "(0x) 43, "C"" received
I 00:25:33.265 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 44, "D"
A 00:25:33.265 "(0x) 44, "D"" received
I 00:25:33.273 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 45, "E"
A 00:25:33.273 "(0x) 45, "E"" received
I 00:25:33.301 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 46, "F"
A 00:25:33.301 "(0x) 46, "F"" received
I 00:25:33.318 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 47, "G"
A 00:25:33.318 "(0x) 47, "G"" received
I 00:25:33.324 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 48, "H"
A 00:25:33.324 "(0x) 48, "H"" received
I 00:25:33.329 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 49, "I"
A 00:25:33.329 "(0x) 49, "I"" received
I 00:25:33.335 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4A, "J"
A 00:25:33.335 "(0x) 4A, "J"" received
I 00:25:33.349 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4B, "K"
A 00:25:33.349 "(0x) 4B, "K"" received
I 00:25:33.355 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4C, "L"
A 00:25:33.355 "(0x) 4C, "L"" received
I 00:25:33.362 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4D, "M"
A 00:25:33.362 "(0x) 4D, "M"" received
I 00:25:33.371 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4E, "N"
A 00:25:33.371 "(0x) 4E, "N"" received
I 00:25:33.372 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4F, "O"
A 00:25:33.372 "(0x) 4F, "O"" received
I 00:25:33.398 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 50, "P"
A 00:25:33.398 "(0x) 50, "P"" received
I 00:25:33.418 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 51, "Q"
A 00:25:33.418 "(0x) 51, "Q"" received
I 00:25:33.435 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 52, "R"
A 00:25:33.435 "(0x) 52, "R"" received
I 00:25:33.443 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 53, "S"
A 00:25:33.443 "(0x) 53, "S"" received
I 00:25:33.452 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 54, "T"
A 00:25:33.452 "(0x) 54, "T"" received
I 00:25:33.458 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 55, "U"
A 00:25:33.458 "(0x) 55, "U"" received
I 00:25:33.468 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 56, "V"
A 00:25:33.468 "(0x) 56, "V"" received
I 00:25:33.474 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 57, "W"
A 00:25:33.474 "(0x) 57, "W"" received
I 00:25:33.479 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 58, "X"
A 00:25:33.479 "(0x) 58, "X"" received
I 00:25:33.484 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 59, "Y"
A 00:25:33.484 "(0x) 59, "Y"" received
I 00:25:33.495 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5A, "Z"
A 00:25:33.495 "(0x) 5A, "Z"" received
I 00:25:33.501 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5B, "["
A 00:25:33.501 "(0x) 5B, "["" received
I 00:25:33.520 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5C, "\"
A 00:25:33.520 "(0x) 5C, "\"" received
I 00:25:33.520 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5D, "]"
A 00:25:33.520 "(0x) 5D, "]"" received
I 00:25:33.520 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5E, "^"
A 00:25:33.520 "(0x) 5E, "^"" received
I 00:25:33.544 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5F, "_"
A 00:25:33.544 "(0x) 5F, "_"" received
I 00:25:33.548 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 60, "`"
A 00:25:33.548 "(0x) 60, "`"" received
I 00:25:33.554 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 61, "a"
A 00:25:33.554 "(0x) 61, "a"" received
I 00:25:33.559 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 62, "b"
A 00:25:33.559 "(0x) 62, "b"" received
I 00:25:33.563 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 63, "c"
A 00:25:33.563 "(0x) 63, "c"" received
I 00:25:33.593 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 64, "d"
A 00:25:33.593 "(0x) 64, "d"" received
I 00:25:33.598 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 65, "e"
A 00:25:33.598 "(0x) 65, "e"" received
I 00:25:33.602 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 66, "f"
A 00:25:33.602 "(0x) 66, "f"" received
I 00:25:33.609 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 67, "g"
A 00:25:33.609 "(0x) 67, "g"" received
I 00:25:33.615 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 68, "h"
A 00:25:33.615 "(0x) 68, "h"" received
I 00:25:33.641 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 69, "i"
A 00:25:33.641 "(0x) 69, "i"" received
I 00:25:33.647 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6A, "j"
A 00:25:33.647 "(0x) 6A, "j"" received
I 00:25:33.652 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6B, "k"
A 00:25:33.652 "(0x) 6B, "k"" received
I 00:25:33.657 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6C, "l"
A 00:25:33.657 "(0x) 6C, "l"" received
I 00:25:33.690 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6D, "m"
A 00:25:33.690 "(0x) 6D, "m"" received
I 00:25:33.691 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6E, "n"
A 00:25:33.691 "(0x) 6E, "n"" received
I 00:25:33.700 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6F, "o"
A 00:25:33.700 "(0x) 6F, "o"" received
I 00:25:33.707 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 70, "p"
A 00:25:33.707 "(0x) 70, "p"" received
I 00:25:33.714 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 71, "q"
A 00:25:33.714 "(0x) 71, "q"" received
I 00:25:33.739 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 72, "r"
A 00:25:33.739 "(0x) 72, "r"" received
I 00:25:33.746 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 73, "s"
A 00:25:33.746 "(0x) 73, "s"" received
I 00:25:33.753 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 74, "t"
A 00:25:33.753 "(0x) 74, "t"" received
I 00:25:33.758 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 75, "u"
A 00:25:33.758 "(0x) 75, "u"" received
I 00:25:33.765 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 76, "v"
A 00:25:33.765 "(0x) 76, "v"" received
I 00:25:33.788 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 77, "w"
A 00:25:33.788 "(0x) 77, "w"" received
I 00:25:33.795 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 78, "x"
A 00:25:33.795 "(0x) 78, "x"" received
I 00:25:33.802 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 79, "y"
A 00:25:33.802 "(0x) 79, "y"" received
I 00:25:33.812 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7A, "z"
A 00:25:33.812 "(0x) 7A, "z"" received
I 00:25:33.837 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7B, "{"
A 00:25:33.837 "(0x) 7B, "{"" received
I 00:25:33.843 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7C, "|"
A 00:25:33.843 "(0x) 7C, "|"" received
I 00:25:33.848 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7D, "}"
A 00:25:33.848 "(0x) 7D, "}"" received
I 00:25:33.858 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7E, "~"
A 00:25:33.858 "(0x) 7E, "~"" received
I 00:25:33.864 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7F
A 00:25:33.864 "(0x) 7F" received
I 00:25:33.871 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 80
A 00:25:33.871 "(0x) 80" received
I 00:25:33.886 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 81
A 00:25:33.886 "(0x) 81" received
I 00:25:33.892 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 82
A 00:25:33.892 "(0x) 82" received
I 00:25:33.900 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 83
A 00:25:33.900 "(0x) 83" received
I 00:25:33.907 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 84
A 00:25:33.907 "(0x) 84" received
I 00:25:33.915 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 85
A 00:25:33.915 "(0x) 85" received
I 00:25:33.935 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 86
A 00:25:33.935 "(0x) 86" received
I 00:25:33.942 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 87
A 00:25:33.942 "(0x) 87" received
I 00:25:33.949 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 88
A 00:25:33.949 "(0x) 88" received
I 00:25:33.956 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 89
A 00:25:33.956 "(0x) 89" received
I 00:25:33.965 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8A
A 00:25:33.965 "(0x) 8A" received
I 00:25:33.983 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8B
A 00:25:33.983 "(0x) 8B" received
I 00:25:33.989 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8C
A 00:25:33.989 "(0x) 8C" received
I 00:25:33.996 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8D
A 00:25:33.996 "(0x) 8D" received
I 00:25:34.002 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8E
A 00:25:34.002 "(0x) 8E" received
I 00:25:34.007 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8F
A 00:25:34.007 "(0x) 8F" received
I 00:25:34.032 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 90
A 00:25:34.032 "(0x) 90" received
I 00:25:34.042 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 91
A 00:25:34.042 "(0x) 91" received
I 00:25:34.048 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 92
A 00:25:34.048 "(0x) 92" received
I 00:25:34.061 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 93
A 00:25:34.061 "(0x) 93" received
I 00:25:34.081 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 94
A 00:25:34.081 "(0x) 94" received
I 00:25:34.087 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 95
A 00:25:34.087 "(0x) 95" received
I 00:25:34.093 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 96
A 00:25:34.093 "(0x) 96" received
I 00:25:34.100 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 97
A 00:25:34.100 "(0x) 97" received
I 00:25:34.106 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 98
A 00:25:34.106 "(0x) 98" received
I 00:25:34.130 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 99
A 00:25:34.130 "(0x) 99" received
I 00:25:34.137 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9A
A 00:25:34.137 "(0x) 9A" received
I 00:25:34.146 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9B
A 00:25:34.146 "(0x) 9B" received
I 00:25:34.152 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9C
A 00:25:34.152 "(0x) 9C" received
I 00:25:34.161 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9D
A 00:25:34.161 "(0x) 9D" received
I 00:25:34.178 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9E
A 00:25:34.178 "(0x) 9E" received
I 00:25:34.183 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9F
A 00:25:34.183 "(0x) 9F" received
I 00:25:34.188 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A0
A 00:25:34.188 "(0x) A0" received
I 00:25:34.193 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A1
A 00:25:34.193 "(0x) A1" received
I 00:25:34.199 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A2
A 00:25:34.199 "(0x) A2" received
I 00:25:34.235 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A3
A 00:25:34.235 "(0x) A3" received
I 00:25:34.235 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A4
A 00:25:34.235 "(0x) A4" received
I 00:25:34.235 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A5
A 00:25:34.235 "(0x) A5" received
I 00:25:34.243 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A6
A 00:25:34.243 "(0x) A6" received
I 00:25:34.249 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A7
A 00:25:34.249 "(0x) A7" received
I 00:25:34.275 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A8
A 00:25:34.275 "(0x) A8" received
I 00:25:34.280 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A9
A 00:25:34.280 "(0x) A9" received
I 00:25:34.285 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AA
A 00:25:34.285 "(0x) AA" received
I 00:25:34.290 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AB
A 00:25:34.290 "(0x) AB" received
I 00:25:34.295 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AC
A 00:25:34.295 "(0x) AC" received
I 00:25:34.324 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AD
A 00:25:34.324 "(0x) AD" received
I 00:25:34.330 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AE
A 00:25:34.330 "(0x) AE" received
I 00:25:34.335 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AF
A 00:25:34.336 "(0x) AF" received
I 00:25:34.343 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B0
A 00:25:34.343 "(0x) B0" received
I 00:25:34.349 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B1
A 00:25:34.349 "(0x) B1" received
I 00:25:34.373 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B2
A 00:25:34.373 "(0x) B2" received
I 00:25:34.381 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B3
A 00:25:34.381 "(0x) B3" received
I 00:25:34.389 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B4
A 00:25:34.389 "(0x) B4" received
I 00:25:34.395 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B5
A 00:25:34.395 "(0x) B5" received
I 00:25:34.401 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B6
A 00:25:34.401 "(0x) B6" received
I 00:25:34.422 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B7
A 00:25:34.422 "(0x) B7" received
I 00:25:34.431 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B8
A 00:25:34.431 "(0x) B8" received
I 00:25:34.450 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B9
A 00:25:34.450 "(0x) B9" received
I 00:25:34.451 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BA
A 00:25:34.451 "(0x) BA" received
I 00:25:34.474 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BB
A 00:25:34.474 "(0x) BB" received
I 00:25:34.491 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BC
A 00:25:34.491 "(0x) BC" received
I 00:25:34.491 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BD
A 00:25:34.491 "(0x) BD" received
I 00:25:34.491 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BE
A 00:25:34.491 "(0x) BE" received
I 00:25:34.491 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BF
A 00:25:34.491 "(0x) BF" received
I 00:25:34.521 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C0
A 00:25:34.521 "(0x) C0" received
I 00:25:34.526 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C1
A 00:25:34.526 "(0x) C1" received
I 00:25:34.532 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C2
A 00:25:34.532 "(0x) C2" received
I 00:25:34.537 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C3
A 00:25:34.537 "(0x) C3" received
I 00:25:34.547 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C4
A 00:25:34.547 "(0x) C4" received
I 00:25:34.568 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C5
A 00:25:34.568 "(0x) C5" received
I 00:25:34.572 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C6
A 00:25:34.572 "(0x) C6" received
I 00:25:34.577 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C7
A 00:25:34.577 "(0x) C7" received
I 00:25:34.593 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C8
A 00:25:34.593 "(0x) C8" received
I 00:25:34.599 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C9
A 00:25:34.599 "(0x) C9" received
I 00:25:34.617 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CA
A 00:25:34.617 "(0x) CA" received
I 00:25:34.629 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CB
A 00:25:34.629 "(0x) CB" received
I 00:25:34.636 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CC
A 00:25:34.636 "(0x) CC" received
I 00:25:34.648 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CD
A 00:25:34.648 "(0x) CD" received
I 00:25:34.655 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CE
A 00:25:34.655 "(0x) CE" received
I 00:25:34.668 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CF
A 00:25:34.668 "(0x) CF" received
I 00:25:34.677 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D0
A 00:25:34.677 "(0x) D0" received
I 00:25:34.688 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D1
A 00:25:34.688 "(0x) D1" received
I 00:25:34.694 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D2
A 00:25:34.694 "(0x) D2" received
I 00:25:34.704 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D3
A 00:25:34.704 "(0x) D3" received
I 00:25:34.714 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D4
A 00:25:34.714 "(0x) D4" received
I 00:25:34.720 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D5
A 00:25:34.720 "(0x) D5" received
I 00:25:34.726 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D6
A 00:25:34.726 "(0x) D6" received
I 00:25:34.731 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D7
A 00:25:34.731 "(0x) D7" received
I 00:25:34.737 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D8
A 00:25:34.737 "(0x) D8" received
I 00:25:34.763 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D9
A 00:25:34.763 "(0x) D9" received
I 00:25:34.768 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DA
A 00:25:34.768 "(0x) DA" received
I 00:25:34.775 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DB
A 00:25:34.775 "(0x) DB" received
I 00:25:34.782 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DC
A 00:25:34.782 "(0x) DC" received
I 00:25:34.787 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DD
A 00:25:34.787 "(0x) DD" received
I 00:25:34.811 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DE
A 00:25:34.811 "(0x) DE" received
I 00:25:34.816 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DF
A 00:25:34.816 "(0x) DF" received
I 00:25:34.824 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E0
A 00:25:34.824 "(0x) E0" received
I 00:25:34.830 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E1
A 00:25:34.830 "(0x) E1" received
I 00:25:34.867 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E2
A 00:25:34.867 "(0x) E2" received
I 00:25:34.873 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E3
A 00:25:34.873 "(0x) E3" received
I 00:25:34.879 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E4
A 00:25:34.879 "(0x) E4" received
I 00:25:34.885 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E5
A 00:25:34.885 "(0x) E5" received
I 00:25:34.892 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E6
A 00:25:34.892 "(0x) E6" received
I 00:25:34.909 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E7
A 00:25:34.909 "(0x) E7" received
I 00:25:34.915 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E8
A 00:25:34.915 "(0x) E8" received
I 00:25:34.921 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E9
A 00:25:34.921 "(0x) E9" received
I 00:25:34.930 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EA
A 00:25:34.930 "(0x) EA" received
I 00:25:34.936 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EB
A 00:25:34.936 "(0x) EB" received
I 00:25:34.958 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EC
A 00:25:34.958 "(0x) EC" received
I 00:25:34.965 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) ED
A 00:25:34.965 "(0x) ED" received
I 00:25:34.972 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EE
A 00:25:34.972 "(0x) EE" received
I 00:25:34.977 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EF
A 00:25:34.977 "(0x) EF" received
I 00:25:34.983 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F0
A 00:25:34.983 "(0x) F0" received
I 00:25:35.007 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F1
A 00:25:35.007 "(0x) F1" received
I 00:25:35.015 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F2
A 00:25:35.015 "(0x) F2" received
I 00:25:35.020 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F3
A 00:25:35.020 "(0x) F3" received
I 00:25:35.026 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F4
A 00:25:35.026 "(0x) F4" received
I 00:25:35.033 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F5
A 00:25:35.033 "(0x) F5" received
I 00:25:35.055 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F6
A 00:25:35.055 "(0x) F6" received
I 00:25:35.056 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F7
A 00:25:35.056 "(0x) F7" received
I 00:25:35.066 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F8
A 00:25:35.066 "(0x) F8" received
I 00:25:35.074 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F9
A 00:25:35.074 "(0x) F9" received
I 00:25:35.080 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FA
A 00:25:35.080 "(0x) FA" received
I 00:25:35.104 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FB
A 00:25:35.104 "(0x) FB" received
I 00:25:35.110 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FC
A 00:25:35.110 "(0x) FC" received
I 00:25:35.116 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FD
A 00:25:35.116 "(0x) FD" received
I 00:25:35.125 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FE
A 00:25:35.125 "(0x) FE" received
I 00:25:35.133 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FF
A 00:25:35.133 "(0x) FF" received
I 00:25:35.153 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 00
A 00:25:35.153 "(0x) 00" received
I 00:25:35.160 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 01
A 00:25:35.160 "(0x) 01" received
I 00:25:35.169 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 02
A 00:25:35.169 "(0x) 02" received
I 00:25:35.175 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 03
A 00:25:35.175 "(0x) 03" received
I 00:25:35.184 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 04
A 00:25:35.184 "(0x) 04" received
I 00:25:35.202 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 05
A 00:25:35.202 "(0x) 05" received
I 00:25:35.207 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 06
A 00:25:35.207 "(0x) 06" received
I 00:25:35.213 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 07
A 00:25:35.213 "(0x) 07" received
I 00:25:35.219 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 08
A 00:25:35.219 "(0x) 08" received
I 00:25:35.250 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 09
A 00:25:35.251 "(0x) 09" received
I 00:25:35.258 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0A
A 00:25:35.258 "(0x) 0A" received
I 00:25:35.265 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0B
A 00:25:35.265 "(0x) 0B" received
I 00:25:35.272 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0C
A 00:25:35.272 "(0x) 0C" received
I 00:25:35.279 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0D
A 00:25:35.279 "(0x) 0D" received
I 00:25:35.299 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0E
A 00:25:35.299 "(0x) 0E" received
I 00:25:35.307 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0F
A 00:25:35.307 "(0x) 0F" received
I 00:25:35.313 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 10
A 00:25:35.313 "(0x) 10" received
I 00:25:35.320 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 11
A 00:25:35.320 "(0x) 11" received
I 00:25:35.326 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 12
A 00:25:35.326 "(0x) 12" received
I 00:25:35.348 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 13
A 00:25:35.348 "(0x) 13" received
I 00:25:35.354 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 14
A 00:25:35.354 "(0x) 14" received
I 00:25:35.360 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 15
A 00:25:35.360 "(0x) 15" received
I 00:25:35.366 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 16
A 00:25:35.366 "(0x) 16" received
I 00:25:35.374 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 17
A 00:25:35.374 "(0x) 17" received
I 00:25:35.397 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 18
A 00:25:35.397 "(0x) 18" received
I 00:25:35.402 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 19
A 00:25:35.402 "(0x) 19" received
I 00:25:35.407 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1A
A 00:25:35.407 "(0x) 1A" received
I 00:25:35.415 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1B
A 00:25:35.415 "(0x) 1B" received
I 00:25:35.420 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1C
A 00:25:35.420 "(0x) 1C" received
I 00:25:35.446 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1D
A 00:25:35.446 "(0x) 1D" received
I 00:25:35.452 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1E
A 00:25:35.452 "(0x) 1E" received
I 00:25:35.458 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1F
A 00:25:35.458 "(0x) 1F" received
I 00:25:35.463 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 20, " "
A 00:25:35.463 "(0x) 20, " "" received
I 00:25:35.468 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 21, "!"
A 00:25:35.468 "(0x) 21, "!"" received
I 00:25:35.494 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 22, """
A 00:25:35.494 "(0x) 22, """" received
I 00:25:35.510 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 23, "#"
A 00:25:35.510 "(0x) 23, "#"" received
I 00:25:35.515 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 24, "$"
A 00:25:35.515 "(0x) 24, "$"" received
I 00:25:35.521 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 25, "%"
A 00:25:35.521 "(0x) 25, "%"" received
I 00:25:35.529 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 26, "&"
A 00:25:35.529 "(0x) 26, "&"" received
I 00:25:35.543 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 27, "'"
A 00:25:35.543 "(0x) 27, "'"" received
I 00:25:35.556 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 28, "("
A 00:25:35.556 "(0x) 28, "("" received
I 00:25:35.564 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 29, ")"
A 00:25:35.564 "(0x) 29, ")"" received
I 00:25:35.573 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2A, "*"
A 00:25:35.573 "(0x) 2A, "*"" received
I 00:25:35.583 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2B, "+"
A 00:25:35.583 "(0x) 2B, "+"" received
I 00:25:35.593 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2C, ","
A 00:25:35.593 "(0x) 2C, ","" received
I 00:25:35.602 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2D, "-"
A 00:25:35.602 "(0x) 2D, "-"" received
I 00:25:35.610 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2E, "."
A 00:25:35.610 "(0x) 2E, "."" received
I 00:25:35.621 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2F, "/"
A 00:25:35.621 "(0x) 2F, "/"" received
I 00:25:35.640 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 30, "0"
A 00:25:35.640 "(0x) 30, "0"" received
I 00:25:35.646 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 31, "1"
A 00:25:35.646 "(0x) 31, "1"" received
I 00:25:35.653 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 32, "2"
A 00:25:35.653 "(0x) 32, "2"" received
I 00:25:35.661 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 33, "3"
A 00:25:35.661 "(0x) 33, "3"" received
I 00:25:35.667 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 34, "4"
A 00:25:35.667 "(0x) 34, "4"" received
I 00:25:35.689 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 35, "5"
A 00:25:35.689 "(0x) 35, "5"" received
I 00:25:35.695 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 36, "6"
A 00:25:35.695 "(0x) 36, "6"" received
I 00:25:35.707 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 37, "7"
A 00:25:35.707 "(0x) 37, "7"" received
I 00:25:35.716 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 38, "8"
A 00:25:35.716 "(0x) 38, "8"" received
I 00:25:35.725 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 39, "9"
A 00:25:35.725 "(0x) 39, "9"" received
I 00:25:35.738 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3A, ":"
A 00:25:35.738 "(0x) 3A, ":"" received
I 00:25:35.744 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3B, ";"
A 00:25:35.744 "(0x) 3B, ";"" received
I 00:25:35.759 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3C, "<"
A 00:25:35.759 "(0x) 3C, "<"" received
I 00:25:35.769 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3D, "="
A 00:25:35.769 "(0x) 3D, "="" received
I 00:25:35.777 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3E, ">"
A 00:25:35.777 "(0x) 3E, ">"" received
I 00:25:35.789 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3F, "?"
A 00:25:35.789 "(0x) 3F, "?"" received
I 00:25:35.844 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 40, "@"
A 00:25:35.844 "(0x) 40, "@"" received
I 00:25:35.844 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 41, "A"
A 00:25:35.844 "(0x) 41, "A"" received
I 00:25:35.844 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 42, "B"
A 00:25:35.844 "(0x) 42, "B"" received
I 00:25:35.845 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 43, "C"
A 00:25:35.845 "(0x) 43, "C"" received
I 00:25:35.845 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 44, "D"
A 00:25:35.845 "(0x) 44, "D"" received
I 00:25:35.845 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 45, "E"
A 00:25:35.845 "(0x) 45, "E"" received
I 00:25:35.845 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 46, "F"
A 00:25:35.845 "(0x) 46, "F"" received
I 00:25:35.845 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 47, "G"
A 00:25:35.845 "(0x) 47, "G"" received
I 00:25:35.845 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 48, "H"
A 00:25:35.845 "(0x) 48, "H"" received
I 00:25:35.884 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 49, "I"
A 00:25:35.884 "(0x) 49, "I"" received
I 00:25:35.901 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4A, "J"
A 00:25:35.901 "(0x) 4A, "J"" received
I 00:25:35.907 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4B, "K"
A 00:25:35.907 "(0x) 4B, "K"" received
I 00:25:35.916 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4C, "L"
A 00:25:35.916 "(0x) 4C, "L"" received
I 00:25:35.921 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4D, "M"
A 00:25:35.921 "(0x) 4D, "M"" received
I 00:25:35.946 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4E, "N"
A 00:25:35.946 "(0x) 4E, "N"" received
I 00:25:35.962 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4F, "O"
A 00:25:35.962 "(0x) 4F, "O"" received
I 00:25:35.972 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 50, "P"
A 00:25:35.972 "(0x) 50, "P"" received
I 00:25:35.978 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 51, "Q"
A 00:25:35.978 "(0x) 51, "Q"" received
I 00:25:35.994 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 52, "R"
A 00:25:35.994 "(0x) 52, "R"" received
I 00:25:35.998 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 53, "S"
A 00:25:35.998 "(0x) 53, "S"" received
I 00:25:36.007 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 54, "T"
A 00:25:36.007 "(0x) 54, "T"" received
I 00:25:36.013 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 55, "U"
A 00:25:36.013 "(0x) 55, "U"" received
I 00:25:36.023 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 56, "V"
A 00:25:36.023 "(0x) 56, "V"" received
I 00:25:36.030 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 57, "W"
A 00:25:36.030 "(0x) 57, "W"" received
I 00:25:36.039 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 58, "X"
A 00:25:36.039 "(0x) 58, "X"" received
I 00:25:36.048 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 59, "Y"
A 00:25:36.048 "(0x) 59, "Y"" received
I 00:25:36.059 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5A, "Z"
A 00:25:36.059 "(0x) 5A, "Z"" received
I 00:25:36.067 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5B, "["
A 00:25:36.067 "(0x) 5B, "["" received
I 00:25:36.079 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5C, "\"
A 00:25:36.079 "(0x) 5C, "\"" received
I 00:25:36.079 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5D, "]"
A 00:25:36.079 "(0x) 5D, "]"" received
I 00:25:36.087 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5E, "^"
A 00:25:36.087 "(0x) 5E, "^"" received
I 00:25:36.093 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5F, "_"
A 00:25:36.093 "(0x) 5F, "_"" received
I 00:25:36.105 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 60, "`"
A 00:25:36.105 "(0x) 60, "`"" received
I 00:25:36.128 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 61, "a"
A 00:25:36.128 "(0x) 61, "a"" received
I 00:25:36.136 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 62, "b"
A 00:25:36.136 "(0x) 62, "b"" received
I 00:25:36.146 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 63, "c"
A 00:25:36.146 "(0x) 63, "c"" received
I 00:25:36.152 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 64, "d"
A 00:25:36.152 "(0x) 64, "d"" received
I 00:25:36.159 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 65, "e"
A 00:25:36.159 "(0x) 65, "e"" received
I 00:25:36.177 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 66, "f"
A 00:25:36.177 "(0x) 66, "f"" received
I 00:25:36.184 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 67, "g"
A 00:25:36.184 "(0x) 67, "g"" received
I 00:25:36.192 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 68, "h"
A 00:25:36.192 "(0x) 68, "h"" received
I 00:25:36.200 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 69, "i"
A 00:25:36.200 "(0x) 69, "i"" received
I 00:25:36.206 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6A, "j"
A 00:25:36.206 "(0x) 6A, "j"" received
I 00:25:36.225 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6B, "k"
A 00:25:36.226 "(0x) 6B, "k"" received
I 00:25:36.232 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6C, "l"
A 00:25:36.232 "(0x) 6C, "l"" received
I 00:25:36.242 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6D, "m"
A 00:25:36.242 "(0x) 6D, "m"" received
I 00:25:36.250 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6E, "n"
A 00:25:36.250 "(0x) 6E, "n"" received
I 00:25:36.256 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6F, "o"
A 00:25:36.256 "(0x) 6F, "o"" received
I 00:25:36.275 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 70, "p"
A 00:25:36.275 "(0x) 70, "p"" received
I 00:25:36.281 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 71, "q"
A 00:25:36.281 "(0x) 71, "q"" received
I 00:25:36.287 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 72, "r"
A 00:25:36.287 "(0x) 72, "r"" received
I 00:25:36.295 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 73, "s"
A 00:25:36.295 "(0x) 73, "s"" received
I 00:25:36.300 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 74, "t"
A 00:25:36.300 "(0x) 74, "t"" received
I 00:25:36.323 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 75, "u"
A 00:25:36.323 "(0x) 75, "u"" received
I 00:25:36.329 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 76, "v"
A 00:25:36.329 "(0x) 76, "v"" received
I 00:25:36.337 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 77, "w"
A 00:25:36.337 "(0x) 77, "w"" received
I 00:25:36.343 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 78, "x"
A 00:25:36.343 "(0x) 78, "x"" received
I 00:25:36.351 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 79, "y"
A 00:25:36.351 "(0x) 79, "y"" received
I 00:25:36.372 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7A, "z"
A 00:25:36.372 "(0x) 7A, "z"" received
I 00:25:36.381 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7B, "{"
A 00:25:36.381 "(0x) 7B, "{"" received
I 00:25:36.386 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7C, "|"
A 00:25:36.386 "(0x) 7C, "|"" received
I 00:25:36.392 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7D, "}"
A 00:25:36.392 "(0x) 7D, "}"" received
I 00:25:36.420 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7E, "~"
A 00:25:36.420 "(0x) 7E, "~"" received
I 00:25:36.428 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7F
A 00:25:36.428 "(0x) 7F" received
I 00:25:36.433 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 80
A 00:25:36.433 "(0x) 80" received
I 00:25:36.439 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 81
A 00:25:36.439 "(0x) 81" received
I 00:25:36.450 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 82
A 00:25:36.450 "(0x) 82" received
I 00:25:36.469 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 83
A 00:25:36.469 "(0x) 83" received
I 00:25:36.476 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 84
A 00:25:36.476 "(0x) 84" received
I 00:25:36.482 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 85
A 00:25:36.482 "(0x) 85" received
I 00:25:36.492 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 86
A 00:25:36.492 "(0x) 86" received
I 00:25:36.503 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 87
A 00:25:36.503 "(0x) 87" received
I 00:25:36.518 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 88
A 00:25:36.518 "(0x) 88" received
I 00:25:36.527 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 89
A 00:25:36.527 "(0x) 89" received
I 00:25:36.533 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8A
A 00:25:36.533 "(0x) 8A" received
I 00:25:36.538 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8B
A 00:25:36.538 "(0x) 8B" received
I 00:25:36.544 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8C
A 00:25:36.544 "(0x) 8C" received
I 00:25:36.567 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8D
A 00:25:36.567 "(0x) 8D" received
I 00:25:36.573 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8E
A 00:25:36.573 "(0x) 8E" received
I 00:25:36.579 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8F
A 00:25:36.579 "(0x) 8F" received
I 00:25:36.585 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 90
A 00:25:36.585 "(0x) 90" received
I 00:25:36.590 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 91
A 00:25:36.590 "(0x) 91" received
I 00:25:36.615 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 92
A 00:25:36.615 "(0x) 92" received
I 00:25:36.622 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 93
A 00:25:36.622 "(0x) 93" received
I 00:25:36.628 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 94
A 00:25:36.628 "(0x) 94" received
I 00:25:36.633 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 95
A 00:25:36.633 "(0x) 95" received
I 00:25:36.641 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 96
A 00:25:36.641 "(0x) 96" received
I 00:25:36.664 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 97
A 00:25:36.664 "(0x) 97" received
I 00:25:36.670 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 98
A 00:25:36.670 "(0x) 98" received
I 00:25:36.678 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 99
A 00:25:36.678 "(0x) 99" received
I 00:25:36.687 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9A
A 00:25:36.687 "(0x) 9A" received
I 00:25:36.694 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9B
A 00:25:36.694 "(0x) 9B" received
I 00:25:36.713 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9C
A 00:25:36.713 "(0x) 9C" received
I 00:25:36.720 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9D
A 00:25:36.720 "(0x) 9D" received
I 00:25:36.730 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9E
A 00:25:36.730 "(0x) 9E" received
I 00:25:36.738 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9F
A 00:25:36.738 "(0x) 9F" received
I 00:25:36.738 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A0
A 00:25:36.738 "(0x) A0" received
I 00:25:36.762 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A1
A 00:25:36.762 "(0x) A1" received
I 00:25:36.769 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A2
A 00:25:36.769 "(0x) A2" received
I 00:25:36.776 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A3
A 00:25:36.776 "(0x) A3" received
I 00:25:36.782 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A4
A 00:25:36.782 "(0x) A4" received
I 00:25:36.810 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A5
A 00:25:36.810 "(0x) A5" received
I 00:25:36.819 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A6
A 00:25:36.819 "(0x) A6" received
I 00:25:36.826 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A7
A 00:25:36.826 "(0x) A7" received
I 00:25:36.835 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A8
A 00:25:36.835 "(0x) A8" received
I 00:25:36.844 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A9
A 00:25:36.844 "(0x) A9" received
I 00:25:36.908 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AA
A 00:25:36.908 "(0x) AA" received
I 00:25:36.915 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AB
A 00:25:36.915 "(0x) AB" received
I 00:25:36.925 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AC
A 00:25:36.925 "(0x) AC" received
I 00:25:36.936 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AD
A 00:25:36.936 "(0x) AD" received
I 00:25:36.944 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AE
A 00:25:36.944 "(0x) AE" received
I 00:25:36.957 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AF
A 00:25:36.957 "(0x) AF" received
I 00:25:36.967 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B0
A 00:25:36.967 "(0x) B0" received
I 00:25:36.979 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B1
A 00:25:36.979 "(0x) B1" received
I 00:25:36.991 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B2
A 00:25:36.991 "(0x) B2" received
I 00:25:36.991 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B3
A 00:25:36.991 "(0x) B3" received
I 00:25:37.002 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B4
A 00:25:37.002 "(0x) B4" received
I 00:25:37.010 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B5
A 00:25:37.010 "(0x) B5" received
I 00:25:37.018 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B6
A 00:25:37.018 "(0x) B6" received
I 00:25:37.026 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B7
A 00:25:37.026 "(0x) B7" received
I 00:25:37.036 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B8
A 00:25:37.036 "(0x) B8" received
I 00:25:37.050 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B9
A 00:25:37.050 "(0x) B9" received
I 00:25:37.063 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BA
A 00:25:37.063 "(0x) BA" received
I 00:25:37.075 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BB
A 00:25:37.075 "(0x) BB" received
I 00:25:37.085 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BC
A 00:25:37.085 "(0x) BC" received
I 00:25:37.093 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BD
A 00:25:37.093 "(0x) BD" received
I 00:25:37.100 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BE
A 00:25:37.100 "(0x) BE" received
I 00:25:37.109 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BF
A 00:25:37.109 "(0x) BF" received
I 00:25:37.115 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C0
A 00:25:37.115 "(0x) C0" received
I 00:25:37.123 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C1
A 00:25:37.123 "(0x) C1" received
I 00:25:37.136 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C2
A 00:25:37.136 "(0x) C2" received
I 00:25:37.144 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C3
A 00:25:37.144 "(0x) C3" received
I 00:25:37.153 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C4
A 00:25:37.153 "(0x) C4" received
I 00:25:37.162 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C5
A 00:25:37.162 "(0x) C5" received
I 00:25:37.169 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C6
A 00:25:37.169 "(0x) C6" received
I 00:25:37.179 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C7
A 00:25:37.179 "(0x) C7" received
I 00:25:37.187 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C8
A 00:25:37.187 "(0x) C8" received
I 00:25:37.198 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C9
A 00:25:37.198 "(0x) C9" received
I 00:25:37.204 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CA
A 00:25:37.204 "(0x) CA" received
I 00:25:37.216 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CB
A 00:25:37.216 "(0x) CB" received
I 00:25:37.222 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CC
A 00:25:37.222 "(0x) CC" received
I 00:25:37.235 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CD
A 00:25:37.235 "(0x) CD" received
I 00:25:37.240 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CE
A 00:25:37.240 "(0x) CE" received
I 00:25:37.252 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CF
A 00:25:37.252 "(0x) CF" received
I 00:25:37.257 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D0
A 00:25:37.257 "(0x) D0" received
I 00:25:37.268 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D1
A 00:25:37.268 "(0x) D1" received
I 00:25:37.273 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D2
A 00:25:37.273 "(0x) D2" received
I 00:25:37.282 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D3
A 00:25:37.282 "(0x) D3" received
I 00:25:37.287 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D4
A 00:25:37.287 "(0x) D4" received
I 00:25:37.300 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D5
A 00:25:37.300 "(0x) D5" received
I 00:25:37.307 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D6
A 00:25:37.307 "(0x) D6" received
I 00:25:37.319 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D7
A 00:25:37.319 "(0x) D7" received
I 00:25:37.327 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D8
A 00:25:37.327 "(0x) D8" received
I 00:25:37.339 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D9
A 00:25:37.339 "(0x) D9" received
V 00:25:37.339 [Server] Cancelling server connection...
D 00:25:37.345 server.cancelConnection(device)
I 00:25:37.345 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DA
A 00:25:37.345 "(0x) DA" received
V 00:25:37.351 Disconnecting...
I 00:25:37.351 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DB
D 00:25:37.351 gatt.disconnect()
A 00:25:37.351 "(0x) DB" received
I 00:25:37.358 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DC
A 00:25:37.358 "(0x) DC" received
I 00:25:37.365 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DD
A 00:25:37.365 "(0x) DD" received
I 00:25:37.374 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DE
A 00:25:37.374 "(0x) DE" received
I 00:25:37.379 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DF
A 00:25:37.379 "(0x) DF" received
D 00:25:37.386 [Callback] Connection state changed with status: 0 and new state: DISCONNECTED (0)
I 00:25:37.386 Disconnected
D 00:25:37.400 [Callback] Connection state changed with status: 0 and new state: CONNECTED (2)
I 00:25:37.400 Connected to 30:AE:A4:43:A1:72
I 00:25:37.407 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E0
A 00:25:37.407 "(0x) E0" received
I 00:25:37.421 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E1
A 00:25:37.421 "(0x) E1" received
V 00:25:37.421 Discovering services...
D 00:25:37.421 gatt.discoverServices()
I 00:25:37.845 Connection parameters updated (interval: 7.5ms, latency: 0, timeout: 5000ms)
D 00:25:38.030 [Callback] Services discovered with status: 0
I 00:25:38.030 Services discovered
V 00:25:38.034 Generic Attribute (0x1801)
- Service Changed [I] (0x2A05)
Client Characteristic Configuration (0x2902)
Generic Access (0x1800)
- Device Name [R] (0x2A00)
- Appearance [R] (0x2A01)
- Central Address Resolution [R] (0x2AA6)
Unknown Service (4fafc201-1fb5-459e-8fcc-c5c9c331914b)
- Unknown Characteristic [I N R W] (beb5483e-36e1-4688-b7f5-ea07361b26a8)
Client Characteristic Configuration (0x2902)
D 00:25:38.034 gatt.setCharacteristicNotification(00002a05-0000-1000-8000-00805f9b34fb, true)
D 00:25:38.034 gatt.setCharacteristicNotification(beb5483e-36e1-4688-b7f5-ea07361b26a8, true)
I 00:25:38.040 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 23, "#"
A 00:25:38.040 "(0x) 23, "#"" received
I 00:25:38.046 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 24, "$"
A 00:25:38.046 "(0x) 24, "$"" received
I 00:25:38.051 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 25, "%"
A 00:25:38.051 "(0x) 25, "%"" received
I 00:25:38.059 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 26, "&"
A 00:25:38.059 "(0x) 26, "&"" received
I 00:25:38.067 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 27, "'"
A 00:25:38.067 "(0x) 27, "'"" received
I 00:25:38.082 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 28, "("
A 00:25:38.082 "(0x) 28, "("" received
I 00:25:38.089 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 29, ")"
A 00:25:38.089 "(0x) 29, ")"" received
I 00:25:38.097 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2A, "*"
A 00:25:38.097 "(0x) 2A, "*"" received
I 00:25:38.128 Connection parameters updated (interval: 48.75ms, latency: 0, timeout: 5000ms)
I 00:25:38.175 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2B, "+"
A 00:25:38.175 "(0x) 2B, "+"" received
I 00:25:38.181 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2C, ","
A 00:25:38.181 "(0x) 2C, ","" received
I 00:25:38.186 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2D, "-"
A 00:25:38.186 "(0x) 2D, "-"" received
I 00:25:38.191 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2E, "."
A 00:25:38.191 "(0x) 2E, "."" received
I 00:25:38.202 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2F, "/"
A 00:25:38.202 "(0x) 2F, "/"" received
I 00:25:38.207 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 30, "0"
A 00:25:38.207 "(0x) 30, "0"" received
I 00:25:38.220 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 31, "1"
A 00:25:38.220 "(0x) 31, "1"" received
I 00:25:38.225 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 32, "2"
A 00:25:38.225 "(0x) 32, "2"" received
I 00:25:38.236 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 33, "3"
A 00:25:38.236 "(0x) 33, "3"" received
I 00:25:38.242 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 34, "4"
A 00:25:38.242 "(0x) 34, "4"" received
I 00:25:38.252 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 35, "5"
A 00:25:38.252 "(0x) 35, "5"" received
I 00:25:38.257 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 36, "6"
A 00:25:38.257 "(0x) 36, "6"" received
I 00:25:38.269 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 37, "7"
A 00:25:38.269 "(0x) 37, "7"" received
I 00:25:38.273 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 38, "8"
A 00:25:38.273 "(0x) 38, "8"" received
I 00:25:38.279 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 39, "9"
A 00:25:38.279 "(0x) 39, "9"" received
I 00:25:38.287 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3A, ":"
A 00:25:38.287 "(0x) 3A, ":"" received
I 00:25:38.292 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3B, ";"
A 00:25:38.292 "(0x) 3B, ";"" received
I 00:25:38.303 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3C, "<"
A 00:25:38.303 "(0x) 3C, "<"" received
I 00:25:38.321 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3D, "="
A 00:25:38.321 "(0x) 3D, "="" received
I 00:25:38.328 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3E, ">"
A 00:25:38.328 "(0x) 3E, ">"" received
I 00:25:38.333 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3F, "?"
A 00:25:38.333 "(0x) 3F, "?"" received
I 00:25:38.337 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 40, "@"
A 00:25:38.337 "(0x) 40, "@"" received
I 00:25:38.371 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 41, "A"
A 00:25:38.371 "(0x) 41, "A"" received
I 00:25:38.371 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 42, "B"
A 00:25:38.371 "(0x) 42, "B"" received
I 00:25:38.383 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 43, "C"
A 00:25:38.383 "(0x) 43, "C"" received
I 00:25:38.390 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 44, "D"
A 00:25:38.390 "(0x) 44, "D"" received
I 00:25:38.406 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 45, "E"
A 00:25:38.406 "(0x) 45, "E"" received
I 00:25:38.420 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 46, "F"
A 00:25:38.420 "(0x) 46, "F"" received
I 00:25:38.426 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 47, "G"
A 00:25:38.426 "(0x) 47, "G"" received
I 00:25:38.443 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 48, "H"
A 00:25:38.443 "(0x) 48, "H"" received
I 00:25:38.454 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 49, "I"
A 00:25:38.455 "(0x) 49, "I"" received
I 00:25:38.472 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4A, "J"
A 00:25:38.472 "(0x) 4A, "J"" received
I 00:25:38.480 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4B, "K"
A 00:25:38.480 "(0x) 4B, "K"" received
I 00:25:38.490 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4C, "L"
A 00:25:38.490 "(0x) 4C, "L"" received
I 00:25:38.501 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4D, "M"
A 00:25:38.501 "(0x) 4D, "M"" received
I 00:25:38.521 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4E, "N"
A 00:25:38.521 "(0x) 4E, "N"" received
I 00:25:38.533 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4F, "O"
A 00:25:38.533 "(0x) 4F, "O"" received
I 00:25:38.551 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 50, "P"
A 00:25:38.551 "(0x) 50, "P"" received
I 00:25:38.567 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 51, "Q"
A 00:25:38.567 "(0x) 51, "Q"" received
I 00:25:38.586 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 52, "R"
A 00:25:38.586 "(0x) 52, "R"" received
I 00:25:38.598 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 53, "S"
A 00:25:38.598 "(0x) 53, "S"" received
I 00:25:38.618 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 54, "T"
A 00:25:38.618 "(0x) 54, "T"" received
I 00:25:38.627 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 55, "U"
A 00:25:38.627 "(0x) 55, "U"" received
I 00:25:38.648 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 56, "V"
A 00:25:38.648 "(0x) 56, "V"" received
I 00:25:38.657 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 57, "W"
A 00:25:38.657 "(0x) 57, "W"" received
I 00:25:38.677 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 58, "X"
A 00:25:38.677 "(0x) 58, "X"" received
I 00:25:38.683 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 59, "Y"
A 00:25:38.683 "(0x) 59, "Y"" received
I 00:25:38.694 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5A, "Z"
A 00:25:38.694 "(0x) 5A, "Z"" received
I 00:25:38.715 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5B, "["
A 00:25:38.715 "(0x) 5B, "["" received
I 00:25:38.727 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5C, "\"
A 00:25:38.727 "(0x) 5C, "\"" received
I 00:25:38.744 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5D, "]"
A 00:25:38.744 "(0x) 5D, "]"" received
I 00:25:38.752 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5E, "^"
A 00:25:38.752 "(0x) 5E, "^"" received
I 00:25:38.775 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5F, "_"
A 00:25:38.775 "(0x) 5F, "_"" received
I 00:25:38.785 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 60, "`"
A 00:25:38.785 "(0x) 60, "`"" received
I 00:25:38.806 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 61, "a"
A 00:25:38.806 "(0x) 61, "a"" received
I 00:25:38.816 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 62, "b"
A 00:25:38.816 "(0x) 62, "b"" received
I 00:25:38.836 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 63, "c"
A 00:25:38.836 "(0x) 63, "c"" received
I 00:25:38.845 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 64, "d"
A 00:25:38.845 "(0x) 64, "d"" received
I 00:25:38.868 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 65, "e"
A 00:25:38.868 "(0x) 65, "e"" received
I 00:25:38.876 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 66, "f"
A 00:25:38.876 "(0x) 66, "f"" received
I 00:25:38.897 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 67, "g"
A 00:25:38.897 "(0x) 67, "g"" received
I 00:25:38.905 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 68, "h"
A 00:25:38.905 "(0x) 68, "h"" received
I 00:25:38.922 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 69, "i"
A 00:25:38.922 "(0x) 69, "i"" received
I 00:25:38.931 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6A, "j"
A 00:25:38.931 "(0x) 6A, "j"" received
I 00:25:38.951 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6B, "k"
A 00:25:38.951 "(0x) 6B, "k"" received
I 00:25:38.961 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6C, "l"
A 00:25:38.961 "(0x) 6C, "l"" received
I 00:25:38.981 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6D, "m"
A 00:25:38.981 "(0x) 6D, "m"" received
I 00:25:38.990 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6E, "n"
A 00:25:38.990 "(0x) 6E, "n"" received
I 00:25:39.012 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6F, "o"
A 00:25:39.012 "(0x) 6F, "o"" received
I 00:25:39.021 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 70, "p"
A 00:25:39.021 "(0x) 70, "p"" received
I 00:25:39.041 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 71, "q"
A 00:25:39.041 "(0x) 71, "q"" received
I 00:25:39.051 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 72, "r"
A 00:25:39.051 "(0x) 72, "r"" received
I 00:25:39.077 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 73, "s"
A 00:25:39.077 "(0x) 73, "s"" received
D 00:25:39.077 [Server callback] Connection state changed with status: 0 and new state: DISCONNECTED (0)
I 00:25:39.077 [Server] Device disconnected
D 00:25:39.093 [Broadcast] Action received: android.bluetooth.device.action.ACL_DISCONNECTED
I 00:25:39.093 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 74, "t"
A 00:25:39.093 "(0x) 74, "t"" received
I 00:25:39.093 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 75, "u"
A 00:25:39.093 "(0x) 75, "u"" received
I 00:25:39.093 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 76, "v"
A 00:25:39.093 "(0x) 76, "v"" received
I 00:25:39.093 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 77, "w"
A 00:25:39.093 "(0x) 77, "w"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 78, "x"
A 00:25:39.094 "(0x) 78, "x"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 79, "y"
A 00:25:39.094 "(0x) 79, "y"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7A, "z"
A 00:25:39.094 "(0x) 7A, "z"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7B, "{"
A 00:25:39.094 "(0x) 7B, "{"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7C, "|"
A 00:25:39.094 "(0x) 7C, "|"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7D, "}"
A 00:25:39.094 "(0x) 7D, "}"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7E, "~"
A 00:25:39.094 "(0x) 7E, "~"" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7F
A 00:25:39.094 "(0x) 7F" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 80
A 00:25:39.094 "(0x) 80" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 81
A 00:25:39.094 "(0x) 81" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 82
A 00:25:39.094 "(0x) 82" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 83
A 00:25:39.094 "(0x) 83" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 84
A 00:25:39.094 "(0x) 84" received
I 00:25:39.094 Indication received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 85
A 00:25:39.094 "(0x) 85" received
D 00:25:39.116 [Callback] Connection state changed with status: 22 and new state: DISCONNECTED (0)
I 00:25:39.125 Disconnected
E 00:25:39.125 Error 22 (0x16): GATT CONN TERMINATE LOCAL HOST
I am using standard BLE_notify example from library (arduino log level warn).
Here is "pimp my code" version with logs:
/*
Video: https://www.youtube.com/watch?v=oCMOYS71NIU
Based on Neil Kolban example for IDF: https://github.com/nkolban/esp32-snippets/blob/master/cpp_utils/tests/BLE%20Tests/SampleNotify.cpp
Ported to Arduino ESP32 by Evandro Copercini
Create a BLE server that, once we receive a connection, will send periodic notifications.
The service advertises itself as: 4fafc201-1fb5-459e-8fcc-c5c9c331914b
And has a characteristic of: beb5483e-36e1-4688-b7f5-ea07361b26a8
The design of creating the BLE server is:
1. Create a BLE Server
2. Create a BLE Service
3. Create a BLE Characteristic on the Service
4. Create a BLE Descriptor on the characteristic
5. Start the service.
6. Start advertising.
A connect hander associated with the server starts a background task that performs notification
every couple of seconds.
*/
#include <BLEDevice.h>
#include <BLEServer.h>
#include <BLEUtils.h>
#include <BLE2902.h>
BLEServer* pServer = NULL;
BLECharacteristic* pCharacteristic = NULL;
bool deviceConnected = false;
bool oldDeviceConnected = false;
uint8_t value = 0;
// See the following for generating UUIDs:
// https://www.uuidgenerator.net/
#define SERVICE_UUID "4fafc201-1fb5-459e-8fcc-c5c9c331914b"
#define CHARACTERISTIC_UUID "beb5483e-36e1-4688-b7f5-ea07361b26a8"
class MyServerCallbacks: public BLEServerCallbacks {
void onConnect(BLEServer* pServer, esp_ble_gatts_cb_param_t *param) {
pServer->updateConnParams(param->connect.remote_bda, 0x06, 0x06, 0, 100);
deviceConnected = true;
};
void onDisconnect(BLEServer* pServer) {
deviceConnected = false;
}
};
void setup() {
Serial.begin(115200);
// Create the BLE Device
BLEDevice::init("MyESP32");
// Create the BLE Server
pServer = BLEDevice::createServer();
pServer->setCallbacks(new MyServerCallbacks());
// Create the BLE Service
BLEService *pService = pServer->createService(SERVICE_UUID);
// Create a BLE Characteristic
pCharacteristic = pService->createCharacteristic(
CHARACTERISTIC_UUID,
BLECharacteristic::PROPERTY_READ |
BLECharacteristic::PROPERTY_WRITE |
BLECharacteristic::PROPERTY_NOTIFY
);
// https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.descriptor.gatt.client_characteristic_configuration.xml
// Create a BLE Descriptor
pCharacteristic->addDescriptor(new BLE2902());
// Start the service
pService->start();
// Start advertising
pServer->getAdvertising()->setMinPreferred(0x0);
pServer->getAdvertising()->start();
Serial.println("Waiting a client connection to notify...");
}
void loop() {
// notify changed value
if (deviceConnected) {
pCharacteristic->setValue(&value, 1);
pCharacteristic->notify();
value++;
delay(5); // bluetooth stack will go into congestion, if too many packets are sent
}
// disconnecting
if (!deviceConnected && oldDeviceConnected) {
delay(500); // give the bluetooth stack the chance to get things ready
pServer->startAdvertising(); // restart advertising
Serial.println("start advertising");
oldDeviceConnected = deviceConnected;
}
// connecting
if (deviceConnected && !oldDeviceConnected) {
// do stuff here on connecting
oldDeviceConnected = deviceConnected;
}
}
nRF Connect, 2018-11-29
MyESP32 (30:AE:A4:43:A1:72)
I 00:48:24.394 [Server] Server started
V 00:48:24.399 Unknown Service (4fafc201-1fb5-459e-8fcc-c5c9c331914b)
- Unknown Characteristic [B I N R W WNR] (beb5483e-36e1-4688-b7f5-ea07361b26a8)
Client Characteristic Configuration (0x2902)
V 00:48:24.750 Connecting to 30:AE:A4:43:A1:72...
D 00:48:24.750 gatt = device.connectGatt(autoConnect = false, TRANSPORT_LE, preferred PHY = LE 1M)
D 00:48:25.152 [Server callback] Connection state changed with status: 0 and new state: CONNECTED (2)
I 00:48:25.152 [Server] Device with address 30:AE:A4:43:A1:72 connected
D 00:48:25.165 [Callback] Connection state changed with status: 0 and new state: CONNECTED (2)
I 00:48:25.165 Connected to 30:AE:A4:43:A1:72
D 00:48:25.178 [Broadcast] Action received: android.bluetooth.device.action.ACL_CONNECTED
V 00:48:25.191 Discovering services...
D 00:48:25.191 gatt.discoverServices()
I 00:48:25.741 Connection parameters updated (interval: 11.25ms, latency: 0, timeout: 1000ms)
I 00:48:25.844 Connection parameters updated (interval: 7.5ms, latency: 0, timeout: 5000ms)
D 00:48:25.950 [Callback] Services discovered with status: 0
I 00:48:25.950 Services discovered
V 00:48:25.958 Generic Attribute (0x1801)
- Service Changed [I] (0x2A05)
Client Characteristic Configuration (0x2902)
Generic Access (0x1800)
- Device Name [R] (0x2A00)
- Appearance [R] (0x2A01)
- Central Address Resolution [R] (0x2AA6)
Unknown Service (4fafc201-1fb5-459e-8fcc-c5c9c331914b)
- Unknown Characteristic [N R W] (beb5483e-36e1-4688-b7f5-ea07361b26a8)
Client Characteristic Configuration (0x2902)
D 00:48:25.958 gatt.setCharacteristicNotification(00002a05-0000-1000-8000-00805f9b34fb, true)
D 00:48:25.960 gatt.setCharacteristicNotification(beb5483e-36e1-4688-b7f5-ea07361b26a8, true)
I 00:48:26.018 Connection parameters updated (interval: 11.25ms, latency: 0, timeout: 1000ms)
V 00:48:34.336 Enabling notifications for beb5483e-36e1-4688-b7f5-ea07361b26a8
D 00:48:34.337 gatt.setCharacteristicNotification(beb5483e-36e1-4688-b7f5-ea07361b26a8, true)
D 00:48:34.338 gatt.writeDescriptor(00002902-0000-1000-8000-00805f9b34fb, value=0x0100)
I 00:48:34.368 Data written to descr. 00002902-0000-1000-8000-00805f9b34fb, value: (0x) 01-00
A 00:48:34.368 "Notifications enabled" sent
V 00:48:34.373 Notifications enabled for beb5483e-36e1-4688-b7f5-ea07361b26a8
I 00:48:34.380 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3B, ";"
A 00:48:34.380 "(0x) 3B, ";"" received
I 00:48:34.380 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3C, "<"
A 00:48:34.380 "(0x) 3C, "<"" received
I 00:48:34.380 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3D, "="
A 00:48:34.381 "(0x) 3D, "="" received
I 00:48:34.381 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3E, ">"
A 00:48:34.381 "(0x) 3E, ">"" received
I 00:48:34.388 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3F, "?"
A 00:48:34.388 "(0x) 3F, "?"" received
I 00:48:34.389 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 40, "@"
A 00:48:34.389 "(0x) 40, "@"" received
I 00:48:34.399 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 41, "A"
A 00:48:34.399 "(0x) 41, "A"" received
I 00:48:34.399 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 42, "B"
A 00:48:34.399 "(0x) 42, "B"" received
I 00:48:34.410 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 43, "C"
A 00:48:34.410 "(0x) 43, "C"" received
I 00:48:34.411 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 44, "D"
A 00:48:34.411 "(0x) 44, "D"" received
I 00:48:34.422 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 45, "E"
A 00:48:34.422 "(0x) 45, "E"" received
I 00:48:34.422 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 46, "F"
A 00:48:34.422 "(0x) 46, "F"" received
I 00:48:34.423 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 47, "G"
A 00:48:34.423 "(0x) 47, "G"" received
I 00:48:34.433 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 48, "H"
A 00:48:34.433 "(0x) 48, "H"" received
I 00:48:34.433 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 49, "I"
A 00:48:34.433 "(0x) 49, "I"" received
I 00:48:34.456 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4A, "J"
A 00:48:34.456 "(0x) 4A, "J"" received
I 00:48:34.456 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4B, "K"
A 00:48:34.456 "(0x) 4B, "K"" received
I 00:48:34.456 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4C, "L"
A 00:48:34.456 "(0x) 4C, "L"" received
I 00:48:34.457 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4D, "M"
A 00:48:34.457 "(0x) 4D, "M"" received
I 00:48:34.458 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4E, "N"
A 00:48:34.458 "(0x) 4E, "N"" received
I 00:48:34.466 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4F, "O"
A 00:48:34.466 "(0x) 4F, "O"" received
I 00:48:34.467 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 50, "P"
A 00:48:34.467 "(0x) 50, "P"" received
I 00:48:34.478 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 51, "Q"
A 00:48:34.478 "(0x) 51, "Q"" received
I 00:48:34.478 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 52, "R"
A 00:48:34.478 "(0x) 52, "R"" received
I 00:48:34.489 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 53, "S"
A 00:48:34.489 "(0x) 53, "S"" received
I 00:48:34.491 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 54, "T"
A 00:48:34.491 "(0x) 54, "T"" received
I 00:48:34.500 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 55, "U"
A 00:48:34.500 "(0x) 55, "U"" received
I 00:48:34.501 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 56, "V"
A 00:48:34.501 "(0x) 56, "V"" received
I 00:48:34.511 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 57, "W"
A 00:48:34.511 "(0x) 57, "W"" received
I 00:48:34.512 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 58, "X"
A 00:48:34.512 "(0x) 58, "X"" received
I 00:48:34.513 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 59, "Y"
A 00:48:34.513 "(0x) 59, "Y"" received
I 00:48:34.523 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5A, "Z"
A 00:48:34.523 "(0x) 5A, "Z"" received
I 00:48:34.525 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5B, "["
A 00:48:34.525 "(0x) 5B, "["" received
I 00:48:34.534 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5C, "\"
A 00:48:34.534 "(0x) 5C, "\"" received
I 00:48:34.535 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5D, "]"
A 00:48:34.535 "(0x) 5D, "]"" received
I 00:48:34.545 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5E, "^"
A 00:48:34.545 "(0x) 5E, "^"" received
I 00:48:34.546 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5F, "_"
A 00:48:34.546 "(0x) 5F, "_"" received
I 00:48:34.556 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 60, "`"
A 00:48:34.556 "(0x) 60, "`"" received
I 00:48:34.557 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 61, "a"
A 00:48:34.557 "(0x) 61, "a"" received
I 00:48:34.558 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 62, "b"
A 00:48:34.558 "(0x) 62, "b"" received
I 00:48:34.567 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 63, "c"
A 00:48:34.567 "(0x) 63, "c"" received
I 00:48:34.568 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 64, "d"
A 00:48:34.568 "(0x) 64, "d"" received
I 00:48:34.579 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 65, "e"
A 00:48:34.579 "(0x) 65, "e"" received
I 00:48:34.580 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 66, "f"
A 00:48:34.580 "(0x) 66, "f"" received
I 00:48:34.590 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 67, "g"
A 00:48:34.590 "(0x) 67, "g"" received
I 00:48:34.591 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 68, "h"
A 00:48:34.591 "(0x) 68, "h"" received
I 00:48:34.601 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 69, "i"
A 00:48:34.601 "(0x) 69, "i"" received
I 00:48:34.601 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6A, "j"
A 00:48:34.601 "(0x) 6A, "j"" received
I 00:48:34.603 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6B, "k"
A 00:48:34.603 "(0x) 6B, "k"" received
I 00:48:34.613 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6C, "l"
A 00:48:34.613 "(0x) 6C, "l"" received
I 00:48:34.613 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6D, "m"
A 00:48:34.613 "(0x) 6D, "m"" received
I 00:48:34.624 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6E, "n"
A 00:48:34.624 "(0x) 6E, "n"" received
I 00:48:34.625 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6F, "o"
A 00:48:34.625 "(0x) 6F, "o"" received
I 00:48:34.635 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 70, "p"
A 00:48:34.635 "(0x) 70, "p"" received
I 00:48:34.636 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 71, "q"
A 00:48:34.636 "(0x) 71, "q"" received
I 00:48:34.646 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 72, "r"
A 00:48:34.646 "(0x) 72, "r"" received
I 00:48:34.647 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 73, "s"
A 00:48:34.647 "(0x) 73, "s"" received
I 00:48:34.648 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 74, "t"
A 00:48:34.648 "(0x) 74, "t"" received
I 00:48:34.658 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 75, "u"
A 00:48:34.658 "(0x) 75, "u"" received
I 00:48:34.658 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 76, "v"
A 00:48:34.658 "(0x) 76, "v"" received
I 00:48:34.669 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 77, "w"
A 00:48:34.669 "(0x) 77, "w"" received
I 00:48:34.670 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 78, "x"
A 00:48:34.670 "(0x) 78, "x"" received
I 00:48:34.680 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 79, "y"
A 00:48:34.680 "(0x) 79, "y"" received
I 00:48:34.681 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7A, "z"
A 00:48:34.681 "(0x) 7A, "z"" received
I 00:48:34.691 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7B, "{"
A 00:48:34.691 "(0x) 7B, "{"" received
I 00:48:34.691 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7C, "|"
A 00:48:34.691 "(0x) 7C, "|"" received
I 00:48:34.693 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7D, "}"
A 00:48:34.693 "(0x) 7D, "}"" received
I 00:48:34.703 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7E, "~"
A 00:48:34.703 "(0x) 7E, "~"" received
I 00:48:34.704 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7F
A 00:48:34.704 "(0x) 7F" received
I 00:48:34.714 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 80
A 00:48:34.714 "(0x) 80" received
I 00:48:34.715 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 81
A 00:48:34.715 "(0x) 81" received
I 00:48:34.725 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 82
A 00:48:34.725 "(0x) 82" received
I 00:48:34.726 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 83
A 00:48:34.726 "(0x) 83" received
I 00:48:34.738 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 84
A 00:48:34.738 "(0x) 84" received
I 00:48:34.738 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 85
A 00:48:34.738 "(0x) 85" received
I 00:48:34.738 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 86
A 00:48:34.738 "(0x) 86" received
I 00:48:34.747 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 87
A 00:48:34.747 "(0x) 87" received
I 00:48:34.748 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 88
A 00:48:34.748 "(0x) 88" received
I 00:48:34.759 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 89
A 00:48:34.759 "(0x) 89" received
I 00:48:34.760 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8A
A 00:48:34.760 "(0x) 8A" received
I 00:48:34.770 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8B
A 00:48:34.770 "(0x) 8B" received
I 00:48:34.771 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8C
A 00:48:34.771 "(0x) 8C" received
I 00:48:34.781 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8D
A 00:48:34.781 "(0x) 8D" received
I 00:48:34.781 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8E
A 00:48:34.781 "(0x) 8E" received
I 00:48:34.786 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8F
A 00:48:34.786 "(0x) 8F" received
I 00:48:34.793 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 90
A 00:48:34.793 "(0x) 90" received
I 00:48:34.793 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 91
A 00:48:34.793 "(0x) 91" received
I 00:48:34.804 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 92
A 00:48:34.804 "(0x) 92" received
I 00:48:34.805 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 93
A 00:48:34.805 "(0x) 93" received
I 00:48:34.815 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 94
A 00:48:34.815 "(0x) 94" received
I 00:48:34.816 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 95
A 00:48:34.816 "(0x) 95" received
I 00:48:34.827 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 96
A 00:48:34.827 "(0x) 96" received
I 00:48:34.827 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 97
A 00:48:34.827 "(0x) 97" received
I 00:48:34.828 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 98
A 00:48:34.828 "(0x) 98" received
I 00:48:34.838 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 99
A 00:48:34.838 "(0x) 99" received
I 00:48:34.841 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9A
A 00:48:34.841 "(0x) 9A" received
I 00:48:34.849 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9B
A 00:48:34.849 "(0x) 9B" received
I 00:48:34.850 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9C
A 00:48:34.850 "(0x) 9C" received
I 00:48:34.860 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9D
A 00:48:34.860 "(0x) 9D" received
I 00:48:34.861 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9E
A 00:48:34.861 "(0x) 9E" received
I 00:48:34.871 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9F
A 00:48:34.871 "(0x) 9F" received
I 00:48:34.871 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A0
A 00:48:34.871 "(0x) A0" received
I 00:48:34.873 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A1
A 00:48:34.873 "(0x) A1" received
I 00:48:34.882 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A2
A 00:48:34.882 "(0x) A2" received
I 00:48:34.883 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A3
A 00:48:34.883 "(0x) A3" received
I 00:48:34.894 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A4
A 00:48:34.894 "(0x) A4" received
I 00:48:34.895 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A5
A 00:48:34.895 "(0x) A5" received
I 00:48:34.905 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A6
A 00:48:34.905 "(0x) A6" received
I 00:48:34.906 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A7
A 00:48:34.906 "(0x) A7" received
I 00:48:34.916 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A8
A 00:48:34.916 "(0x) A8" received
I 00:48:34.917 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A9
A 00:48:34.917 "(0x) A9" received
I 00:48:34.918 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AA
A 00:48:34.918 "(0x) AA" received
I 00:48:34.928 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AB
A 00:48:34.928 "(0x) AB" received
I 00:48:34.929 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AC
A 00:48:34.929 "(0x) AC" received
I 00:48:34.939 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AD
A 00:48:34.939 "(0x) AD" received
I 00:48:34.940 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AE
A 00:48:34.940 "(0x) AE" received
I 00:48:34.950 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AF
A 00:48:34.950 "(0x) AF" received
I 00:48:34.951 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B0
A 00:48:34.951 "(0x) B0" received
I 00:48:34.961 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B1
A 00:48:34.961 "(0x) B1" received
I 00:48:34.962 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B2
A 00:48:34.962 "(0x) B2" received
I 00:48:34.963 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B3
A 00:48:34.963 "(0x) B3" received
I 00:48:34.973 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B4
A 00:48:34.973 "(0x) B4" received
I 00:48:34.973 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B5
A 00:48:34.973 "(0x) B5" received
I 00:48:34.984 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B6
A 00:48:34.984 "(0x) B6" received
I 00:48:34.985 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B7
A 00:48:34.985 "(0x) B7" received
I 00:48:34.995 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B8
A 00:48:34.995 "(0x) B8" received
I 00:48:34.996 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B9
A 00:48:34.996 "(0x) B9" received
I 00:48:35.006 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BA
A 00:48:35.006 "(0x) BA" received
I 00:48:35.006 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BB
A 00:48:35.006 "(0x) BB" received
I 00:48:35.009 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BC
A 00:48:35.009 "(0x) BC" received
I 00:48:35.018 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BD
A 00:48:35.018 "(0x) BD" received
I 00:48:35.019 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BE
A 00:48:35.019 "(0x) BE" received
I 00:48:35.029 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BF
A 00:48:35.029 "(0x) BF" received
I 00:48:35.030 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C0
A 00:48:35.030 "(0x) C0" received
I 00:48:35.040 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C1
A 00:48:35.040 "(0x) C1" received
I 00:48:35.041 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C2
A 00:48:35.041 "(0x) C2" received
I 00:48:35.051 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C3
A 00:48:35.051 "(0x) C3" received
I 00:48:35.052 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C4
A 00:48:35.052 "(0x) C4" received
I 00:48:35.053 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C5
A 00:48:35.053 "(0x) C5" received
I 00:48:35.063 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C6
A 00:48:35.063 "(0x) C6" received
I 00:48:35.063 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C7
A 00:48:35.063 "(0x) C7" received
I 00:48:35.077 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C8
A 00:48:35.077 "(0x) C8" received
I 00:48:35.077 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C9
A 00:48:35.077 "(0x) C9" received
I 00:48:35.085 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CA
A 00:48:35.085 "(0x) CA" received
I 00:48:35.086 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CB
A 00:48:35.086 "(0x) CB" received
I 00:48:35.096 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CC
A 00:48:35.096 "(0x) CC" received
I 00:48:35.097 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CD
A 00:48:35.097 "(0x) CD" received
I 00:48:35.098 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CE
A 00:48:35.098 "(0x) CE" received
I 00:48:35.109 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CF
A 00:48:35.109 "(0x) CF" received
I 00:48:35.110 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D0
A 00:48:35.110 "(0x) D0" received
I 00:48:35.119 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D1
A 00:48:35.119 "(0x) D1" received
I 00:48:35.120 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D2
A 00:48:35.120 "(0x) D2" received
I 00:48:35.130 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D3
A 00:48:35.130 "(0x) D3" received
I 00:48:35.131 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D4
A 00:48:35.131 "(0x) D4" received
I 00:48:35.143 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D5
A 00:48:35.143 "(0x) D5" received
I 00:48:35.144 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D6
A 00:48:35.144 "(0x) D6" received
I 00:48:35.145 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D7
A 00:48:35.145 "(0x) D7" received
I 00:48:35.152 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D8
A 00:48:35.152 "(0x) D8" received
I 00:48:35.153 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D9
A 00:48:35.153 "(0x) D9" received
I 00:48:35.164 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DA
A 00:48:35.164 "(0x) DA" received
I 00:48:35.164 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DB
A 00:48:35.164 "(0x) DB" received
I 00:48:35.176 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DC
A 00:48:35.176 "(0x) DC" received
I 00:48:35.176 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DD
A 00:48:35.176 "(0x) DD" received
I 00:48:35.186 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DE
A 00:48:35.186 "(0x) DE" received
I 00:48:35.187 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DF
A 00:48:35.187 "(0x) DF" received
I 00:48:35.188 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E0
A 00:48:35.188 "(0x) E0" received
I 00:48:35.198 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E1
A 00:48:35.198 "(0x) E1" received
I 00:48:35.200 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E2
A 00:48:35.200 "(0x) E2" received
I 00:48:35.209 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E3
A 00:48:35.209 "(0x) E3" received
I 00:48:35.210 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E4
A 00:48:35.210 "(0x) E4" received
I 00:48:35.228 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E5
A 00:48:35.229 "(0x) E5" received
I 00:48:35.229 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E6
A 00:48:35.229 "(0x) E6" received
I 00:48:35.231 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E7
A 00:48:35.231 "(0x) E7" received
I 00:48:35.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E8
A 00:48:35.232 "(0x) E8" received
I 00:48:35.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E9
A 00:48:35.233 "(0x) E9" received
I 00:48:35.243 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EA
A 00:48:35.243 "(0x) EA" received
I 00:48:35.245 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EB
A 00:48:35.245 "(0x) EB" received
I 00:48:35.258 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EC
A 00:48:35.258 "(0x) EC" received
I 00:48:35.258 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) ED
A 00:48:35.258 "(0x) ED" received
I 00:48:35.267 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EE
A 00:48:35.267 "(0x) EE" received
I 00:48:35.267 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EF
A 00:48:35.267 "(0x) EF" received
I 00:48:35.277 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F0
A 00:48:35.277 "(0x) F0" received
I 00:48:35.277 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F1
A 00:48:35.277 "(0x) F1" received
I 00:48:35.278 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F2
A 00:48:35.278 "(0x) F2" received
I 00:48:35.287 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F3
A 00:48:35.287 "(0x) F3" received
I 00:48:35.289 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F4
A 00:48:35.289 "(0x) F4" received
I 00:48:35.299 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F5
A 00:48:35.299 "(0x) F5" received
I 00:48:35.300 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F6
A 00:48:35.300 "(0x) F6" received
I 00:48:35.310 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F7
A 00:48:35.310 "(0x) F7" received
I 00:48:35.311 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F8
A 00:48:35.311 "(0x) F8" received
I 00:48:35.322 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F9
A 00:48:35.322 "(0x) F9" received
I 00:48:35.323 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FA
A 00:48:35.323 "(0x) FA" received
I 00:48:35.324 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FB
A 00:48:35.324 "(0x) FB" received
I 00:48:35.333 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FC
A 00:48:35.333 "(0x) FC" received
I 00:48:35.333 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FD
A 00:48:35.333 "(0x) FD" received
I 00:48:35.344 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FE
A 00:48:35.344 "(0x) FE" received
I 00:48:35.345 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FF
A 00:48:35.345 "(0x) FF" received
I 00:48:35.355 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 00
A 00:48:35.355 "(0x) 00" received
I 00:48:35.356 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 01
A 00:48:35.356 "(0x) 01" received
I 00:48:35.366 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 02
A 00:48:35.366 "(0x) 02" received
I 00:48:35.367 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 03
A 00:48:35.367 "(0x) 03" received
I 00:48:35.368 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 04
A 00:48:35.368 "(0x) 04" received
I 00:48:35.378 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 05
A 00:48:35.378 "(0x) 05" received
I 00:48:35.378 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 06
A 00:48:35.378 "(0x) 06" received
I 00:48:35.419 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 07
A 00:48:35.419 "(0x) 07" received
I 00:48:35.419 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 08
A 00:48:35.419 "(0x) 08" received
I 00:48:35.419 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 09
A 00:48:35.419 "(0x) 09" received
I 00:48:35.420 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0A
A 00:48:35.420 "(0x) 0A" received
I 00:48:35.420 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0B
A 00:48:35.420 "(0x) 0B" received
I 00:48:35.420 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0C
A 00:48:35.420 "(0x) 0C" received
I 00:48:35.420 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0D
A 00:48:35.420 "(0x) 0D" received
I 00:48:35.423 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0E
A 00:48:35.423 "(0x) 0E" received
I 00:48:35.424 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0F
A 00:48:35.424 "(0x) 0F" received
I 00:48:35.434 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 10
A 00:48:35.434 "(0x) 10" received
I 00:48:35.434 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 11
A 00:48:35.434 "(0x) 11" received
I 00:48:35.445 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 12
A 00:48:35.445 "(0x) 12" received
I 00:48:35.446 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 13
A 00:48:35.446 "(0x) 13" received
I 00:48:35.456 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 14
A 00:48:35.456 "(0x) 14" received
I 00:48:35.457 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 15
A 00:48:35.457 "(0x) 15" received
I 00:48:35.458 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 16
A 00:48:35.458 "(0x) 16" received
I 00:48:35.468 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 17
A 00:48:35.468 "(0x) 17" received
I 00:48:35.468 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 18
A 00:48:35.468 "(0x) 18" received
I 00:48:35.479 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 19
A 00:48:35.479 "(0x) 19" received
I 00:48:35.479 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1A
A 00:48:35.480 "(0x) 1A" received
I 00:48:35.490 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1B
A 00:48:35.490 "(0x) 1B" received
I 00:48:35.491 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1C
A 00:48:35.491 "(0x) 1C" received
I 00:48:35.501 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1D
A 00:48:35.501 "(0x) 1D" received
I 00:48:35.501 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1E
A 00:48:35.501 "(0x) 1E" received
I 00:48:35.503 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1F
A 00:48:35.503 "(0x) 1F" received
I 00:48:35.513 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 20, " "
A 00:48:35.513 "(0x) 20, " "" received
I 00:48:35.513 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 21, "!"
A 00:48:35.513 "(0x) 21, "!"" received
I 00:48:35.524 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 22, """
A 00:48:35.524 "(0x) 22, """" received
I 00:48:35.525 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 23, "#"
A 00:48:35.525 "(0x) 23, "#"" received
I 00:48:35.535 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 24, "$"
A 00:48:35.535 "(0x) 24, "$"" received
I 00:48:35.536 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 25, "%"
A 00:48:35.536 "(0x) 25, "%"" received
I 00:48:35.547 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 26, "&"
A 00:48:35.547 "(0x) 26, "&"" received
I 00:48:35.547 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 27, "'"
A 00:48:35.547 "(0x) 27, "'"" received
I 00:48:35.548 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 28, "("
A 00:48:35.548 "(0x) 28, "("" received
I 00:48:35.558 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 29, ")"
A 00:48:35.558 "(0x) 29, ")"" received
I 00:48:35.559 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2A, "*"
A 00:48:35.559 "(0x) 2A, "*"" received
I 00:48:35.569 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2B, "+"
A 00:48:35.569 "(0x) 2B, "+"" received
I 00:48:35.570 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2C, ","
A 00:48:35.570 "(0x) 2C, ","" received
I 00:48:35.580 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2D, "-"
A 00:48:35.580 "(0x) 2D, "-"" received
I 00:48:35.581 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2E, "."
A 00:48:35.581 "(0x) 2E, "."" received
I 00:48:35.591 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2F, "/"
A 00:48:35.591 "(0x) 2F, "/"" received
I 00:48:35.592 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 30, "0"
A 00:48:35.592 "(0x) 30, "0"" received
I 00:48:35.593 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 31, "1"
A 00:48:35.593 "(0x) 31, "1"" received
I 00:48:35.602 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 32, "2"
A 00:48:35.602 "(0x) 32, "2"" received
I 00:48:35.603 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 33, "3"
A 00:48:35.603 "(0x) 33, "3"" received
I 00:48:35.614 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 34, "4"
A 00:48:35.614 "(0x) 34, "4"" received
I 00:48:35.615 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 35, "5"
A 00:48:35.615 "(0x) 35, "5"" received
I 00:48:35.625 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 36, "6"
A 00:48:35.625 "(0x) 36, "6"" received
I 00:48:35.626 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 37, "7"
A 00:48:35.626 "(0x) 37, "7"" received
I 00:48:35.636 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 38, "8"
A 00:48:35.637 "(0x) 38, "8"" received
I 00:48:35.637 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 39, "9"
A 00:48:35.637 "(0x) 39, "9"" received
I 00:48:35.638 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3A, ":"
A 00:48:35.638 "(0x) 3A, ":"" received
I 00:48:35.648 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3B, ";"
A 00:48:35.648 "(0x) 3B, ";"" received
I 00:48:35.648 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3C, "<"
A 00:48:35.648 "(0x) 3C, "<"" received
I 00:48:35.659 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3D, "="
A 00:48:35.659 "(0x) 3D, "="" received
I 00:48:35.661 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3E, ">"
A 00:48:35.661 "(0x) 3E, ">"" received
I 00:48:35.670 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3F, "?"
A 00:48:35.670 "(0x) 3F, "?"" received
I 00:48:35.671 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 40, "@"
A 00:48:35.671 "(0x) 40, "@"" received
I 00:48:35.682 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 41, "A"
A 00:48:35.682 "(0x) 41, "A"" received
I 00:48:35.682 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 42, "B"
A 00:48:35.682 "(0x) 42, "B"" received
I 00:48:35.683 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 43, "C"
A 00:48:35.683 "(0x) 43, "C"" received
I 00:48:35.695 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 44, "D"
A 00:48:35.695 "(0x) 44, "D"" received
I 00:48:35.695 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 45, "E"
A 00:48:35.695 "(0x) 45, "E"" received
I 00:48:35.704 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 46, "F"
A 00:48:35.704 "(0x) 46, "F"" received
I 00:48:35.705 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 47, "G"
A 00:48:35.705 "(0x) 47, "G"" received
I 00:48:35.715 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 48, "H"
A 00:48:35.715 "(0x) 48, "H"" received
I 00:48:35.716 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 49, "I"
A 00:48:35.716 "(0x) 49, "I"" received
I 00:48:35.728 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4A, "J"
A 00:48:35.728 "(0x) 4A, "J"" received
I 00:48:35.728 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4B, "K"
A 00:48:35.728 "(0x) 4B, "K"" received
I 00:48:35.729 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4C, "L"
A 00:48:35.729 "(0x) 4C, "L"" received
I 00:48:35.737 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4D, "M"
A 00:48:35.737 "(0x) 4D, "M"" received
I 00:48:35.738 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4E, "N"
A 00:48:35.738 "(0x) 4E, "N"" received
I 00:48:35.749 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4F, "O"
A 00:48:35.749 "(0x) 4F, "O"" received
I 00:48:35.750 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 50, "P"
A 00:48:35.750 "(0x) 50, "P"" received
I 00:48:35.762 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 51, "Q"
A 00:48:35.762 "(0x) 51, "Q"" received
I 00:48:35.762 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 52, "R"
A 00:48:35.762 "(0x) 52, "R"" received
I 00:48:35.772 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 53, "S"
A 00:48:35.772 "(0x) 53, "S"" received
I 00:48:35.772 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 54, "T"
A 00:48:35.772 "(0x) 54, "T"" received
I 00:48:35.773 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 55, "U"
A 00:48:35.773 "(0x) 55, "U"" received
I 00:48:35.783 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 56, "V"
A 00:48:35.783 "(0x) 56, "V"" received
I 00:48:35.783 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 57, "W"
A 00:48:35.783 "(0x) 57, "W"" received
I 00:48:35.795 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 58, "X"
A 00:48:35.795 "(0x) 58, "X"" received
I 00:48:35.795 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 59, "Y"
A 00:48:35.795 "(0x) 59, "Y"" received
I 00:48:35.805 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5A, "Z"
A 00:48:35.805 "(0x) 5A, "Z"" received
I 00:48:35.806 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5B, "["
A 00:48:35.806 "(0x) 5B, "["" received
I 00:48:35.817 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5C, "\"
A 00:48:35.817 "(0x) 5C, "\"" received
I 00:48:35.817 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5D, "]"
A 00:48:35.817 "(0x) 5D, "]"" received
I 00:48:35.818 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5E, "^"
A 00:48:35.818 "(0x) 5E, "^"" received
I 00:48:35.829 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5F, "_"
A 00:48:35.829 "(0x) 5F, "_"" received
I 00:48:35.829 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 60, "`"
A 00:48:35.829 "(0x) 60, "`"" received
I 00:48:35.839 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 61, "a"
A 00:48:35.839 "(0x) 61, "a"" received
I 00:48:35.840 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 62, "b"
A 00:48:35.840 "(0x) 62, "b"" received
I 00:48:35.850 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 63, "c"
A 00:48:35.850 "(0x) 63, "c"" received
I 00:48:35.851 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 64, "d"
A 00:48:35.851 "(0x) 64, "d"" received
I 00:48:35.862 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 65, "e"
A 00:48:35.862 "(0x) 65, "e"" received
I 00:48:35.862 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 66, "f"
A 00:48:35.862 "(0x) 66, "f"" received
I 00:48:35.863 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 67, "g"
A 00:48:35.863 "(0x) 67, "g"" received
I 00:48:35.872 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 68, "h"
A 00:48:35.872 "(0x) 68, "h"" received
I 00:48:35.874 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 69, "i"
A 00:48:35.874 "(0x) 69, "i"" received
I 00:48:35.884 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6A, "j"
A 00:48:35.884 "(0x) 6A, "j"" received
I 00:48:35.885 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6B, "k"
A 00:48:35.885 "(0x) 6B, "k"" received
I 00:48:35.895 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6C, "l"
A 00:48:35.895 "(0x) 6C, "l"" received
I 00:48:35.896 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6D, "m"
A 00:48:35.896 "(0x) 6D, "m"" received
I 00:48:35.906 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6E, "n"
A 00:48:35.906 "(0x) 6E, "n"" received
I 00:48:35.907 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6F, "o"
A 00:48:35.907 "(0x) 6F, "o"" received
I 00:48:35.908 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 70, "p"
A 00:48:35.908 "(0x) 70, "p"" received
I 00:48:35.918 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 71, "q"
A 00:48:35.918 "(0x) 71, "q"" received
I 00:48:35.918 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 72, "r"
A 00:48:35.918 "(0x) 72, "r"" received
I 00:48:35.929 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 73, "s"
A 00:48:35.929 "(0x) 73, "s"" received
I 00:48:35.930 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 74, "t"
A 00:48:35.930 "(0x) 74, "t"" received
I 00:48:35.940 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 75, "u"
A 00:48:35.940 "(0x) 75, "u"" received
I 00:48:35.941 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 76, "v"
A 00:48:35.941 "(0x) 76, "v"" received
I 00:48:35.954 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 77, "w"
A 00:48:35.954 "(0x) 77, "w"" received
I 00:48:35.954 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 78, "x"
A 00:48:35.954 "(0x) 78, "x"" received
I 00:48:35.954 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 79, "y"
A 00:48:35.954 "(0x) 79, "y"" received
I 00:48:35.963 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7A, "z"
A 00:48:35.963 "(0x) 7A, "z"" received
I 00:48:35.963 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7B, "{"
A 00:48:35.963 "(0x) 7B, "{"" received
I 00:48:35.974 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7C, "|"
A 00:48:35.974 "(0x) 7C, "|"" received
I 00:48:35.975 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7D, "}"
A 00:48:35.975 "(0x) 7D, "}"" received
I 00:48:35.985 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7E, "~"
A 00:48:35.985 "(0x) 7E, "~"" received
I 00:48:35.986 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7F
A 00:48:35.986 "(0x) 7F" received
I 00:48:35.996 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 80
A 00:48:35.996 "(0x) 80" received
I 00:48:35.997 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 81
A 00:48:35.997 "(0x) 81" received
I 00:48:35.998 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 82
A 00:48:35.998 "(0x) 82" received
I 00:48:36.008 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 83
A 00:48:36.008 "(0x) 83" received
I 00:48:36.008 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 84
A 00:48:36.008 "(0x) 84" received
I 00:48:36.019 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 85
A 00:48:36.019 "(0x) 85" received
I 00:48:36.019 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 86
A 00:48:36.019 "(0x) 86" received
I 00:48:36.030 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 87
A 00:48:36.030 "(0x) 87" received
I 00:48:36.031 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 88
A 00:48:36.031 "(0x) 88" received
I 00:48:36.042 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 89
A 00:48:36.042 "(0x) 89" received
I 00:48:36.042 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8A
A 00:48:36.042 "(0x) 8A" received
I 00:48:36.043 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8B
A 00:48:36.043 "(0x) 8B" received
I 00:48:36.053 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8C
A 00:48:36.053 "(0x) 8C" received
I 00:48:36.053 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8D
A 00:48:36.053 "(0x) 8D" received
I 00:48:36.064 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8E
A 00:48:36.064 "(0x) 8E" received
I 00:48:36.065 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8F
A 00:48:36.065 "(0x) 8F" received
I 00:48:36.075 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 90
A 00:48:36.075 "(0x) 90" received
I 00:48:36.076 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 91
A 00:48:36.076 "(0x) 91" received
I 00:48:36.086 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 92
A 00:48:36.086 "(0x) 92" received
I 00:48:36.086 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 93
A 00:48:36.086 "(0x) 93" received
I 00:48:36.088 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 94
A 00:48:36.088 "(0x) 94" received
I 00:48:36.099 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 95
A 00:48:36.099 "(0x) 95" received
I 00:48:36.099 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 96
A 00:48:36.099 "(0x) 96" received
I 00:48:36.109 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 97
A 00:48:36.109 "(0x) 97" received
I 00:48:36.110 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 98
A 00:48:36.110 "(0x) 98" received
I 00:48:36.120 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 99
A 00:48:36.120 "(0x) 99" received
I 00:48:36.121 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9A
A 00:48:36.121 "(0x) 9A" received
I 00:48:36.131 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9B
A 00:48:36.131 "(0x) 9B" received
I 00:48:36.131 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9C
A 00:48:36.131 "(0x) 9C" received
I 00:48:36.142 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9D
A 00:48:36.142 "(0x) 9D" received
I 00:48:36.143 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9E
A 00:48:36.143 "(0x) 9E" received
I 00:48:36.144 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9F
A 00:48:36.144 "(0x) 9F" received
I 00:48:36.154 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A0
A 00:48:36.154 "(0x) A0" received
I 00:48:36.154 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A1
A 00:48:36.155 "(0x) A1" received
I 00:48:36.165 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A2
A 00:48:36.165 "(0x) A2" received
I 00:48:36.166 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A3
A 00:48:36.166 "(0x) A3" received
I 00:48:36.176 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A4
A 00:48:36.176 "(0x) A4" received
I 00:48:36.176 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A5
A 00:48:36.176 "(0x) A5" received
I 00:48:36.178 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A6
A 00:48:36.178 "(0x) A6" received
I 00:48:36.187 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A7
A 00:48:36.187 "(0x) A7" received
I 00:48:36.188 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A8
A 00:48:36.188 "(0x) A8" received
I 00:48:36.199 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A9
A 00:48:36.199 "(0x) A9" received
I 00:48:36.200 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AA
A 00:48:36.200 "(0x) AA" received
I 00:48:36.210 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AB
A 00:48:36.210 "(0x) AB" received
I 00:48:36.211 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AC
A 00:48:36.211 "(0x) AC" received
I 00:48:36.221 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AD
A 00:48:36.221 "(0x) AD" received
I 00:48:36.222 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AE
A 00:48:36.222 "(0x) AE" received
I 00:48:36.224 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AF
A 00:48:36.224 "(0x) AF" received
I 00:48:36.237 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B0
A 00:48:36.237 "(0x) B0" received
I 00:48:36.238 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B1
A 00:48:36.238 "(0x) B1" received
I 00:48:36.244 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B2
A 00:48:36.244 "(0x) B2" received
I 00:48:36.245 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B3
A 00:48:36.245 "(0x) B3" received
I 00:48:36.255 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B4
A 00:48:36.255 "(0x) B4" received
I 00:48:36.256 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B5
A 00:48:36.256 "(0x) B5" received
I 00:48:36.266 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B6
A 00:48:36.266 "(0x) B6" received
I 00:48:36.268 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B7
A 00:48:36.268 "(0x) B7" received
I 00:48:36.268 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B8
A 00:48:36.268 "(0x) B8" received
I 00:48:36.278 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B9
A 00:48:36.278 "(0x) B9" received
I 00:48:36.279 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BA
A 00:48:36.279 "(0x) BA" received
I 00:48:36.289 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BB
A 00:48:36.289 "(0x) BB" received
I 00:48:36.290 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BC
A 00:48:36.290 "(0x) BC" received
I 00:48:36.300 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BD
A 00:48:36.300 "(0x) BD" received
I 00:48:36.301 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BE
A 00:48:36.301 "(0x) BE" received
I 00:48:36.311 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BF
A 00:48:36.311 "(0x) BF" received
I 00:48:36.311 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C0
A 00:48:36.311 "(0x) C0" received
I 00:48:36.313 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C1
A 00:48:36.313 "(0x) C1" received
I 00:48:36.323 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C2
A 00:48:36.323 "(0x) C2" received
I 00:48:36.324 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C3
A 00:48:36.324 "(0x) C3" received
I 00:48:36.334 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C4
A 00:48:36.334 "(0x) C4" received
I 00:48:36.335 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C5
A 00:48:36.335 "(0x) C5" received
I 00:48:36.345 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C6
A 00:48:36.345 "(0x) C6" received
I 00:48:36.346 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C7
A 00:48:36.346 "(0x) C7" received
I 00:48:36.356 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C8
A 00:48:36.356 "(0x) C8" received
I 00:48:36.357 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C9
A 00:48:36.357 "(0x) C9" received
I 00:48:36.358 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CA
A 00:48:36.358 "(0x) CA" received
I 00:48:36.368 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CB
A 00:48:36.368 "(0x) CB" received
I 00:48:36.369 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CC
A 00:48:36.369 "(0x) CC" received
I 00:48:36.379 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CD
A 00:48:36.379 "(0x) CD" received
I 00:48:36.380 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CE
A 00:48:36.380 "(0x) CE" received
I 00:48:36.390 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CF
A 00:48:36.390 "(0x) CF" received
I 00:48:36.391 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D0
A 00:48:36.391 "(0x) D0" received
I 00:48:36.401 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D1
A 00:48:36.401 "(0x) D1" received
I 00:48:36.401 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D2
A 00:48:36.401 "(0x) D2" received
I 00:48:36.403 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D3
A 00:48:36.403 "(0x) D3" received
I 00:48:36.413 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D4
A 00:48:36.413 "(0x) D4" received
I 00:48:36.413 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D5
A 00:48:36.413 "(0x) D5" received
I 00:48:36.458 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D6
A 00:48:36.458 "(0x) D6" received
I 00:48:36.459 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D7
A 00:48:36.459 "(0x) D7" received
I 00:48:36.459 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D8
A 00:48:36.459 "(0x) D8" received
I 00:48:36.459 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D9
A 00:48:36.459 "(0x) D9" received
I 00:48:36.459 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DA
A 00:48:36.459 "(0x) DA" received
I 00:48:36.459 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DB
A 00:48:36.459 "(0x) DB" received
I 00:48:36.459 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DC
A 00:48:36.459 "(0x) DC" received
I 00:48:36.459 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DD
A 00:48:36.459 "(0x) DD" received
I 00:48:36.460 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DE
A 00:48:36.460 "(0x) DE" received
I 00:48:36.469 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DF
A 00:48:36.469 "(0x) DF" received
I 00:48:36.470 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E0
A 00:48:36.470 "(0x) E0" received
I 00:48:36.480 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E1
A 00:48:36.480 "(0x) E1" received
I 00:48:36.482 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E2
A 00:48:36.482 "(0x) E2" received
I 00:48:36.492 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E3
A 00:48:36.492 "(0x) E3" received
I 00:48:36.492 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E4
A 00:48:36.492 "(0x) E4" received
I 00:48:36.493 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E5
A 00:48:36.493 "(0x) E5" received
I 00:48:36.503 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E6
A 00:48:36.503 "(0x) E6" received
I 00:48:36.503 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E7
A 00:48:36.503 "(0x) E7" received
I 00:48:36.514 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E8
A 00:48:36.514 "(0x) E8" received
I 00:48:36.515 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E9
A 00:48:36.515 "(0x) E9" received
I 00:48:36.525 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EA
A 00:48:36.525 "(0x) EA" received
I 00:48:36.526 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EB
A 00:48:36.526 "(0x) EB" received
I 00:48:36.536 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EC
A 00:48:36.536 "(0x) EC" received
I 00:48:36.537 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) ED
A 00:48:36.537 "(0x) ED" received
I 00:48:36.538 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EE
A 00:48:36.538 "(0x) EE" received
I 00:48:36.547 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EF
A 00:48:36.547 "(0x) EF" received
I 00:48:36.548 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F0
A 00:48:36.548 "(0x) F0" received
I 00:48:36.559 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F1
A 00:48:36.559 "(0x) F1" received
I 00:48:36.560 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F2
A 00:48:36.560 "(0x) F2" received
I 00:48:36.570 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F3
A 00:48:36.570 "(0x) F3" received
I 00:48:36.571 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F4
A 00:48:36.571 "(0x) F4" received
I 00:48:36.581 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F5
A 00:48:36.581 "(0x) F5" received
I 00:48:36.581 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F6
A 00:48:36.581 "(0x) F6" received
I 00:48:36.583 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F7
A 00:48:36.583 "(0x) F7" received
I 00:48:36.592 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F8
A 00:48:36.592 "(0x) F8" received
I 00:48:36.604 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F9
A 00:48:36.604 "(0x) F9" received
I 00:48:36.604 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FA
A 00:48:36.604 "(0x) FA" received
I 00:48:36.605 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FB
A 00:48:36.605 "(0x) FB" received
I 00:48:36.627 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FC
A 00:48:36.627 "(0x) FC" received
I 00:48:36.627 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FD
A 00:48:36.627 "(0x) FD" received
I 00:48:36.627 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FE
A 00:48:36.627 "(0x) FE" received
I 00:48:36.627 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FF
A 00:48:36.627 "(0x) FF" received
I 00:48:36.629 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 00
A 00:48:36.629 "(0x) 00" received
I 00:48:36.637 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 01
A 00:48:36.637 "(0x) 01" received
I 00:48:36.638 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 02
A 00:48:36.638 "(0x) 02" received
I 00:48:36.649 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 03
A 00:48:36.649 "(0x) 03" received
I 00:48:36.650 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 04
A 00:48:36.650 "(0x) 04" received
I 00:48:36.660 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 05
A 00:48:36.660 "(0x) 05" received
I 00:48:36.661 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 06
A 00:48:36.661 "(0x) 06" received
I 00:48:36.671 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 07
A 00:48:36.671 "(0x) 07" received
I 00:48:36.672 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 08
A 00:48:36.672 "(0x) 08" received
I 00:48:36.673 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 09
A 00:48:36.673 "(0x) 09" received
I 00:48:36.683 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0A
A 00:48:36.683 "(0x) 0A" received
I 00:48:36.683 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0B
A 00:48:36.683 "(0x) 0B" received
I 00:48:36.694 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0C
A 00:48:36.694 "(0x) 0C" received
I 00:48:36.695 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0D
A 00:48:36.695 "(0x) 0D" received
I 00:48:36.705 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0E
A 00:48:36.705 "(0x) 0E" received
I 00:48:36.706 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0F
A 00:48:36.706 "(0x) 0F" received
I 00:48:36.716 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 10
A 00:48:36.716 "(0x) 10" received
I 00:48:36.717 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 11
A 00:48:36.717 "(0x) 11" received
I 00:48:36.718 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 12
A 00:48:36.718 "(0x) 12" received
I 00:48:36.728 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 13
A 00:48:36.728 "(0x) 13" received
I 00:48:36.729 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 14
A 00:48:36.729 "(0x) 14" received
I 00:48:36.738 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 15
A 00:48:36.738 "(0x) 15" received
I 00:48:36.740 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 16
A 00:48:36.740 "(0x) 16" received
I 00:48:36.750 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 17
A 00:48:36.750 "(0x) 17" received
I 00:48:36.751 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 18
A 00:48:36.751 "(0x) 18" received
I 00:48:36.761 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 19
A 00:48:36.761 "(0x) 19" received
I 00:48:36.761 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1A
A 00:48:36.761 "(0x) 1A" received
I 00:48:36.763 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1B
A 00:48:36.763 "(0x) 1B" received
I 00:48:36.772 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1C
A 00:48:36.772 "(0x) 1C" received
I 00:48:36.773 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1D
A 00:48:36.773 "(0x) 1D" received
I 00:48:36.784 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1E
A 00:48:36.784 "(0x) 1E" received
I 00:48:36.785 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1F
A 00:48:36.785 "(0x) 1F" received
I 00:48:36.795 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 20, " "
A 00:48:36.795 "(0x) 20, " "" received
I 00:48:36.796 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 21, "!"
A 00:48:36.796 "(0x) 21, "!"" received
I 00:48:36.806 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 22, """
A 00:48:36.806 "(0x) 22, """" received
I 00:48:36.806 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 23, "#"
A 00:48:36.806 "(0x) 23, "#"" received
I 00:48:36.808 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 24, "$"
A 00:48:36.808 "(0x) 24, "$"" received
I 00:48:36.818 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 25, "%"
A 00:48:36.818 "(0x) 25, "%"" received
I 00:48:36.818 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 26, "&"
A 00:48:36.818 "(0x) 26, "&"" received
I 00:48:36.832 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 27, "'"
A 00:48:36.832 "(0x) 27, "'"" received
I 00:48:36.832 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 28, "("
A 00:48:36.832 "(0x) 28, "("" received
I 00:48:36.840 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 29, ")"
A 00:48:36.840 "(0x) 29, ")"" received
I 00:48:36.841 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2A, "*"
A 00:48:36.841 "(0x) 2A, "*"" received
I 00:48:36.851 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2B, "+"
A 00:48:36.851 "(0x) 2B, "+"" received
I 00:48:36.852 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2C, ","
A 00:48:36.852 "(0x) 2C, ","" received
I 00:48:36.853 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2D, "-"
A 00:48:36.853 "(0x) 2D, "-"" received
I 00:48:36.863 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2E, "."
A 00:48:36.863 "(0x) 2E, "."" received
I 00:48:36.863 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 2F, "/"
A 00:48:36.863 "(0x) 2F, "/"" received
I 00:48:36.874 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 30, "0"
A 00:48:36.874 "(0x) 30, "0"" received
I 00:48:36.875 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 31, "1"
A 00:48:36.875 "(0x) 31, "1"" received
I 00:48:36.885 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 32, "2"
A 00:48:36.885 "(0x) 32, "2"" received
I 00:48:36.886 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 33, "3"
A 00:48:36.886 "(0x) 33, "3"" received
I 00:48:36.896 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 34, "4"
A 00:48:36.896 "(0x) 34, "4"" received
I 00:48:36.897 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 35, "5"
A 00:48:36.897 "(0x) 35, "5"" received
I 00:48:36.898 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 36, "6"
A 00:48:36.898 "(0x) 36, "6"" received
I 00:48:36.907 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 37, "7"
A 00:48:36.907 "(0x) 37, "7"" received
I 00:48:36.909 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 38, "8"
A 00:48:36.909 "(0x) 38, "8"" received
I 00:48:36.919 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 39, "9"
A 00:48:36.919 "(0x) 39, "9"" received
I 00:48:36.920 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3A, ":"
A 00:48:36.920 "(0x) 3A, ":"" received
I 00:48:36.930 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3B, ";"
A 00:48:36.930 "(0x) 3B, ";"" received
I 00:48:36.931 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3C, "<"
A 00:48:36.931 "(0x) 3C, "<"" received
I 00:48:36.941 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3D, "="
A 00:48:36.941 "(0x) 3D, "="" received
I 00:48:36.941 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3E, ">"
A 00:48:36.941 "(0x) 3E, ">"" received
I 00:48:36.943 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 3F, "?"
A 00:48:36.943 "(0x) 3F, "?"" received
I 00:48:36.952 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 40, "@"
A 00:48:36.952 "(0x) 40, "@"" received
I 00:48:36.953 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 41, "A"
A 00:48:36.953 "(0x) 41, "A"" received
I 00:48:36.964 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 42, "B"
A 00:48:36.964 "(0x) 42, "B"" received
I 00:48:36.965 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 43, "C"
A 00:48:36.965 "(0x) 43, "C"" received
I 00:48:36.975 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 44, "D"
A 00:48:36.975 "(0x) 44, "D"" received
I 00:48:36.976 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 45, "E"
A 00:48:36.976 "(0x) 45, "E"" received
I 00:48:36.986 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 46, "F"
A 00:48:36.986 "(0x) 46, "F"" received
I 00:48:36.987 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 47, "G"
A 00:48:36.987 "(0x) 47, "G"" received
I 00:48:36.988 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 48, "H"
A 00:48:36.988 "(0x) 48, "H"" received
I 00:48:36.997 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 49, "I"
A 00:48:36.998 "(0x) 49, "I"" received
I 00:48:36.998 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4A, "J"
A 00:48:36.998 "(0x) 4A, "J"" received
I 00:48:37.009 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4B, "K"
A 00:48:37.009 "(0x) 4B, "K"" received
I 00:48:37.010 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4C, "L"
A 00:48:37.010 "(0x) 4C, "L"" received
I 00:48:37.020 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4D, "M"
A 00:48:37.020 "(0x) 4D, "M"" received
I 00:48:37.021 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4E, "N"
A 00:48:37.021 "(0x) 4E, "N"" received
I 00:48:37.032 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 4F, "O"
A 00:48:37.032 "(0x) 4F, "O"" received
I 00:48:37.032 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 50, "P"
A 00:48:37.032 "(0x) 50, "P"" received
I 00:48:37.035 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 51, "Q"
A 00:48:37.035 "(0x) 51, "Q"" received
I 00:48:37.043 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 52, "R"
A 00:48:37.043 "(0x) 52, "R"" received
I 00:48:37.043 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 53, "S"
A 00:48:37.043 "(0x) 53, "S"" received
I 00:48:37.054 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 54, "T"
A 00:48:37.054 "(0x) 54, "T"" received
I 00:48:37.055 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 55, "U"
A 00:48:37.055 "(0x) 55, "U"" received
I 00:48:37.065 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 56, "V"
A 00:48:37.065 "(0x) 56, "V"" received
I 00:48:37.066 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 57, "W"
A 00:48:37.066 "(0x) 57, "W"" received
I 00:48:37.076 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 58, "X"
A 00:48:37.076 "(0x) 58, "X"" received
I 00:48:37.076 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 59, "Y"
A 00:48:37.076 "(0x) 59, "Y"" received
I 00:48:37.078 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5A, "Z"
A 00:48:37.078 "(0x) 5A, "Z"" received
I 00:48:37.087 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5B, "["
A 00:48:37.087 "(0x) 5B, "["" received
I 00:48:37.088 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5C, "\"
A 00:48:37.088 "(0x) 5C, "\"" received
I 00:48:37.099 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5D, "]"
A 00:48:37.099 "(0x) 5D, "]"" received
I 00:48:37.100 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5E, "^"
A 00:48:37.100 "(0x) 5E, "^"" received
I 00:48:37.110 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5F, "_"
A 00:48:37.110 "(0x) 5F, "_"" received
I 00:48:37.111 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 60, "`"
A 00:48:37.111 "(0x) 60, "`"" received
I 00:48:37.121 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 61, "a"
A 00:48:37.121 "(0x) 61, "a"" received
I 00:48:37.121 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 62, "b"
A 00:48:37.121 "(0x) 62, "b"" received
I 00:48:37.123 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 63, "c"
A 00:48:37.123 "(0x) 63, "c"" received
I 00:48:37.133 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 64, "d"
A 00:48:37.133 "(0x) 64, "d"" received
I 00:48:37.133 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 65, "e"
A 00:48:37.133 "(0x) 65, "e"" received
I 00:48:37.144 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 66, "f"
A 00:48:37.144 "(0x) 66, "f"" received
I 00:48:37.145 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 67, "g"
A 00:48:37.145 "(0x) 67, "g"" received
I 00:48:37.155 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 68, "h"
A 00:48:37.155 "(0x) 68, "h"" received
I 00:48:37.156 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 69, "i"
A 00:48:37.156 "(0x) 69, "i"" received
I 00:48:37.166 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6A, "j"
A 00:48:37.166 "(0x) 6A, "j"" received
I 00:48:37.166 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6B, "k"
A 00:48:37.166 "(0x) 6B, "k"" received
I 00:48:37.168 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6C, "l"
A 00:48:37.168 "(0x) 6C, "l"" received
I 00:48:37.177 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6D, "m"
A 00:48:37.177 "(0x) 6D, "m"" received
I 00:48:37.178 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6E, "n"
A 00:48:37.178 "(0x) 6E, "n"" received
I 00:48:37.189 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6F, "o"
A 00:48:37.189 "(0x) 6F, "o"" received
I 00:48:37.190 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 70, "p"
A 00:48:37.190 "(0x) 70, "p"" received
I 00:48:37.200 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 71, "q"
A 00:48:37.200 "(0x) 71, "q"" received
I 00:48:37.202 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 72, "r"
A 00:48:37.202 "(0x) 72, "r"" received
I 00:48:37.211 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 73, "s"
A 00:48:37.211 "(0x) 73, "s"" received
I 00:48:37.212 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 74, "t"
A 00:48:37.212 "(0x) 74, "t"" received
I 00:48:37.213 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 75, "u"
A 00:48:37.213 "(0x) 75, "u"" received
I 00:48:37.222 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 76, "v"
A 00:48:37.222 "(0x) 76, "v"" received
I 00:48:37.224 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 77, "w"
A 00:48:37.224 "(0x) 77, "w"" received
I 00:48:37.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 78, "x"
A 00:48:37.235 "(0x) 78, "x"" received
I 00:48:37.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 79, "y"
A 00:48:37.235 "(0x) 79, "y"" received
I 00:48:37.245 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7A, "z"
A 00:48:37.245 "(0x) 7A, "z"" received
I 00:48:37.246 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7B, "{"
A 00:48:37.246 "(0x) 7B, "{"" received
I 00:48:37.256 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7C, "|"
A 00:48:37.256 "(0x) 7C, "|"" received
I 00:48:37.256 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7D, "}"
A 00:48:37.256 "(0x) 7D, "}"" received
I 00:48:37.258 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7E, "~"
A 00:48:37.258 "(0x) 7E, "~"" received
I 00:48:37.267 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7F
A 00:48:37.267 "(0x) 7F" received
I 00:48:37.271 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 80
A 00:48:37.271 "(0x) 80" received
I 00:48:37.279 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 81
A 00:48:37.279 "(0x) 81" received
I 00:48:37.280 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 82
A 00:48:37.280 "(0x) 82" received
I 00:48:37.290 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 83
A 00:48:37.290 "(0x) 83" received
I 00:48:37.291 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 84
A 00:48:37.291 "(0x) 84" received
I 00:48:37.301 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 85
A 00:48:37.301 "(0x) 85" received
I 00:48:37.302 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 86
A 00:48:37.302 "(0x) 86" received
I 00:48:37.303 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 87
A 00:48:37.303 "(0x) 87" received
I 00:48:37.313 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 88
A 00:48:37.313 "(0x) 88" received
I 00:48:37.313 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 89
A 00:48:37.313 "(0x) 89" received
I 00:48:37.324 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8A
A 00:48:37.324 "(0x) 8A" received
I 00:48:37.325 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8B
A 00:48:37.325 "(0x) 8B" received
I 00:48:37.335 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8C
A 00:48:37.335 "(0x) 8C" received
I 00:48:37.336 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8D
A 00:48:37.336 "(0x) 8D" received
I 00:48:37.346 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8E
A 00:48:37.346 "(0x) 8E" received
I 00:48:37.347 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8F
A 00:48:37.347 "(0x) 8F" received
I 00:48:37.348 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 90
A 00:48:37.348 "(0x) 90" received
I 00:48:37.358 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 91
A 00:48:37.358 "(0x) 91" received
I 00:48:37.358 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 92
A 00:48:37.358 "(0x) 92" received
I 00:48:37.369 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 93
A 00:48:37.369 "(0x) 93" received
I 00:48:37.370 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 94
A 00:48:37.370 "(0x) 94" received
I 00:48:37.380 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 95
A 00:48:37.380 "(0x) 95" received
I 00:48:37.381 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 96
A 00:48:37.381 "(0x) 96" received
I 00:48:37.391 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 97
A 00:48:37.391 "(0x) 97" received
I 00:48:37.392 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 98
A 00:48:37.392 "(0x) 98" received
I 00:48:37.393 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 99
A 00:48:37.393 "(0x) 99" received
I 00:48:37.403 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9A
A 00:48:37.403 "(0x) 9A" received
I 00:48:37.403 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9B
A 00:48:37.403 "(0x) 9B" received
I 00:48:37.414 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9C
A 00:48:37.414 "(0x) 9C" received
I 00:48:37.415 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9D
A 00:48:37.415 "(0x) 9D" received
I 00:48:37.425 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9E
A 00:48:37.425 "(0x) 9E" received
I 00:48:37.426 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9F
A 00:48:37.426 "(0x) 9F" received
I 00:48:37.437 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A0
A 00:48:37.437 "(0x) A0" received
I 00:48:37.437 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A1
A 00:48:37.437 "(0x) A1" received
I 00:48:37.438 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A2
A 00:48:37.438 "(0x) A2" received
I 00:48:37.448 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A3
A 00:48:37.448 "(0x) A3" received
I 00:48:37.448 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A4
A 00:48:37.448 "(0x) A4" received
I 00:48:37.498 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A5
A 00:48:37.498 "(0x) A5" received
I 00:48:37.498 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A6
A 00:48:37.498 "(0x) A6" received
I 00:48:37.498 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A7
A 00:48:37.498 "(0x) A7" received
I 00:48:37.499 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A8
A 00:48:37.499 "(0x) A8" received
I 00:48:37.499 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A9
A 00:48:37.499 "(0x) A9" received
I 00:48:37.499 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AA
A 00:48:37.499 "(0x) AA" received
I 00:48:37.499 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AB
A 00:48:37.499 "(0x) AB" received
I 00:48:37.499 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AC
A 00:48:37.499 "(0x) AC" received
I 00:48:37.499 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AD
A 00:48:37.499 "(0x) AD" received
I 00:48:37.504 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AE
A 00:48:37.504 "(0x) AE" received
I 00:48:37.505 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AF
A 00:48:37.505 "(0x) AF" received
I 00:48:37.515 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B0
A 00:48:37.515 "(0x) B0" received
I 00:48:37.516 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B1
A 00:48:37.516 "(0x) B1" received
I 00:48:37.526 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B2
A 00:48:37.526 "(0x) B2" received
I 00:48:37.526 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B3
A 00:48:37.526 "(0x) B3" received
I 00:48:37.528 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B4
A 00:48:37.528 "(0x) B4" received
I 00:48:37.538 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B5
A 00:48:37.538 "(0x) B5" received
I 00:48:37.539 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B6
A 00:48:37.539 "(0x) B6" received
I 00:48:37.549 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B7
A 00:48:37.549 "(0x) B7" received
I 00:48:37.550 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B8
A 00:48:37.550 "(0x) B8" received
I 00:48:37.560 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B9
A 00:48:37.560 "(0x) B9" received
I 00:48:37.561 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BA
A 00:48:37.561 "(0x) BA" received
I 00:48:37.571 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BB
A 00:48:37.571 "(0x) BB" received
I 00:48:37.572 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BC
A 00:48:37.572 "(0x) BC" received
I 00:48:37.573 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BD
A 00:48:37.573 "(0x) BD" received
I 00:48:37.583 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BE
A 00:48:37.583 "(0x) BE" received
I 00:48:37.583 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BF
A 00:48:37.583 "(0x) BF" received
I 00:48:37.598 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C0
A 00:48:37.598 "(0x) C0" received
I 00:48:37.598 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C1
A 00:48:37.598 "(0x) C1" received
I 00:48:37.605 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C2
A 00:48:37.605 "(0x) C2" received
I 00:48:37.606 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C3
A 00:48:37.606 "(0x) C3" received
I 00:48:37.616 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C4
A 00:48:37.616 "(0x) C4" received
I 00:48:37.617 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C5
A 00:48:37.617 "(0x) C5" received
I 00:48:37.617 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C6
A 00:48:37.617 "(0x) C6" received
I 00:48:37.628 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C7
A 00:48:37.628 "(0x) C7" received
I 00:48:37.628 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C8
A 00:48:37.628 "(0x) C8" received
I 00:48:37.639 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C9
A 00:48:37.639 "(0x) C9" received
I 00:48:37.640 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CA
A 00:48:37.640 "(0x) CA" received
I 00:48:37.650 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CB
A 00:48:37.650 "(0x) CB" received
I 00:48:37.651 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CC
A 00:48:37.651 "(0x) CC" received
I 00:48:37.661 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CD
A 00:48:37.661 "(0x) CD" received
I 00:48:37.661 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CE
A 00:48:37.661 "(0x) CE" received
I 00:48:37.663 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CF
A 00:48:37.663 "(0x) CF" received
I 00:48:37.672 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D0
A 00:48:37.672 "(0x) D0" received
I 00:48:37.673 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D1
A 00:48:37.673 "(0x) D1" received
I 00:48:37.684 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D2
A 00:48:37.684 "(0x) D2" received
I 00:48:37.685 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D3
A 00:48:37.685 "(0x) D3" received
I 00:48:37.695 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D4
A 00:48:37.695 "(0x) D4" received
I 00:48:37.695 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D5
A 00:48:37.695 "(0x) D5" received
I 00:48:37.706 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D6
A 00:48:37.706 "(0x) D6" received
I 00:48:37.707 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D7
A 00:48:37.707 "(0x) D7" received
I 00:48:37.707 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D8
A 00:48:37.707 "(0x) D8" received
I 00:48:37.717 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D9
A 00:48:37.717 "(0x) D9" received
I 00:48:37.718 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DA
A 00:48:37.718 "(0x) DA" received
I 00:48:37.729 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DB
A 00:48:37.729 "(0x) DB" received
I 00:48:37.729 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DC
A 00:48:37.729 "(0x) DC" received
I 00:48:37.740 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DD
A 00:48:37.740 "(0x) DD" received
I 00:48:37.741 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DE
A 00:48:37.741 "(0x) DE" received
I 00:48:37.751 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DF
A 00:48:37.751 "(0x) DF" received
I 00:48:37.752 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E0
A 00:48:37.752 "(0x) E0" received
I 00:48:37.753 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E1
A 00:48:37.753 "(0x) E1" received
I 00:48:37.762 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E2
A 00:48:37.762 "(0x) E2" received
I 00:48:37.763 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E3
A 00:48:37.763 "(0x) E3" received
I 00:48:37.774 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E4
A 00:48:37.774 "(0x) E4" received
I 00:48:37.774 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E5
A 00:48:37.774 "(0x) E5" received
I 00:48:37.785 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E6
A 00:48:37.785 "(0x) E6" received
I 00:48:37.786 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E7
A 00:48:37.786 "(0x) E7" received
I 00:48:37.796 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E8
A 00:48:37.796 "(0x) E8" received
I 00:48:37.796 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E9
A 00:48:37.796 "(0x) E9" received
I 00:48:37.798 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EA
A 00:48:37.798 "(0x) EA" received
I 00:48:37.807 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EB
A 00:48:37.807 "(0x) EB" received
I 00:48:37.808 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EC
A 00:48:37.808 "(0x) EC" received
I 00:48:37.819 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) ED
A 00:48:37.819 "(0x) ED" received
I 00:48:37.820 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EE
A 00:48:37.820 "(0x) EE" received
I 00:48:37.831 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EF
A 00:48:37.831 "(0x) EF" received
I 00:48:37.831 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F0
A 00:48:37.831 "(0x) F0" received
I 00:48:37.841 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F1
A 00:48:37.841 "(0x) F1" received
I 00:48:37.842 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F2
A 00:48:37.842 "(0x) F2" received
I 00:48:37.843 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F3
A 00:48:37.843 "(0x) F3" received
I 00:48:37.853 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F4
A 00:48:37.853 "(0x) F4" received
I 00:48:37.853 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F5
A 00:48:37.853 "(0x) F5" received
I 00:48:37.864 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F6
A 00:48:37.864 "(0x) F6" received
I 00:48:37.865 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F7
A 00:48:37.865 "(0x) F7" received
I 00:48:37.875 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F8
A 00:48:37.875 "(0x) F8" received
I 00:48:37.876 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F9
A 00:48:37.876 "(0x) F9" received
I 00:48:37.886 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FA
A 00:48:37.886 "(0x) FA" received
I 00:48:37.887 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FB
A 00:48:37.887 "(0x) FB" received
I 00:48:37.888 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FC
A 00:48:37.888 "(0x) FC" received
I 00:48:37.897 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FD
A 00:48:37.897 "(0x) FD" received
I 00:48:37.898 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FE
A 00:48:37.898 "(0x) FE" received
I 00:48:37.909 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FF
A 00:48:37.909 "(0x) FF" received
I 00:48:37.910 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 00
A 00:48:37.910 "(0x) 00" received
I 00:48:37.920 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 01
A 00:48:37.920 "(0x) 01" received
I 00:48:37.921 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 02
A 00:48:37.921 "(0x) 02" received
I 00:48:37.931 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 03
A 00:48:37.931 "(0x) 03" received
I 00:48:37.932 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 04
A 00:48:37.932 "(0x) 04" received
I 00:48:37.933 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 05
A 00:48:37.933 "(0x) 05" received
I 00:48:37.942 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 06
A 00:48:37.942 "(0x) 06" received
I 00:48:37.943 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 07
A 00:48:37.943 "(0x) 07" received
I 00:48:37.954 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 08
A 00:48:37.954 "(0x) 08" received
I 00:48:37.955 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 09
A 00:48:37.955 "(0x) 09" received
I 00:48:37.965 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0A
A 00:48:37.965 "(0x) 0A" received
I 00:48:37.966 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0B
A 00:48:37.966 "(0x) 0B" received
I 00:48:37.976 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0C
A 00:48:37.976 "(0x) 0C" received
I 00:48:37.976 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0D
A 00:48:37.976 "(0x) 0D" received
I 00:48:37.978 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0E
A 00:48:37.978 "(0x) 0E" received
I 00:48:37.988 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0F
A 00:48:37.988 "(0x) 0F" received
I 00:48:37.988 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 10
A 00:48:37.988 "(0x) 10" received
I 00:48:37.999 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 11
A 00:48:37.999 "(0x) 11" received
I 00:48:37.999 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 12
A 00:48:38.000 "(0x) 12" received
I 00:48:38.010 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 13
A 00:48:38.010 "(0x) 13" received
I 00:48:38.011 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 14
A 00:48:38.011 "(0x) 14" received
I 00:48:38.022 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 15
A 00:48:38.022 "(0x) 15" received
I 00:48:38.022 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 16
A 00:48:38.022 "(0x) 16" received
I 00:48:38.023 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 17
A 00:48:38.023 "(0x) 17" received
I 00:48:38.033 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 18
A 00:48:38.033 "(0x) 18" received
I 00:48:38.033 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 19
A 00:48:38.033 "(0x) 19" received
I 00:48:38.044 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1A
A 00:48:38.044 "(0x) 1A" received
I 00:48:38.045 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1B
A 00:48:38.045 "(0x) 1B" received
I 00:48:38.055 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1C
A 00:48:38.055 "(0x) 1C" received
I 00:48:38.056 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1D
A 00:48:38.056 "(0x) 1D" received
I 00:48:38.066 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1E
A 00:48:38.066 "(0x) 1E" received
I 00:48:38.067 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1F
A 00:48:38.067 "(0x) 1F" received
I 00:48:38.068 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 20, " "
A 00:48:38.068 "(0x) 20, " "" received
V 00:48:38.078 [Server] Cancelling server connection...
D 00:48:38.078 server.cancelConnection(device)
V 00:48:38.080 Disconnecting...
D 00:48:38.080 gatt.disconnect()
I 00:48:38.081 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 21, "!"
A 00:48:38.081 "(0x) 21, "!"" received
I 00:48:38.081 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 22, """
A 00:48:38.081 "(0x) 22, """" received
D 00:48:38.111 [Callback] Connection state changed with status: 0 and new state: DISCONNECTED (0)
I 00:48:38.111 Disconnected
D 00:48:38.114 [Callback] Connection state changed with status: 0 and new state: CONNECTED (2)
I 00:48:38.114 Connected to 30:AE:A4:43:A1:72
I 00:48:38.131 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 23, "#"
A 00:48:38.131 "(0x) 23, "#"" received
V 00:48:38.131 Discovering services...
D 00:48:38.131 gatt.discoverServices()
I 00:48:38.131 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 24, "$"
A 00:48:38.131 "(0x) 24, "$"" received
I 00:48:38.197 Connection parameters updated (interval: 7.5ms, latency: 0, timeout: 5000ms)
D 00:48:38.376 [Callback] Services discovered with status: 0
I 00:48:38.376 Services discovered
V 00:48:38.381 Generic Attribute (0x1801)
- Service Changed [I] (0x2A05)
Client Characteristic Configuration (0x2902)
Generic Access (0x1800)
- Device Name [R] (0x2A00)
- Appearance [R] (0x2A01)
- Central Address Resolution [R] (0x2AA6)
Unknown Service (4fafc201-1fb5-459e-8fcc-c5c9c331914b)
- Unknown Characteristic [N R W] (beb5483e-36e1-4688-b7f5-ea07361b26a8)
Client Characteristic Configuration (0x2902)
D 00:48:38.382 gatt.setCharacteristicNotification(00002a05-0000-1000-8000-00805f9b34fb, true)
D 00:48:38.383 gatt.setCharacteristicNotification(beb5483e-36e1-4688-b7f5-ea07361b26a8, true)
I 00:48:38.393 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5E, "^"
A 00:48:38.393 "(0x) 5E, "^"" received
I 00:48:38.393 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 5F, "_"
A 00:48:38.393 "(0x) 5F, "_"" received
I 00:48:38.393 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 60, "`"
A 00:48:38.393 "(0x) 60, "`"" received
I 00:48:38.396 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 61, "a"
A 00:48:38.396 "(0x) 61, "a"" received
I 00:48:38.398 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 62, "b"
A 00:48:38.398 "(0x) 62, "b"" received
I 00:48:38.405 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 63, "c"
A 00:48:38.405 "(0x) 63, "c"" received
I 00:48:38.411 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 64, "d"
A 00:48:38.411 "(0x) 64, "d"" received
I 00:48:38.413 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 65, "e"
A 00:48:38.413 "(0x) 65, "e"" received
I 00:48:38.420 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 66, "f"
A 00:48:38.420 "(0x) 66, "f"" received
I 00:48:38.426 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 67, "g"
A 00:48:38.426 "(0x) 67, "g"" received
I 00:48:38.427 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 68, "h"
A 00:48:38.427 "(0x) 68, "h"" received
I 00:48:38.434 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 69, "i"
A 00:48:38.434 "(0x) 69, "i"" received
I 00:48:38.450 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6A, "j"
A 00:48:38.450 "(0x) 6A, "j"" received
I 00:48:38.450 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6B, "k"
A 00:48:38.450 "(0x) 6B, "k"" received
I 00:48:38.451 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6C, "l"
A 00:48:38.451 "(0x) 6C, "l"" received
I 00:48:38.452 Connection parameters updated (interval: 11.25ms, latency: 0, timeout: 1000ms)
I 00:48:38.463 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6D, "m"
A 00:48:38.463 "(0x) 6D, "m"" received
I 00:48:38.463 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6E, "n"
A 00:48:38.463 "(0x) 6E, "n"" received
I 00:48:38.471 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 6F, "o"
A 00:48:38.471 "(0x) 6F, "o"" received
I 00:48:38.472 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 70, "p"
A 00:48:38.472 "(0x) 70, "p"" received
I 00:48:38.473 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 71, "q"
A 00:48:38.473 "(0x) 71, "q"" received
I 00:48:38.483 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 72, "r"
A 00:48:38.483 "(0x) 72, "r"" received
I 00:48:38.483 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 73, "s"
A 00:48:38.483 "(0x) 73, "s"" received
I 00:48:38.494 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 74, "t"
A 00:48:38.494 "(0x) 74, "t"" received
I 00:48:38.495 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 75, "u"
A 00:48:38.495 "(0x) 75, "u"" received
I 00:48:38.505 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 76, "v"
A 00:48:38.505 "(0x) 76, "v"" received
I 00:48:38.506 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 77, "w"
A 00:48:38.506 "(0x) 77, "w"" received
I 00:48:38.516 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 78, "x"
A 00:48:38.516 "(0x) 78, "x"" received
I 00:48:38.517 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 79, "y"
A 00:48:38.517 "(0x) 79, "y"" received
I 00:48:38.518 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7A, "z"
A 00:48:38.518 "(0x) 7A, "z"" received
I 00:48:38.527 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7B, "{"
A 00:48:38.527 "(0x) 7B, "{"" received
I 00:48:38.528 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7C, "|"
A 00:48:38.528 "(0x) 7C, "|"" received
I 00:48:38.539 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7D, "}"
A 00:48:38.539 "(0x) 7D, "}"" received
I 00:48:38.540 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7E, "~"
A 00:48:38.540 "(0x) 7E, "~"" received
I 00:48:38.550 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 7F
A 00:48:38.550 "(0x) 7F" received
I 00:48:38.551 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 80
A 00:48:38.551 "(0x) 80" received
I 00:48:38.561 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 81
A 00:48:38.561 "(0x) 81" received
I 00:48:38.561 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 82
A 00:48:38.561 "(0x) 82" received
I 00:48:38.563 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 83
A 00:48:38.563 "(0x) 83" received
I 00:48:38.572 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 84
A 00:48:38.572 "(0x) 84" received
I 00:48:38.573 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 85
A 00:48:38.573 "(0x) 85" received
I 00:48:38.584 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 86
A 00:48:38.584 "(0x) 86" received
I 00:48:38.585 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 87
A 00:48:38.585 "(0x) 87" received
I 00:48:38.595 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 88
A 00:48:38.595 "(0x) 88" received
I 00:48:38.596 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 89
A 00:48:38.596 "(0x) 89" received
I 00:48:38.606 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8A
A 00:48:38.606 "(0x) 8A" received
I 00:48:38.607 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8B
A 00:48:38.607 "(0x) 8B" received
I 00:48:38.608 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8C
A 00:48:38.608 "(0x) 8C" received
I 00:48:38.618 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8D
A 00:48:38.618 "(0x) 8D" received
I 00:48:38.618 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8E
A 00:48:38.618 "(0x) 8E" received
I 00:48:38.629 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 8F
A 00:48:38.629 "(0x) 8F" received
I 00:48:38.630 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 90
A 00:48:38.630 "(0x) 90" received
I 00:48:38.640 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 91
A 00:48:38.640 "(0x) 91" received
I 00:48:38.641 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 92
A 00:48:38.641 "(0x) 92" received
I 00:48:38.651 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 93
A 00:48:38.651 "(0x) 93" received
I 00:48:38.652 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 94
A 00:48:38.652 "(0x) 94" received
I 00:48:38.653 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 95
A 00:48:38.653 "(0x) 95" received
I 00:48:38.662 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 96
A 00:48:38.663 "(0x) 96" received
I 00:48:38.664 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 97
A 00:48:38.664 "(0x) 97" received
I 00:48:38.674 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 98
A 00:48:38.674 "(0x) 98" received
I 00:48:38.675 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 99
A 00:48:38.675 "(0x) 99" received
I 00:48:38.685 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9A
A 00:48:38.685 "(0x) 9A" received
I 00:48:38.686 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9B
A 00:48:38.686 "(0x) 9B" received
I 00:48:38.696 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9C
A 00:48:38.696 "(0x) 9C" received
I 00:48:38.697 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9D
A 00:48:38.697 "(0x) 9D" received
I 00:48:38.698 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9E
A 00:48:38.698 "(0x) 9E" received
I 00:48:38.707 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 9F
A 00:48:38.707 "(0x) 9F" received
I 00:48:38.708 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A0
A 00:48:38.708 "(0x) A0" received
I 00:48:38.730 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A1
A 00:48:38.730 "(0x) A1" received
I 00:48:38.730 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A2
A 00:48:38.730 "(0x) A2" received
I 00:48:38.731 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A3
A 00:48:38.731 "(0x) A3" received
I 00:48:38.731 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A4
A 00:48:38.731 "(0x) A4" received
I 00:48:38.733 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A5
A 00:48:38.733 "(0x) A5" received
I 00:48:38.741 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A6
A 00:48:38.741 "(0x) A6" received
I 00:48:38.742 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A7
A 00:48:38.742 "(0x) A7" received
I 00:48:38.753 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A8
A 00:48:38.753 "(0x) A8" received
I 00:48:38.754 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A9
A 00:48:38.754 "(0x) A9" received
I 00:48:38.764 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AA
A 00:48:38.764 "(0x) AA" received
I 00:48:38.768 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AB
A 00:48:38.768 "(0x) AB" received
I 00:48:38.775 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AC
A 00:48:38.775 "(0x) AC" received
I 00:48:38.776 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AD
A 00:48:38.776 "(0x) AD" received
I 00:48:38.786 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AE
A 00:48:38.786 "(0x) AE" received
I 00:48:38.786 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AF
A 00:48:38.786 "(0x) AF" received
I 00:48:38.788 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B0
A 00:48:38.788 "(0x) B0" received
I 00:48:38.798 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B1
A 00:48:38.798 "(0x) B1" received
I 00:48:38.798 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B2
A 00:48:38.798 "(0x) B2" received
I 00:48:38.809 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B3
A 00:48:38.809 "(0x) B3" received
I 00:48:38.810 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B4
A 00:48:38.810 "(0x) B4" received
I 00:48:38.820 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B5
A 00:48:38.820 "(0x) B5" received
I 00:48:38.821 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B6
A 00:48:38.821 "(0x) B6" received
I 00:48:38.831 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B7
A 00:48:38.831 "(0x) B7" received
I 00:48:38.831 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B8
A 00:48:38.831 "(0x) B8" received
I 00:48:38.833 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B9
A 00:48:38.833 "(0x) B9" received
I 00:48:38.842 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BA
A 00:48:38.842 "(0x) BA" received
I 00:48:38.843 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BB
A 00:48:38.843 "(0x) BB" received
I 00:48:38.854 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BC
A 00:48:38.854 "(0x) BC" received
I 00:48:38.855 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BD
A 00:48:38.855 "(0x) BD" received
I 00:48:38.865 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BE
A 00:48:38.865 "(0x) BE" received
I 00:48:38.866 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BF
A 00:48:38.866 "(0x) BF" received
I 00:48:38.876 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C0
A 00:48:38.876 "(0x) C0" received
I 00:48:38.877 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C1
A 00:48:38.877 "(0x) C1" received
I 00:48:38.878 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C2
A 00:48:38.878 "(0x) C2" received
I 00:48:38.887 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C3
A 00:48:38.887 "(0x) C3" received
I 00:48:38.888 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C4
A 00:48:38.888 "(0x) C4" received
I 00:48:38.899 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C5
A 00:48:38.899 "(0x) C5" received
I 00:48:38.900 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C6
A 00:48:38.900 "(0x) C6" received
I 00:48:38.910 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C7
A 00:48:38.910 "(0x) C7" received
I 00:48:38.911 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C8
A 00:48:38.911 "(0x) C8" received
I 00:48:38.921 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C9
A 00:48:38.921 "(0x) C9" received
I 00:48:38.922 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CA
A 00:48:38.922 "(0x) CA" received
I 00:48:38.923 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CB
A 00:48:38.923 "(0x) CB" received
I 00:48:38.933 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CC
A 00:48:38.933 "(0x) CC" received
I 00:48:38.934 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CD
A 00:48:38.934 "(0x) CD" received
I 00:48:38.944 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CE
A 00:48:38.944 "(0x) CE" received
I 00:48:38.945 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CF
A 00:48:38.945 "(0x) CF" received
I 00:48:38.955 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D0
A 00:48:38.955 "(0x) D0" received
I 00:48:38.956 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D1
A 00:48:38.956 "(0x) D1" received
I 00:48:38.966 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D2
A 00:48:38.966 "(0x) D2" received
I 00:48:38.967 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D3
A 00:48:38.967 "(0x) D3" received
I 00:48:38.968 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D4
A 00:48:38.968 "(0x) D4" received
I 00:48:38.977 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D5
A 00:48:38.977 "(0x) D5" received
I 00:48:38.978 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D6
A 00:48:38.978 "(0x) D6" received
I 00:48:38.989 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D7
A 00:48:38.989 "(0x) D7" received
I 00:48:38.989 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D8
A 00:48:38.989 "(0x) D8" received
I 00:48:39.000 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D9
A 00:48:39.000 "(0x) D9" received
I 00:48:39.001 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DA
A 00:48:39.001 "(0x) DA" received
I 00:48:39.011 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DB
A 00:48:39.011 "(0x) DB" received
I 00:48:39.012 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DC
A 00:48:39.012 "(0x) DC" received
I 00:48:39.012 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DD
A 00:48:39.012 "(0x) DD" received
I 00:48:39.023 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DE
A 00:48:39.023 "(0x) DE" received
I 00:48:39.023 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DF
A 00:48:39.023 "(0x) DF" received
I 00:48:39.034 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E0
A 00:48:39.034 "(0x) E0" received
I 00:48:39.035 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E1
A 00:48:39.035 "(0x) E1" received
I 00:48:39.045 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E2
A 00:48:39.045 "(0x) E2" received
I 00:48:39.046 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E3
A 00:48:39.046 "(0x) E3" received
I 00:48:39.056 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E4
A 00:48:39.056 "(0x) E4" received
I 00:48:39.057 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E5
A 00:48:39.057 "(0x) E5" received
I 00:48:39.058 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E6
A 00:48:39.058 "(0x) E6" received
I 00:48:39.070 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E7
A 00:48:39.070 "(0x) E7" received
I 00:48:39.070 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E8
A 00:48:39.070 "(0x) E8" received
I 00:48:39.079 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E9
A 00:48:39.079 "(0x) E9" received
I 00:48:39.080 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EA
A 00:48:39.080 "(0x) EA" received
I 00:48:39.109 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EB
A 00:48:39.109 "(0x) EB" received
I 00:48:39.109 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EC
A 00:48:39.109 "(0x) EC" received
I 00:48:39.109 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) ED
A 00:48:39.109 "(0x) ED" received
I 00:48:39.109 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EE
A 00:48:39.109 "(0x) EE" received
I 00:48:39.110 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) EF
A 00:48:39.110 "(0x) EF" received
I 00:48:39.113 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F0
A 00:48:39.113 "(0x) F0" received
I 00:48:39.114 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F1
A 00:48:39.114 "(0x) F1" received
I 00:48:39.124 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F2
A 00:48:39.124 "(0x) F2" received
I 00:48:39.125 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F3
A 00:48:39.125 "(0x) F3" received
I 00:48:39.135 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F4
A 00:48:39.135 "(0x) F4" received
I 00:48:39.136 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F5
A 00:48:39.136 "(0x) F5" received
I 00:48:39.146 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F6
A 00:48:39.146 "(0x) F6" received
I 00:48:39.146 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F7
A 00:48:39.146 "(0x) F7" received
I 00:48:39.148 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F8
A 00:48:39.148 "(0x) F8" received
I 00:48:39.158 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) F9
A 00:48:39.158 "(0x) F9" received
I 00:48:39.158 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FA
A 00:48:39.158 "(0x) FA" received
I 00:48:39.169 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FB
A 00:48:39.169 "(0x) FB" received
I 00:48:39.170 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FC
A 00:48:39.170 "(0x) FC" received
I 00:48:39.180 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FD
A 00:48:39.180 "(0x) FD" received
I 00:48:39.181 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FE
A 00:48:39.181 "(0x) FE" received
I 00:48:39.192 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) FF
A 00:48:39.192 "(0x) FF" received
I 00:48:39.192 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 00
A 00:48:39.192 "(0x) 00" received
I 00:48:39.193 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 01
A 00:48:39.193 "(0x) 01" received
I 00:48:39.203 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 02
A 00:48:39.203 "(0x) 02" received
I 00:48:39.203 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 03
A 00:48:39.203 "(0x) 03" received
I 00:48:39.214 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 04
A 00:48:39.214 "(0x) 04" received
I 00:48:39.215 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 05
A 00:48:39.215 "(0x) 05" received
I 00:48:39.225 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 06
A 00:48:39.225 "(0x) 06" received
I 00:48:39.226 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 07
A 00:48:39.226 "(0x) 07" received
I 00:48:39.236 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 08
A 00:48:39.236 "(0x) 08" received
I 00:48:39.237 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 09
A 00:48:39.237 "(0x) 09" received
I 00:48:39.238 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0A
A 00:48:39.238 "(0x) 0A" received
I 00:48:39.247 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0B
A 00:48:39.247 "(0x) 0B" received
I 00:48:39.248 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0C
A 00:48:39.248 "(0x) 0C" received
I 00:48:39.259 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0D
A 00:48:39.259 "(0x) 0D" received
I 00:48:39.260 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0E
A 00:48:39.260 "(0x) 0E" received
I 00:48:39.270 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 0F
A 00:48:39.270 "(0x) 0F" received
I 00:48:39.271 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 10
A 00:48:39.271 "(0x) 10" received
I 00:48:39.281 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 11
A 00:48:39.281 "(0x) 11" received
I 00:48:39.282 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 12
A 00:48:39.282 "(0x) 12" received
I 00:48:39.283 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 13
A 00:48:39.283 "(0x) 13" received
I 00:48:39.292 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 14
A 00:48:39.292 "(0x) 14" received
I 00:48:39.293 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 15
A 00:48:39.293 "(0x) 15" received
I 00:48:39.304 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 16
A 00:48:39.304 "(0x) 16" received
I 00:48:39.305 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 17
A 00:48:39.305 "(0x) 17" received
I 00:48:39.315 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 18
A 00:48:39.315 "(0x) 18" received
I 00:48:39.316 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 19
A 00:48:39.316 "(0x) 19" received
I 00:48:39.326 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1A
A 00:48:39.327 "(0x) 1A" received
I 00:48:39.327 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1B
A 00:48:39.327 "(0x) 1B" received
I 00:48:39.328 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1C
A 00:48:39.328 "(0x) 1C" received
I 00:48:39.338 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1D
A 00:48:39.338 "(0x) 1D" received
I 00:48:39.338 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1E
A 00:48:39.338 "(0x) 1E" received
I 00:48:39.349 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 1F
A 00:48:39.349 "(0x) 1F" received
I 00:48:39.350 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) 20, " "
A 00:48:39.350 "(0x) 20, " "" received
D 00:48:39.373 [Server callback] Connection state changed with status: 0 and new state: DISCONNECTED (0)
I 00:48:39.373 [Server] Device disconnected
D 00:48:39.395 [Callback] Connection state changed with status: 22 and new state: DISCONNECTED (0)
D 00:48:39.395 [Broadcast] Action received: android.bluetooth.device.action.ACL_DISCONNECTED
E 00:48:39.396 Error 22 (0x16): GATT CONN TERMINATE LOCAL HOST
I 00:48:39.396 Disconnected
Here is version with delay(1)
which is causing congest from time to time(often). As you can see there is about 150 ms gap (congestion) and then is madness, even 12 notifications in the same millisecond :
I 00:52:42.084 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A8
A 00:52:42.084 "(0x) A8" received
I 00:52:42.084 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) A9
A 00:52:42.084 "(0x) A9" received
I 00:52:42.231 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AA
A 00:52:42.231 "(0x) AA" received
I 00:52:42.231 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AB
A 00:52:42.231 "(0x) AB" received
I 00:52:42.231 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AC
A 00:52:42.231 "(0x) AC" received
I 00:52:42.231 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AD
A 00:52:42.231 "(0x) AD" received
I 00:52:42.231 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AE
A 00:52:42.231 "(0x) AE" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) AF
A 00:52:42.232 "(0x) AF" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B0
A 00:52:42.232 "(0x) B0" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B1
A 00:52:42.232 "(0x) B1" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B2
A 00:52:42.232 "(0x) B2" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B3
A 00:52:42.232 "(0x) B3" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B4
A 00:52:42.232 "(0x) B4" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B5
A 00:52:42.232 "(0x) B5" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B6
A 00:52:42.232 "(0x) B6" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B7
A 00:52:42.232 "(0x) B7" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B8
A 00:52:42.232 "(0x) B8" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) B9
A 00:52:42.232 "(0x) B9" received
I 00:52:42.232 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BA
A 00:52:42.232 "(0x) BA" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BB
A 00:52:42.233 "(0x) BB" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BC
A 00:52:42.233 "(0x) BC" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BD
A 00:52:42.233 "(0x) BD" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BE
A 00:52:42.233 "(0x) BE" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) BF
A 00:52:42.233 "(0x) BF" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C0
A 00:52:42.233 "(0x) C0" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C1
A 00:52:42.233 "(0x) C1" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C2
A 00:52:42.233 "(0x) C2" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C3
A 00:52:42.233 "(0x) C3" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C4
A 00:52:42.233 "(0x) C4" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C5
A 00:52:42.233 "(0x) C5" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C6
A 00:52:42.233 "(0x) C6" received
I 00:52:42.233 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C7
A 00:52:42.233 "(0x) C7" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C8
A 00:52:42.234 "(0x) C8" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) C9
A 00:52:42.234 "(0x) C9" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CA
A 00:52:42.234 "(0x) CA" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CB
A 00:52:42.234 "(0x) CB" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CC
A 00:52:42.234 "(0x) CC" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CD
A 00:52:42.234 "(0x) CD" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CE
A 00:52:42.234 "(0x) CE" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) CF
A 00:52:42.234 "(0x) CF" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D0
A 00:52:42.234 "(0x) D0" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D1
A 00:52:42.234 "(0x) D1" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D2
A 00:52:42.234 "(0x) D2" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D3
A 00:52:42.234 "(0x) D3" received
I 00:52:42.234 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D4
A 00:52:42.234 "(0x) D4" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D5
A 00:52:42.235 "(0x) D5" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D6
A 00:52:42.235 "(0x) D6" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D7
A 00:52:42.235 "(0x) D7" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D8
A 00:52:42.235 "(0x) D8" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) D9
A 00:52:42.235 "(0x) D9" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DA
A 00:52:42.235 "(0x) DA" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DB
A 00:52:42.235 "(0x) DB" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DC
A 00:52:42.235 "(0x) DC" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DD
A 00:52:42.235 "(0x) DD" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DE
A 00:52:42.235 "(0x) DE" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) DF
A 00:52:42.235 "(0x) DF" received
I 00:52:42.235 Notification received from beb5483e-36e1-4688-b7f5-ea07361b26a8, value: (0x) E0
@chegewara Thanks, I will try to root down the problem on my code then. I fear it might be iOS because as I search through similar errors with other boards people sometimes mention that they don't have issues with android. SO I'll try to find an Android phone and see if it works there. Thank you! Your library definitely helped improve the connection and I am sure a lot of other bugs. At the very least I seem to have a stable 4Hz on iOS with your code and I didn't have even 1Hz stability before.
For now I will close, I will try to find and Android.
I performed long run test. After over 6 hours test with delay(3)
I've got not even one packet drop or congest event.
To work with iOS you have 3 new functions.
- setMinInterval (advertising),
- setMaxInterval (advertising),
- updateConnParams (BLEServer->onConnect())
@chegewara I still have not been able to find out why I get random disconnects on my iphone.... I have updated to the new library, and added updateConnParams:
pServer->updateConnParams(param->connect.remote_bda, 0x06, 0x06, 0, 100);
Do you or anyone know of any fixes for this? It looks like you solved it for Android, I will include a log for most current example of disconnect:
I wrote some code to write out the malloc when "disconnect" is called from the callbacks. I am hoping this might help. Any ideas how to try and narrow down the problem would also be great, happy to try things in the .cpp files.
01:17:25.371 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:25.371 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:25.371 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:25.405 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:25.405 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.405 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.405 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:25.405 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.405 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.438 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5b05, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:25.438 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:25.438 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:25.438 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.438 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:25.438 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.505 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:25.505 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:25.505 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 5b 05 [. 01:17:25.505 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:25.505 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:25.505 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:25.539 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:25.539 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.539 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.539 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:25.539 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.539 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.573 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=6005, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:25.573 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:25.573 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:25.573 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.573 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:25.573 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.640 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:25.640 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:25.640 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 60 05 `. 01:17:25.640 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:25.640 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:25.640 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:25.673 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:25.673 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.673 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.673 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:25.673 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.673 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.706 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5c05, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:25.706 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:25.706 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:25.706 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.706 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:25.706 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.773 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:25.773 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:25.773 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 5c 05 . 01:17:25.773 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:25.773 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:25.773 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:25.773 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:25.807 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.807 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.807 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:25.807 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.807 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.841 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5b05, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:25.841 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:25.841 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:25.841 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.841 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:25.841 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.841 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:25.909 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:25.909 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 5b 05 [. 01:17:25.909 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:25.909 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:25.909 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:25.909 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:25.944 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.944 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.944 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:25.944 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.944 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:25.944 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5905, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:25.979 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:25.979 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:25.979 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.979 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:25.979 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:25.979 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:26.013 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:26.013 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 59 05 Y. 01:17:26.013 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:26.013 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:26.013 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:26.013 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:26.082 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.082 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.082 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:26.082 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.082 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.082 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5b05, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:26.116 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:26.116 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:26.116 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.116 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:26.116 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.116 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:26.151 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:26.151 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 5b 05 [. 01:17:26.151 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:26.151 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:26.151 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:26.151 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:26.219 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.219 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.219 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:26.219 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.219 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.219 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5905, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:26.253 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:26.253 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:26.253 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:26.253 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.253 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:26.253 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.286 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:26.286 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 59 05 Y. 01:17:26.286 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:26.286 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:26.286 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:26.286 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:26.353 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.353 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.353 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:26.353 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.353 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.353 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5505, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:26.387 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:26.387 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:26.387 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.387 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:26.387 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.387 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:26.420 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:26.420 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 55 05 U. 01:17:26.420 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:26.420 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:26.420 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:26.420 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:26.488 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.488 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.488 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:26.488 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.488 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.488 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=6205, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:26.523 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:26.523 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:26.523 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.523 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:26.523 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.523 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:26.557 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:26.557 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 62 05 b. 01:17:26.557 -> [D][BLECharacteristic.cpp:533] notify(): << notify 01:17:26.557 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:26.557 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:26.557 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:26.623 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.623 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.623 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:26.623 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.623 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.623 -> [D][BLECharacteristic.cpp:631] setValue(): >> setValue: length=2, data=5e05, characteristic UUID=9f576249-8be9-40b0-b009-c31fb8781207 01:17:26.657 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:26.657 -> [D][BLECharacteristic.cpp:638] setValue(): << setValue 01:17:26.657 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.657 -> [D][BLECharacteristic.cpp:484] notify(): >> notify: length: 2 01:17:26.657 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.657 -> [V][GeneralUtils.cpp:305] hexDump(): 00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f 01:17:26.691 -> [V][GeneralUtils.cpp:306] hexDump(): -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 01:17:26.691 -> [V][GeneralUtils.cpp:332] hexDump(): 0000 5e 05 ^. 01:17:26.691 -> [D][BLEDevice.cpp:108] gattServerEventHandler(): gattServerEventHandler [esp_gatt_if: 4] ... Unknown 01:17:26.691 -> [E][BLECharacteristic.cpp:526] notify(): << esp_ble_gatts_send_ notify: rc=-1 Unknown ESP_ERR error 01:17:26.691 -> [V][BLEUtils.cpp:1531] dumpGattServerEvent(): GATT ServerEvent: Unknown 01:17:26.691 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:26.725 -> [V][BLEUtils.cpp:1721] dumpGattServerEvent(): dumpGattServerEvent: *** NOT CODED *** 01:17:26.725 -> [D][BLEServer.cpp:153] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.725 -> Disconnection Malloc: 01:17:26.725 -> Heap summary for capabilities 0x00000800: 01:17:26.725 -> At 0x3ffaff10 len 240 free 0 allocated 180 min_free 0 01:17:26.725 -> largest_free_block 0 alloc_blocks 1 free_blocks 1 total_blocks 2 01:17:26.725 -> At 0x3ffce388 len 72824 free 0 allocated 70196 min_free 0 01:17:26.725 -> largest_free_block 0 alloc_blocks 161 free_blocks 2 total_blocks 163 01:17:26.793 -> At 0x3ffe0440 len 15296 free 0 allocated 15080 min_free 0 01:17:26.793 -> largest_free_block 0 alloc_blocks 11 free_blocks 1 total_blocks 12 01:17:26.793 -> At 0x3ffe4350 len 113840 free 91124 allocated 20796Di dmi Dni_sfrcoene ne86ct6ion4 0 01:17:26.793 -> 01:17:26.793 -> largest_free_block 86612 alloc_blocks 113 free_blocks 17 total_blocks 130 01:17:26.793 -> At 0x40093b50 len 50352 free 50304 allocated 0 min_free 50304 01:17:26.793 -> largest_free_block 50304 alloc_blocks 0 free_blocks 1 total_blocks 1 01:17:26.793 -> Totals: 01:17:26.793 -> free 141428 allocated 106252 min_free 136944 largest_free_block 86612 01:17:26.826 -> [D][BLEServer.cpp:327] startAdvertising(): >> startAdvertising 01:17:26.826 -> [D][BLEDevice.cpp:568] startAdvertising(): >> startAdvertising 01:17:26.826 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:26.826 -> [D][BLEAdvertising.cpp:186] start(): >> start: customAdvData: 0, customScanResponseData: 0 01:17:26.826 -> [D][BLEAdvertising.cpp:198] start(): - advertising service: f8d61858-dd19-4ced-b921-6e6cce526d48 01:17:26.826 -> [D][BLEAdvertising.cpp:246] start(): << start 01:17:26.826 -> [D][BLEDevice.cpp:570] startAdvertising(): << startAdvertising 01:17:26.860 -> [D][BLEServer.cpp:329] startAdvertising(): << startAdvertising 01:17:26.860 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.860 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe881c), owner: <N/A> 01:17:26.860 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.860 -> [D][BLECharacteristic.cpp:203] handleGATTServerEvent(): >> handleGATTServerEvent: Unknown 01:17:26.860 -> [V][FreeRTOS.cpp:120] give(): Semaphore giving: name: ConfEvt (0x3ffe90b4), owner: <N/A> 01:17:26.928 -> [D][BLECharacteristic.cpp:459] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.928 -> [D][BLEServer.cpp:280] handleGATTServerEvent(): << handleGATTServerEvent 01:17:26.928 -> [V][BLEUtils.cpp:1818] gapEventToString(): gapEventToString: Unknown event type 0 0x00 01:17:26.928 -> [V][BLEUtils.cpp:1050] dumpGapEvent(): Received a GAP event: Unknown event type 01:17:26.928 -> [V][BLEUtils.cpp:1265] dumpGapEvent(): *** dumpGapEvent: Logger not coded *** 01:17:26.928 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:26.928 -> [D][BLEAdvertising.cpp:479] handleGAPEvent(): handleGAPEvent [event no: 0] 01:17:26.962 -> [V][BLEUtils.cpp:1818] gapEventToString(): gapEventToString: Unknown event type 1 0x01 01:17:26.962 -> [V][BLEUtils.cpp:1050] dumpGapEvent(): Received a GAP event: Unknown event type 01:17:26.962 -> [V][BLEUtils.cpp:1265] dumpGapEvent(): *** dumpGapEvent: Logger not coded *** 01:17:26.962 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:26.962 -> [D][BLEAdvertising.cpp:479] handleGAPEvent(): handleGAPEvent [event no: 1] 01:17:26.962 -> [V][BLEUtils.cpp:1818] gapEventToString(): gapEventToString: Unknown event type 6 0x06 01:17:26.996 -> [V][BLEUtils.cpp:1050] dumpGapEvent(): Received a GAP event: Unknown event type 01:17:26.996 -> [V][BLEUtils.cpp:1265] dumpGapEvent(): *** dumpGapEvent: Logger not coded *** 01:17:26.996 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:26.996 -> [D][BLEAdvertising.cpp:479] handleGAPEvent(): handleGAPEvent [event no: 6] [D][BLEServer.cpp:327] startAdvertising(): >> startAdvertising 01:17:27.302 -> [D][BLEDevice.cpp:568] startAdvertising(): >> startAdvertising 01:17:27.302 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:27.302 -> [D][BLEAdvertising.cpp:186] start(): >> start: customAdvData: 0, customScanResponseData: 0 01:17:27.302 -> [D][BLEAdvertising.cpp:198] start(): - advertising service: f8d61858-dd19-4ced-b921-6e6cce526d48 01:17:27.302 -> [D][BLEAdvertising.cpp:246] start(): << start 01:17:27.302 -> [D][BLEDevice.cpp:570] startAdvertising(): << startAdvertising 01:17:27.302 -> [V][BLEUtils.cpp:1818] gapEventToString(): gapEventToString: Unknown event type 0 0x00 01:17:27.336 -> [D][BLEServer.cpp:329] startAdvertising(): << startAdvertising 01:17:27.336 -> [V][BLEUtils.cpp:1050] dumpGapEvent(): Received a GAP event: Unknown event type 01:17:27.336 -> [V][BLEUtils.cpp:1265] dumpGapEvent(): *** dumpGapEvent: Logger not coded *** 01:17:27.336 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:27.336 -> [D][BLEAdvertising.cpp:479] handleGAPEvent(): handleGAPEvent [event no: 0] 01:17:27.336 -> [V][BLEUtils.cpp:1818] gapEventToString(): gapEventToString: Unknown event type 1 0x01 01:17:27.336 -> [V][BLEUtils.cpp:1050] dumpGapEvent(): Received a GAP event: Unknown event type 01:17:27.404 -> [V][BLEUtils.cpp:1265] dumpGapEvent(): *** dumpGapEvent: Logger not coded *** 01:17:27.404 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:27.404 -> [D][BLEAdvertising.cpp:479] handleGAPEvent(): handleGAPEvent [event no: 1] 01:17:27.404 -> [V][BLEUtils.cpp:1818] gapEventToString(): gapEventToString: Unknown event type 6 0x06 01:17:27.404 -> [V][BLEUtils.cpp:1050] dumpGapEvent(): Received a GAP event: Unknown event type 01:17:27.404 -> [V][BLEUtils.cpp:1265] dumpGapEvent(): *** dumpGapEvent: Logger not coded *** 01:17:27.404 -> [D][BLEDevice.cpp:563] getAdvertising(): get advertising 01:17:27.404 -> [D][BLEAdvertising.cpp:479] handleGAPEvent(): handleGAPEvent [event no: 6]
Hi,
for sure there is no issue with heap. You have plenty of it free:
free 141428 allocated 106252 min_free 136944 largest_free_block 86612
Problem with iPhone connection is that i dont know and understand some very specific and restrictive connection requirements. Because of that some library functions can cause issues. From time to time when such issues are reported and i find time i am trying to read apple specs again and again.
I will try to run some tests with iPhone when i have time.
@chegewara Thanks for all the help! Really appreciate it. From my end, what I see everytime before disconnection event is that it looks like there is some sort of stuttering in the bluetooth data. So that it will delay like 200ms a few times and clump data together.
Then will disconnect with an error peripheral disconnected from the apple side. I have tried writing my own apple software in SWIFT thinking that it might be an apple issue and the cordova library, but bug persisted.
I did expand looking at other ble modules to see if they have the same problem and some do have public issues, but someone posted a solution for an NRF module I'd like to try.
https://devzone.nordicsemi.com/f/nordic-q-a/11837/automatically-disconnection-ios
@chegewara Do you know where these values can be set in esp32 arduino? I have gone through the current arduino code and have had trouble finding this in bleserver or other files I have been perusing.
Solution from this link are those 2 functions:
setMinInterval (advertising),
setMaxInterval (advertising),
https://github.com/nkolban/ESP32_BLE_Arduino/blob/master/examples/BLE_server/BLE_server.ino#L36-L37
also try to set timeout in this function for few seconds 6-10s, or even more:
updateConnParams()
https://github.com/nkolban/ESP32_BLE_Arduino/blob/934702b6169b92c71cbc850876fd17fb9ee3236d/src/BLEServer.cpp#L415
btw i should fix that timeout probably
I have tried all three options:
void onConnect(BLEServer* pServer, esp_ble_gatts_cb_param_t *param) {
pServer->updateConnParams(param->connect.remote_bda, 0x01, 0x90, 0, 800);
deviceConnected = true;
};
I also put the following at the end of the setup and got rid of pServer->getAdvertising() code:
// Start the service
pService->start();
BLEAdvertising *pAdvertising = BLEDevice::getAdvertising();
pAdvertising->addServiceUUID(pService->getUUID());
pAdvertising->setScanResponse(true);
pAdvertising->setMinPreferred(0x12);
pAdvertising->setMaxPreferred(0x16);
BLEDevice::startAdvertising();
@chegewara Still same issues, but takes longer to connect, which makes sense. Did I use large enough values? Thanks for all the help, let me know if you have any other ideas to try.
Really appreciate all the help.
You should read this, especially 11.6: https://developer.apple.com/accessories/Accessory-Design-Guidelines.pdf
@chegewara Changed the settings to match as far as I can tell with no more success. I did notice that everytime I use the "reset" button or software "reset", the next connection tends to last longer like 5 minutes without interruption.
But once there is an interruption it doesn't tend to last more than a minute, sometimes only 10 seconds. So I reset each time right now on disconnection no matter what the reason for disconnect.
This is a "bad" workaround, but it might be useful to know that something in the code on the esp32 is fixed somewhat on reset. Not sure what changes though. Let me know if I can be of any help tracking this down.
@msj121 I have the same problem trying to upload the firmware using ios, Did when i send the first package the cellphone and esp32 disconnects, could you find a solution?
Similar issues here, almost giving up on esp32. Connects on android but disconnect without any reason or message (even verbose activated). Its quite sad that BLE has so little support and people sharing its code.