Ein paar Notizen zum Setup des ESP32 mit der Arduino IDE
- Ich hatte erfolg mit Dieser Anleitung insebsondere
<code>
mkdir -p ~/Documents/Arduino/hardware/espressif && \
cd ~/Documents/Arduino/hardware/espressif && \
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
cd esp32/tools/ && \
python get.py
</code>
*Noch besser sind die Instruction [[https://github.com/espressif/arduino-esp32#installation-instructions|auf der Seite]] (zumindest wenn man den Node-MCU 32S hat)
* Danach konnte man das mit [[https://forum.arduino.cc/index.php?topic=473215.0|diesem Beispiel]] ok testen.
<code>
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Serial Test"):
delay(500);
}
</code>