Package org.openpnp.spi

Examples of org.openpnp.spi.Head.home()


    //pre job stuff
    state = JobState.Running;
    fireJobStateChanged();
    try {
      head.home();
      Nozzle nozzle = head.getNozzles().get(0);
      Location l = new Location(LengthUnit.Millimeters, 5.0, 20.0, 1.0, 0.0);
      nozzle.moveTo(l, 1.0);
    }
    catch (Exception e) {
View Full Code Here


    //post job clean up
    state = JobState.Stopped;
    fireJobStateChanged();
    //park
    try {
      head.home();
      Nozzle nozzle = head.getNozzles().get(0);
      Location l = new Location(LengthUnit.Millimeters, 0.0, 0.0, 8.5, 0.0);
      nozzle.moveTo(l, 1.0);
    }
    catch (Exception e) {
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.