You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
301 B
17 lines
301 B
#include <Arduino.h> |
|
|
|
#include <WiFi.h> |
|
#include <ESPAsyncWebServer.h> |
|
|
|
void setup() |
|
{ |
|
Serial.begin(115200); |
|
} |
|
|
|
void loop() |
|
{ |
|
Serial.printf("ESP32 Chip model = %s Rev %d\n", ESP.getChipModel(), ESP.getChipRevision()); |
|
Serial.printf("This chip has %d cores\n", ESP.getChipCores()); |
|
|
|
delay(3000); |
|
}
|
|
|