/*
Pinbelegung ESP32-DevKitC Pin Layout auf Seite 6 von:
https://asset.conrad.com/media10/add/160267/c1/-/gl/002490159DS00/adatlap-2490159-espressif-fejlesztoi-panel-esp32-devkitc-vie.pdf
Dieses Programm ist zum testen der Grundlagen und darf von jeden für seine Zwecke verwendet werden.
Google translation:
Pin assignment ESP32-DevKitC Pin Layout on page 6 of:
https://asset.conrad.com/media10/add/160267/c1/-/gl/002490159DS00/adatlap-2490159-espressif-fejlesztoi-panel-esp32-devkitc-vie.pdf
This program is for testing the basics and can be used by anyone for their own purposes.
*/
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}