Art-Net гейт на базе Arduino

Не выводятся данные.

Пришлось поменять  MAC, с адресом по умолчанию устройство не видно в сети 

Spoiler

uint8_t factory_mac          [6] = {   0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; // the mac address of node //uint8_t factory_mac          [6] = {   1,   2,   3,   0,   0,  10}; // the mac

 

Настраивал сеть под 192.168.100.1

Spoiler

uint8_t factory_mac          [6] = {   0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; // the mac address of node uint8_t factory_localIp      [4] = {   192,   168,   100,  10};           // the IP address of node uint8_t factory_broadcastIp  [4] = {   192, 168, 100, 255};           // broadcast IP address uint8_t factory_gateway      [4] = {   192,   168,   100,   1};           // gateway IP address (use ip address of controller) uint8_t factory_subnetMask   [4] = { 255,   255,   255,   0};           // network mask (art-net use ‘A’ network type)

 

Результат

Clip.thumb.jpg.2f2aa88761a298a6c7ec5399b55c8bce.jpg

Подскажите как настроить или куда копать дальше?