Package ca.teamdave.caruso.logger

Examples of ca.teamdave.caruso.logger.LogFrame


    public void periodicUpdate() throws CarusoException {
        // If there is a logger, send data to it
        if (this.logger != null) {
            // create a new log frame
            LogFrame f = new LogFrame(
                    this.sensors,
                    this.actuators);
            this.logger.addFrame(f);
        }
    }
View Full Code Here

TOP

Related Classes of ca.teamdave.caruso.logger.LogFrame

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.