Skip to content

Error compiling for board NodeMCU 0.9 (ESP-12 Module. Being used by another process #4279

@TeckPete

Description

@TeckPete

Error compiling for board NodeMCU 0.9 (ESP-12 Module
open sketch\Blink.ino.cpp: The process cannot access the file because it is being used by another process.

Basic Infos

Hardware

Hardware: Any ESP Board. ESP-01, NodeMCU 0.9 (ESP-12 module)

Description

Every time I try to verify or upload a sketch I get this error it does matter the sketch I use even a simple one. I have tried to just verify a sketch without the board plugged in and same thing. I have tried uninstalling Arduino removed the esp8266 from the board manager tried a different url link for the boards manager. I can get to work on other computers

THIS IS THE ERROR ON THE BOTTOM OF THE SCREEN.
open sketch\Blink.ino.cpp: The process cannot access the file because it is being used by another process.
Error compiling for board NodeMCU 0.9 (ESP-12 Module).

Settings in IDE

Module: Generic ESP8266 Module
Flash Size: ?4MB/1MB?
CPU Frequency: ?80Mhz?
Flash Mode: ?qio?
Flash Frequency: ?40Mhz?
Upload Using: ?OTA / SERIAL?
Reset Method: ?ck / nodemcu?
capture

Sketch

/*
ESP8266 Blink by Simon Peter
Blink the blue LED on the ESP-01 module
This example code is in the public domain

The blue LED on the ESP-01 module is connected to GPIO1
(which is also the TXD pin; so we cannot use Serial.print() at the same time)

Note that this sketch uses LED_BUILTIN to find the pin with the internal LED
*/

void setup() {
pinMode(LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output
}

// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is active low on the ESP-01)
delay(1000); // Wait for a second
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
delay(2000); // Wait for two seconds (to demonstrate the active low LED)

#include <Arduino.h>

void setup() {

}

void loop() {

}


### Debug Messages

Looking for library 'user32'
Adding paths from jna.library.path: null
Trying user32.dll
Found library 'user32' at user32.dll
Looking for library 'shell32'
Adding paths from jna.library.path: null
Trying shell32.dll
Found library 'shell32' at shell32.dll
Looking for library 'Ole32'
Adding paths from jna.library.path: null
Trying Ole32.dll
Found library 'Ole32' at Ole32.dll
Loading configuration...
Initializing packages...
Preparing boards...
Starting...
open sketch\Blink.ino.cpp: The process cannot access the file because it is being used by another process.
Error compiling for board NodeMCU 0.9 (ESP-12 Module).


***THIS IS THE ERROR THAT I'M GETTING ON THE BOTTOM OF THE SCREEN***

open sketch\Blink.ino.cpp: The process cannot access the file because it is being used by another process.
Error compiling for board NodeMCU 0.9 (ESP-12 Module)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions