/*
Blink
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
The error message I am getting is as follows:
Arduino: 1.8.5 (Windows 10), Board: "Arduino/Genuino Uno"
Assembler messages:
Fatal error: can't create core\wiring_shift.c.o: Permission denied
exit status 1
Error compiling for board Arduino/Genuino Uno.
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences."
Please help me.
Sudhish