org.bidib.wizard.simulation.events.ServoPortStatusEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-simulation Show documentation
Show all versions of bidibwizard-simulation Show documentation
jBiDiB BiDiB Wizard Simulation POM
The newest version!
package org.bidib.wizard.simulation.events;
public class ServoPortStatusEvent {
private final String nodeAddr;
private final int portId;
private final int value;
public ServoPortStatusEvent(String nodeAddr, int portId, int value) {
this.nodeAddr = nodeAddr;
this.portId = portId;
this.value = value;
}
public String getNodeAddr() {
return nodeAddr;
}
public int getPortNumber() {
return portId;
}
public int getValue() {
return value;
}
}