bestand gemaakt + mac adress aflezen toevegoegd

This commit is contained in:
sam
2023-09-19 14:43:25 +02:00
parent 85b3114697
commit 8819b43dc2

View File

@@ -0,0 +1,17 @@
#include <WiFi.h>
#include <WiFiClient.h>
#include <WiFiAP.h>
void setup() {
Serial.begin(9600);
Serial.print("mac adress:");
Serial.println(WiFi.macAddress());
}
void loop() {
}