Examples of actuate()


Examples of eas.simulation.spatial.sim2D.standardAgents.wandaRobot.atoms.io.ACOLOR.actuate()

      Integer... args) {
    int v1 = args[0];
    int v2 = args[1];
   
    ACOLOR col = new ACOLOR();
    col.actuate(env, agent,200,200,240);
   
    v1 = v1+20;
    v2 = v2+20;

    AWHEELS w = new AWHEELS();
View Full Code Here

Examples of eas.simulation.spatial.sim2D.standardAgents.wandaRobot.atoms.motion.AWHEELS.actuate()

   
    v1 = v1+20;
    v2 = v2+20;

    AWHEELS w = new AWHEELS();
    w.actuate(env, agent,v1, v2);
  }
}
View Full Code Here

Examples of org.openpnp.spi.Actuator.actuate()

    // move to final laser activation position
    actuator.moveTo(feedEndLocation.derive(null, null, null, Double.NaN), feedSpeed);

    // flash the laser
    actuator.actuate(true);
    Thread.sleep(200);
    actuator.actuate(false);

    //move back to safeZ
    nozzle.moveToSafeZ(1.0);
View Full Code Here

Examples of org.openpnp.spi.Actuator.actuate()

    actuator.moveTo(feedEndLocation.derive(null, null, null, Double.NaN), feedSpeed);

    // flash the laser
    actuator.actuate(true);
    Thread.sleep(200);
    actuator.actuate(false);

    //move back to safeZ
    nozzle.moveToSafeZ(1.0);

View Full Code Here

Examples of org.openpnp.spi.Actuator.actuate()

   
    // Move the actuator to the feed start location.
    actuator.moveTo(feedStartLocation.derive(null, null, Double.NaN, Double.NaN), 1.0);

    // extend the pin
    actuator.actuate(true);

    // insert the pin
    actuator.moveTo(feedStartLocation, 1.0);

    // drag the tape
View Full Code Here

Examples of org.openpnp.spi.Actuator.actuate()

    actuator.moveTo(feedEndLocation, feedSpeed);

    head.moveToSafeZ(1.0);

    // retract the pin
    actuator.actuate(false);
   
    if (vision.isEnabled()) {
      visionOffset = getVisionOffsets(head, location);
     
      logger.debug("final visionOffsets " + visionOffset);
View Full Code Here
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.