change from ESP8266 to ESP32

This commit is contained in:
André Fiedler 2025-02-12 09:48:30 +01:00
parent 7006b39724
commit 424e69ba07
2 changed files with 5 additions and 5 deletions

View File

@ -8,9 +8,9 @@
; Please visit documentation for the other options and examples ; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html ; https://docs.platformio.org/page/projectconf.html
[env:esp12e] [env:fabreader3]
platform = espressif8266 platform = platformio/espressif32
board = esp12e board = esp32dev
framework = arduino framework = arduino
monitor_speed = 115200 monitor_speed = 115200
lib_deps = lib_deps =

View File

@ -9,8 +9,8 @@
#include <Desfire.h> #include <Desfire.h>
#include <Display.h> #include <Display.h>
#include <ESP8266WiFi.h> #include <WiFi.h>
#include <ESP8266WebServer.h> #include <WebServer.h>
#include <WiFiClient.h> #include <WiFiClient.h>
#include <PubSubClient.h> #include <PubSubClient.h>