Package ca.teamdave.caruso

Examples of ca.teamdave.caruso.Controller


    public static void main(String[] args) throws CarusoException {

        Logger logger = new LiveGraphLogger("/home/leigh/.myDat", "/home/leigh/LiveGraph.1.14.Application.bin/LiveGraph.1.14.Application.bin.jar");
        Machine machine = new Machine(logger);

        Controller controller = new LinearRobotController();
        AbstractRobot robot = new LinearRobotSimulated();

        Caruso caruso = new Caruso(controller, machine, robot);

        caruso.robotInit(createConfig());
View Full Code Here


    public CarusoRobot() {
        super();

        Machine machine = new Machine();
        Controller controller = new SimpleFRCController();
        AbstractRobot robot = new SimpleFRCBotPhysical();

        this.caruso = new Caruso(controller, machine, robot);
    }
View Full Code Here

TOP

Related Classes of ca.teamdave.caruso.Controller

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.