Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fatal error: SoftwareSerial.h: No such file or directory #33

Open
akama-aka opened this issue Jan 10, 2024 · 0 comments
Open

fatal error: SoftwareSerial.h: No such file or directory #33

akama-aka opened this issue Jan 10, 2024 · 0 comments

Comments

@akama-aka
Copy link

Hello I've the following Code:

#include <SoftwareSerial.hpp>
#include <Sim800L.h>
#define RX 15
#define TX 14
Sim800L GSM(RX, TX);

void setup(){
Serial.begin(9600);
GSM.begin(9600);
Serial.println("GET PRODUCT INFO: ");
Serial.println(GSM.getProductInfo());
}
void loop(){
}

but I get everytime this error:

In file included from /tmp/sketch_jan10a/sketch_jan10a.ino:1:0:
/home/slush/Arduino/libraries/Sim800L_Library_Revised/Sim800L.h:62:10: fatal error: SoftwareSerial.h: No such file or directory
 #include <SoftwareSerial.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
Multiple libraries were found for "Sim800L.h"
 Used: /home/slush/Arduino/libraries/Sim800L_Library_Revised
 Not used: /home/slush/Arduino/libraries/Sim800L-Arduino-Library-revised-1.1.9
exit status 1
Error compiling for board Raspberry Pi Pico.

Someone know how I can fix that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant