SosaL08

Results 2 comments of SosaL08

``` NimBLECharacteristic *pReadCharacteristic; pReadCharacteristic = pBleService->createCharacteristic("A002", NIMBLE_PROPERTY::READ | NIMBLE_PROPERTY::NOTIFY); pReadCharacteristic->setCallbacks(&chrCallbacks); ``` ``` char buffer_response[jsonWiFi.length() + 1]; jsonWiFi.toCharArray(buffer_response, jsonWiFi.length() + 1); pReadCharacteristic->setValue(buffer_response); pReadCharacteristic->notify(); ``` I can't share the entire code but...

Thanks! I'll try that out to see if it works correctly with my code