gpt4 book ai didi

raspberry-pi - RPI 唯一标识符上的 Windows IoT

转载 作者:行者123 更新时间:2023-12-04 19:50:00 24 4
gpt4 key购买 nike

我目前正在寻找一种解决方案,以通过 Windows IoT 在 RPI 上获取 2 个唯一字符串。重启后字符串不应更改。它应该类似于识别设备的硬件 ID。

最佳答案

您可以获得网卡的 MAC 地址,它应该每次都唯一标识它。

var macAddr = 
(
from nic in NetworkInterface.GetAllNetworkInterfaces()
where nic.OperationalStatus == OperationalStatus.Up
select nic.GetPhysicalAddress().ToString()
).FirstOrDefault();

关于raspberry-pi - RPI 唯一标识符上的 Windows IoT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37155622/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com