How do you send an array of unsigned char values via BLE. As per this thread, the examples in the ArduinoBLE documentation converts the array to a char. The question is, will I have to do the same with an unsigned char array?
If not, what out of the available BLECharacteristic types do I use for transferring the array, as BLEUnsignedCharCharacteristic seems to accept just one value.
BLEBoolCharacteristic
BLEBooleanCharacteristic
BLECharCharacteristic
BLEUnsignedCharCharacteristic
BLEByteCharacteristic
BLEShortCharacteristic
BLEUnsignedShortCharacteristic
BLEWordCharacteristic
BLEIntCharacteristic
BLEUnsignedIntCharacteristic
BLELongCharacteristic
BLEUnsignedLongCharacteristic
BLEFloatCharacteristic
BLEDoubleCharacteristic
Thank you in advance