From 8819b43dc21fc0332ec15b37fc1caec6380dbf81 Mon Sep 17 00:00:00 2001 From: sam Date: Tue, 19 Sep 2023 14:43:25 +0200 Subject: [PATCH] bestand gemaakt + mac adress aflezen toevegoegd --- arduino/waaifaai/waaifaai.ino | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 arduino/waaifaai/waaifaai.ino diff --git a/arduino/waaifaai/waaifaai.ino b/arduino/waaifaai/waaifaai.ino new file mode 100644 index 0000000..9973a96 --- /dev/null +++ b/arduino/waaifaai/waaifaai.ino @@ -0,0 +1,17 @@ +#include +#include +#include + + +void setup() { + Serial.begin(9600); + Serial.print("mac adress:"); + Serial.println(WiFi.macAddress()); + +} + +void loop() { + + + +} \ No newline at end of file