Skip to content

Commit

Permalink
Merge pull request #113 from Mr-Comand/main
Browse files Browse the repository at this point in the history
  • Loading branch information
hideakitai authored Jun 30, 2024
2 parents 67ccf7e + 7cbb3b0 commit 5d7320b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Artnet/ArtPollReply.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ inline Packet generatePacketFrom(const IPAddress &my_ip, const uint8_t my_mac[6]
r.ver_h = (PROTOCOL_VER >> 8) & 0x00FF;
r.ver_l = (PROTOCOL_VER >> 0) & 0x00FF;
r.oem_h = (metadata.oem >> 8) & 0xFF; //
r.oem_l = (metadata.oem >> 8) & 0xFF;
r.oem_l = (metadata.oem >> 0) & 0xFF;
r.ubea_ver = 0; // UBEA not programmed
r.status_1 = metadata.status1;
r.esta_man_l = (metadata.esta_man >> 8) & 0xFF;
Expand Down

0 comments on commit 5d7320b

Please sign in to comment.