fatal error: LittleFS.h: No such file or directory #308
-
Hello, I am facing this error: fatal error: LittleFS.h: No such file or directory. I am sharing the code with you #define TINY_GSM_MODEM_SIM7600 // SIM7600 AT instruction is compatible with A7670 // See all AT commands, if wanted TinyGPSPlus gps; static const uint32_t GPSBaud = 9600; #define GSM_PIN "" // set GSM PIN, if any const char apn[] = ""; // Your GPRS credentials, if any #define uS_TO_S_FACTOR 1000000ULL // Conversion factor for micro seconds to seconds #define UART_BAUD 115200 #define PIN_TX 26 float MQ3; #define API_KEY "AIzaSyBQY2przPW3vPHsmn7oDU3VAdACp13CP9o" FirebaseData fbdo; unsigned long sendDataPrevMillis = 0; void setup() { SerialAT.begin(UART_BAUD, SERIAL_8N1, PIN_RX, PIN_TX); Serial.println("In setup stage 1"); delay(3000); DBG("Initializing modem..."); modem.setNetworkMode(38); String modemInfo = modem.getModemInfo(); Serial.println("In setup stage 2"); Serial_Printf("Firebase Client v%s\n\n", FIREBASE_CLIENT_VERSION); config.api_key = API_KEY; Serial.println("In setup stage 4"); Firebase.reconnectNetwork(true); if (!gyro.init()) { void loop() { while (Serial2.available() > 0)
if (millis() > 5000 && gps.charsProcessed() < 10) { if (Firebase.ready() && (millis() - sendDataPrevMillis > 15000 || sendDataPrevMillis == 0)) {
} else { display(); void display() { MQ3 = analogRead(sensor); gyro.read(); void gps_data() { Serial.print(F("Location: ")); if (gps.location.isValid()) {
} else { And I am facing this error exit status 1 Compilation error: exit status 1 Could you please let me know the reason behind this error? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You post in the wrong repo. Your ESP32 Arduino Core is outdated and should update. |
Beta Was this translation helpful? Give feedback.
You post in the wrong repo.
Your ESP32 Arduino Core is outdated and should update.