can't read all gcode lines or what? September 15, 2016 07:02AM |
Registered: 8 years ago Posts: 64 |
Re: can't read all gcode lines or what? September 15, 2016 01:19PM |
Registered: 13 years ago Posts: 548 |
Re: can't read all gcode lines or what? September 15, 2016 01:35PM |
Registered: 8 years ago Posts: 64 |
Quote
stephenrc
The mosfet output switches the negative side. Most lasers expect the positive side to be switched.
Look in [forums.reprap.org]
Re: can't read all gcode lines or what? September 19, 2016 05:09PM |
Registered: 8 years ago Posts: 64 |
Re: can't read all gcode lines or what? September 19, 2016 11:21PM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: can't read all gcode lines or what? September 20, 2016 12:00AM |
Registered: 10 years ago Posts: 119 |
Re: can't read all gcode lines or what? September 20, 2016 01:20AM |
Registered: 10 years ago Posts: 4,977 |
Quote
george4657
I can see no problem with the M106 command but it may be that you are overloading your cpu with your code.
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: can't read all gcode lines or what? September 20, 2016 12:49PM |
Registered: 10 years ago Posts: 119 |
Re: can't read all gcode lines or what? September 20, 2016 01:40PM |
Registered: 10 years ago Posts: 4,977 |
G1 X100 F10 M106 S255
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: can't read all gcode lines or what? September 20, 2016 03:46PM |
Registered: 8 years ago Posts: 64 |
Quote
Wurstnase
M106 isn't synchronized with the stepper. Add a G4 P0 before each M106.
Quote
george4657
I can see no problem with the M106 command but it may be that you are overloading your cpu with your code.
The following code:
G1 X-6.65 Y2.73 Z100.00 F1000
G1 X-6.66 Y2.23 Z100.00 F1000
G1 X-6.66 Y1.73 Z100.00 F1000
G1 X-6.66 Y1.55 Z100.00 F1000
can be changed to:
G1 X-6.65 Y2.73 -> eliminate Z and F as they have not changed
G1 X-6.66 Y2.23
G1 Y1.73 -> eliminate X as it did not change -> this line could also be deleted as next X is also the same so is a vertical line
G1 Y1.55
Each value that is on line needs to be read ,changed to value from text, and compared to existing value.
This becomes more important with several small moves in a row and faster speeds
George.
Re: can't read all gcode lines or what? September 20, 2016 11:47PM |
Registered: 8 years ago Posts: 64 |
Re: can't read all gcode lines or what? September 21, 2016 01:21AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: can't read all gcode lines or what? September 21, 2016 01:24AM |
Registered: 8 years ago Posts: 64 |
Re: can't read all gcode lines or what? September 21, 2016 09:02AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: can't read all gcode lines or what? September 21, 2016 04:06PM |
Registered: 8 years ago Posts: 64 |
Quote
Wurstnase
Do you have a minimal gcode example where all the issues happened?
G4 P0 G28 G1 X14.67 Y5.88 Z98.00 F4000 G4 P0 M106 S255 G1 X14.80 Y5.40 Z98.00 F2000 G1 X14.93 Y4.91 Z98.00 F2000 G1 X15.06 Y4.43 Z98.00 F2000 G1 X15.19 Y3.95 Z98.00 F2000 G1 X15.32 Y3.47 Z98.00 F2000 G1 X15.45 Y2.98 Z98.00 F2000 G1 X15.46 Y2.93 Z98.00 F2000 G4 P0 M106 S0 G1 X-1.45 Y-0.59 Z98.00 F4000 G4 P0 M106 S255 G1 X-1.22 Y-0.15 Z98.00 F2000 G1 X-0.98 Y0.29 Z98.00 F2000 G1 X-0.74 Y0.73 Z98.00 F2000 G1 X-0.51 Y1.17 Z98.00 F2000 G1 X-0.27 Y1.61 Z98.00 F2000 G1 X-0.04 Y2.05 Z98.00 F2000 G1 X0.20 Y2.49 Z98.00 F2000 G1 X0.25 Y2.59 Z98.00 F2000 G4 P0 M106 S0 G4 P0 G28
Re: can't read all gcode lines or what? September 22, 2016 03:49AM |
Registered: 10 years ago Posts: 4,977 |
G28 ;home G4 P0 ;wait until home is done M106 S255 ;activate D9 G1 X100 F1000 ;move G4 P0 ;wait until move is done M106 S0 ;deactivate D9 G28 ;home again
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: can't read all gcode lines or what? September 22, 2016 04:12AM |
Registered: 8 years ago Posts: 64 |
Re: can't read all gcode lines or what? September 22, 2016 04:31AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: can't read all gcode lines or what? September 22, 2016 09:49AM |
Registered: 8 years ago Posts: 64 |
Re: can't read all gcode lines or what? September 29, 2016 01:23PM |
Registered: 8 years ago Posts: 64 |