Is your feature request related to a problem? Please describe.
At present, to use MQTT communication, you have to have correctly set the "topics" and the "Device under test" serial number in the code. This is error prone because after any commit made by another person, you have to carefully change these values.
Describe the solution you'd like
I want the Serial number (and MQTT topics) of the device to be automatically set with no error-prone human intervention.
Describe alternatives you've considered
We recommend using the MAC address built into each ESP32.
Additional context
The MAC address is a 6 hexadecimal 2-digit numbers, representable by a 12-character string. It is easily obtainable in the code by using WiFi.macAddress().
Is your feature request related to a problem? Please describe. At present, to use MQTT communication, you have to have correctly set the "topics" and the "Device under test" serial number in the code. This is error prone because after any commit made by another person, you have to carefully change these values.
Describe the solution you'd like I want the Serial number (and MQTT topics) of the device to be automatically set with no error-prone human intervention.
Describe alternatives you've considered We recommend using the MAC address built into each ESP32.
Additional context The MAC address is a 6 hexadecimal 2-digit numbers, representable by a 12-character string. It is easily obtainable in the code by using WiFi.macAddress().