You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we use the last 3 bytes of the MAC address as identifier (e.g. 01:de:81). This part of the address should be unique for a certain OUI (Organizationally Unique Identifier). However, according to the official OUI list, Silicon Laboratories reserved at least 12 OUIs. This means we have to use another identifier to uniquely identify a certain sensory tool holder (STH) or sensory holder assembly (SHA). Since we can only use 8 characters for the name, we decided to store the 6 bytes of the MAC address in Base64 format. The code below shows an example, on how to do that.
This code converts the MAC address 08:6b:d7:01:de:81 into the name CGvXAd6B. We can always convert this name, back into a more readable MAC address, using the code below.
Currently we use the last 3 bytes of the MAC address as identifier (e.g.
01:de:81
). This part of the address should be unique for a certain OUI (Organizationally Unique Identifier). However, according to the official OUI list, Silicon Laboratories reserved at least 12 OUIs. This means we have to use another identifier to uniquely identify a certain sensory tool holder (STH) or sensory holder assembly (SHA). Since we can only use 8 characters for the name, we decided to store the 6 bytes of the MAC address in Base64 format. The code below shows an example, on how to do that.This code converts the MAC address
08:6b:d7:01:de:81
into the nameCGvXAd6B
. We can always convert this name, back into a more readable MAC address, using the code below.The text was updated successfully, but these errors were encountered: