- Run MATLAB as an Administrator. Right-click on the MATLAB shortcut or executable and select "Run as administrator."
- Ensure that the file or folder you are trying to access or modify has the appropriate permissions for your user account. Check the permissions of the program files corresponding to arduino.You may need to adjust the permissions to allow MATLAB to perform the operation.
- Temporarily disable any antivirus or security software that might be blocking MATLAB from performing the operation.
Unable to write to BLE characteristic that has write permission
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have an arduino hosting a Bluetooth Low Energy service, and while I can consistently connect and read from its characteristics using Matlab, writing to a characteristic fails with the message (Operation failed because access was denied).
I've printed out the characteristic's properties and can verify that it has the Write and WriteWithoutResponse attributes, so the connection should have write permission for the characteristic, but it still does not work.
I am using Windows 11 and the latest version of Matlab (R2023b). Any thoughts for how to resolve this issue?
0 comentarios
Respuestas (1)
sai charan sampara
el 26 de Feb. de 2024
Hello Erik,
I understand that you are trying to write to a characteristic using MATLAB. Writing to a characteristic is possible when the "Attributes" property of the input characteristic object has "Write" and/or "WriteWithoutResponse". In your case since both are present, using “write(characteristic, data)” to write to it should not give an error. Despite this getting the error “Operation failed because access was denied” indicates that the issue is not with MATLAB but rather might be with the system permissions. This error can occur when MATLAB does not have required permissions to perform the read/write.
The following actions could potentially resolve the error:
You can refer to the following links for more information:
Ver también
Categorías
Más información sobre MATLAB Support Package for Arduino Hardware en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!