All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.simulation.events.ServoPortStatusEvent Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy