Package com.grt192.mechanism

Source Code of com.grt192.mechanism.CameraAssembly

package com.grt192.mechanism;

import com.grt192.core.Mechanism;
import com.grt192.sensor.GRTAxisCamera;

/**
*
* @author anand
*/
public class CameraAssembly extends Mechanism {

    private GRTAxisCamera camera;

    public CameraAssembly() {
        camera = new GRTAxisCamera("Camera");
        camera.start();
        addSensor("camera", camera);
    }

}
TOP

Related Classes of com.grt192.mechanism.CameraAssembly

TOP
Copyright © 2018 www.massapi.com. 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.