Having this error- Arduino: 1.8.8 Hourly Build 2018年11月30日 12:33 (Windows 10), Board: "Arduino/Genuino Uno"
open sketch\LCD.ino.cpp: Access is denied. Error compiling for board Arduino/Genuino Uno.
This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences.
asked Jan 1, 2019 at 13:55
1 Answer 1
High likely one of the intermediate/binary files is in use. For example:
- When you have it already opened in a debug session
- Having it opened in multiple instances of your IDE
- Having it opened in another application
- Having closed an application that locked the intermediate/binary file(s).
What you can do:
- Close the debug session
- Close all applications related to the project
- Restart your computer
answered Jan 1, 2019 at 14:07
lang-cpp