17 lines
188 B
C++
17 lines
188 B
C++
#include <WiFi.h>
|
|
#include <WiFiClient.h>
|
|
#include <WiFiAP.h>
|
|
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
Serial.print("mac adress:");
|
|
Serial.println(WiFi.macAddress());
|
|
|
|
}
|
|
|
|
void loop() {
|
|
|
|
|
|
|
|
} |