use of com.neuronrobotics.sdk.commands.neuronrobotics.bootloader.BootloaderIDCommand in project java-bowler by NeuronRobotics.
the class NRBootLoader method getBootloaderID.
public String getBootloaderID() {
BowlerDatagram back = send(new BootloaderIDCommand());
if (back == null)
return null;
String s = new String();
for (Byte b : back.getData()) {
s += (char) b.byteValue();
}
return s;
}
Aggregations