What's new

PHC-Hy4kki1m4ru

Honorary Poster
Joined
Jul 12, 2023
Posts
161
Solutions
4
Reaction
1,043
Points
203
Need help po I get this error

'Compilation error: ESP8266WiFi.h: No such file or directory ' even na install ko na yung library nya
-Arduino UNO
-ESP-01 or ESP8266 Wifi Module
-AS608 Fingerprint Sensor
 
The error you are encountering, "'Compilation error: ESP8266WiFi.h: No such file or directory," indicates that the ESP8266WiFi library is not properly installed or included in your Arduino project. Here are a few steps you can take to resolve this issue:

1. Ensure that the library is installed correctly:
- Open the Arduino IDE.
- Go to "Sketch" -> "Include Library" -> "Manage Libraries."
- In the Library Manager, search for "ESP8266WiFi."
- If the library appears, click on it, and then click the "Install" button.
- Wait for the library to finish installing.

2. Make sure you're using the correct board and port settings:
- Go to "Tools" -> "Board" and select "Arduino Uno."
- Go to "Tools" -> "Port" and select the appropriate port for your Arduino Uno.

3. Confirm that the library is added to your sketch:
- Go to "Sketch" -> "Include Library."
- Scroll down and look for "ESP8266WiFi." If it appears, click on it to add the library to your sketch.

4. Check for any typos or incorrect references in your code:
- Make sure you have correctly spelled "ESP8266WiFi.h" in your code.
- Check that you have included the library at the beginning of your sketch with the line #include <ESP8266WiFi.h>.

If you have followed these steps and are still encountering the error, please provide your code so that I can assist you further.
 

Similar threads

Back
Top