Printing a Dot in Lasermode
Hello,
I modified my Printer with an laser. Normally the Laser is only activated when there is an X or Y Movement.
But I want to laser some Points. Is this possible anyhow? Maybe by telling the printer to activate the laser for a quite short time without movement. Or maybe activating the laser while only Z-Movement? Maybe with an custom G-Code?
I modified my Printer with an laser. Normally the Laser is only activated when there is an X or Y Movement.
But I want to laser some Points. Is this possible anyhow? Maybe by telling the printer to activate the laser for a quite short time without movement. Or maybe activating the laser while only Z-Movement? Maybe with an custom G-Code?
Comments
I use firmware 1.02
else if(Printer::mode == PRINTER_MODE_LASER) {
p->secondSpeed = ((p->delta[X_AXIS] != 0 || p->delta[Y_AXIS] != 0) && (LaserDriver::laserOn || p->delta[E_AXIS] != 0) ? LaserDriver::intensity : 0);
p->delta[E_AXIS] = 0;
}
#endif
else if(Printer::mode == PRINTER_MODE_LASER) {
p->secondSpeed = ((p->delta[X_AXIS] != 0 || p->delta[Y_AXIS] != 0 || p->delta[Z_AXIS] != 0) && (LaserDriver::laserOn || p->delta[E_AXIS] != 0) ? LaserDriver::intensity : 0);
p->delta[E_AXIS] = 0;
}
#endif