Skip to content

Commit

Permalink
Add manufacturer code to fingerprint command (#1447)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Jackson <[email protected]>
  • Loading branch information
cdjackson authored Nov 19, 2024
1 parent e6bc2ea commit 22af9f8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStr
writer.println("| |> Buffer Size " + nodeDescriptor.getBufferSize());
writer.println("| |> Incoming Transfer Size " + nodeDescriptor.getIncomingTransferSize());
writer.println("| |> Outgoing Transfer Size " + nodeDescriptor.getOutGoingTransferSize());
writer.println(
"| |> Manufacturer Code " + String.format("0x%04X", nodeDescriptor.getManufacturerCode()));
}

writer.println("|");
Expand Down

0 comments on commit 22af9f8

Please sign in to comment.