Arduino - ESP UUID
Name |
Ort |
MAC |
UUID |
Type |
Bathroom_upstairs/Shower_button | Bathroom_upstairs Shower_button |
08:F9:E0:71:B5:4F | 7451983 | ESP8266 |
a
HpY��ld�D:�U�|x`� �KG���d
Chip ID: 1093151
MAC-Adresse: C8:C9:A3:10:AE:1F
Offline
Ln 17, Col 2
Generic ESP8266 Module
on /dev/ttyUSB1
3
#include <ESP8266WiFi.h>
#include <Wire.h>
void setup() {
Serial.begin(9600);
delay(600);
Serial.println();
Serial.print("Chip ID: ");
Serial.println(ESP.getChipId());
Serial.print("MAC-Adresse: ");
Serial.println(WiFi.macAddress());
}
void loop() {
// ...
}