Added more bluetooth mac addresses

My printer bought in australia did not work. After some investigating turns out it is a new mac address
This commit is contained in:
Mihit Mittal 2025-04-17 02:46:37 +10:00 committed by Yusuf Cihan
parent ae5349aaba
commit c6bef4e3d6

View File

@ -49,7 +49,8 @@ def is_espressif(input_mac : str):
mac_blocks = [
"58:CF:79",
# Confirmed in pull request #2
"DC:54:75"
"DC:54:75",
"34:85:18"
]
check_mac = int(input_mac.replace(":", ""), base = 16)
for mac in mac_blocks: