This commit is contained in:
George Ruinelli
2022-10-25 13:49:44 +02:00
parent 4a0f5eadc2
commit ec4ce66bcc

View File

@@ -725,8 +725,8 @@ string RundeOutput(double _in, int _anzNachkomma)
string getMac(void) {
uint8_t *macInt;
char macFormated[6*2 + 5 + 1];
uint8_t macInt[6];
char macFormated[6*2 + 5 + 1]; // AA:BB:CC:DD:EE:FF
esp_read_mac(macInt, ESP_MAC_WIFI_STA);
sprintf(macFormated, "%02X:%02X:%02X:%02X:%02X:%02X", macInt[0], macInt[1], macInt[2], macInt[3], macInt[4], macInt[5]);