[X] I checked the documentation and FAQ without finding a solution
[X] I checked to make sure that this issue has not already been filed
[X] I'm sure that question is related to the library itself and not Bluetooth Low Energy or Classic in general. If that so, please post your question on StackOverflow.
[X] I'm running the latest version
Question
I have a Moko M1 based on nRF52810 which I am trying to write to.
I can write to it successfully via the "nRF Connect" app.
I know that the error 401 means "Couldn't write to specified characteristic", however isWritableWithResponse: true.
I don't know what the error attErrorCode: 128 indicates?
In both nRF Connect and via console.log I only see one service and one characteristic.
I have the content stored as a string for now, from this:
const fileContent = readFileSync('/Users/jacob/Downloads/EA140CF93E0D.zip', { encoding: 'base64' });
Prerequisites
Question
I have a Moko M1 based on nRF52810 which I am trying to write to. I can write to it successfully via the "nRF Connect" app.
I know that the error 401 means "Couldn't write to specified characteristic", however
isWritableWithResponse: true
. I don't know what the errorattErrorCode: 128
indicates?In both nRF Connect and via
console.log
I only see one service and one characteristic.I have the content stored as a string for now, from this:
const fileContent = readFileSync('/Users/jacob/Downloads/EA140CF93E0D.zip', { encoding: 'base64' });
What might I be doing wrong?