使用webduino
库,该Web_HelloWorld
示例具有以下内容:
// CHANGE THIS TO YOUR OWN UNIQUE VALUE
static uint8_t mac[6] = { 0x02, 0xAA, 0xBB, 0xCC, 0x00, 0x22 };
0x02
等等是怎么回事?如果我的mac地址是90-A2-DA...
,我只需将代码行更改为...
static uint8_t mac[6] = { 90, A2, DA, ... };
? 还是我需要保持x
's 的格式?谢谢!