informatica:arduino:esp32
This is an old revision of the document!
ESP32
https://randomnerdtutorials.com/install-esp32-filesystem-uploader-arduino-ide/
/usr/share/arduino/tools
wget https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/download/1.0/ESP32FS-1.0.zip
Abrimos arduino IDE y ya nos aparece tools > ESP32 sketch data upload
#include "WiFi.h"
const char* ssid = "yourNetworkName";
const char* password = "yourNetworkPass";
void setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.println("Connecting to WiFi..");
}
Serial.println("Connected to the WiFi network");
}
void loop() {}
informatica/arduino/esp32.1612718892.txt.gz · Last modified: by jose

