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

org.yamcs.simulator.EpsLvpduData Maven / Gradle / Ivy

There is a newer version: 5.10.8
Show newest version
package org.yamcs.simulator;

import java.nio.ByteBuffer;

public class EpsLvpduData {

    float timestamp;
    public float LVPDUStatus;
    public float LVPDUVoltage;

    public static int size() {
        return 2;
    }

    public void fillPacket(ByteBuffer buffer) {
        buffer.put((byte) LVPDUStatus);
        buffer.put((byte) LVPDUVoltage);
    }

    @Override
    public String toString() {
        return String.format("[EpsLVPDUData]");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy