Upgraded to latest Beta build system

This one is using esp32-arduino 2.0.3
This commit is contained in:
Thomas Basler
2022-04-18 03:38:07 +02:00
parent c4d0bb3d3e
commit 5653d0f835
6 changed files with 14 additions and 17 deletions

View File

@@ -4,7 +4,7 @@
#include "WiFiSettings.h"
#include "defaults.h"
#include <Arduino.h>
#include <LITTLEFS.h>
#include <LittleFS.h>
void setup()
{
@@ -17,7 +17,7 @@ void setup()
// Initialize file system
Serial.print(F("Initialize FS... "));
if (!LITTLEFS.begin()) {
if (!LittleFS.begin()) {
Serial.println(F("failed"));
} else {
Serial.println(F("done"));