Converts a BLE MAC address to WiFi MAC address. The WiFi MAC is the BLE MAC minus 2 in hexadecimal.
BLE MAC address (with or without colons/dashes)
WiFi MAC address in lowercase without separators
bleToWifiMac("A8:03:2A:FE:D5:0A") // returns "a8032afed508"bleToWifiMac("a8032afed50a") // returns "a8032afed508" Copy
bleToWifiMac("A8:03:2A:FE:D5:0A") // returns "a8032afed508"bleToWifiMac("a8032afed50a") // returns "a8032afed508"
Converts a BLE MAC address to WiFi MAC address. The WiFi MAC is the BLE MAC minus 2 in hexadecimal.