Requests for help: Gcode cam follower/ tangential knife control.
-
Thanks, yeah there are a lot of possibility's for this. thanks for the feed back.
so, after more searching I found that using the proper words help in searching "_"
it seems what I'm looking for is a tool path gcode generator for a "tangential knife" this is the other version of the drag knife but the tangential knife id motorized to face the proper direction...
here is a few things i found:
https://github.com/adamLange/wireCAM/tree/edgeslicehttps://github.com/jamesd256/gcodetools/tree/manual_path_selection
http://www.cnc-club.ru/forum/viewtopic.php?t=35
new version : http://www.cnc-club.ru/forum/viewtopic.php?t=35#p140the first on there i have know idea how to use, the second is for inkscape
not the best solution for what I'm trying to do but it might work for testing.
in the end id rather have the a type of script that adds the G code according to the direction already in the G code.
its a start...
ill keep looking and trying to find some one who can help in this path of "tangential tool path" Gcode editor...
unfortunately any already defined software / add on is not the best option...
also mach3 also supports tangential knife...
oh man i'm in over my head... i need a script to directly edit the gcode...
any software guys / gals out there?
~Russ
-
ok, after some work and looking, i have a good friend who is working on wright a script. ( Thanks Matt, "you so smart")
so the next question is:
I'm going to use a U axis to rotate the tool head in the correct position. ( 0-360 deg) this will allow for a lot of options for others to make knife and other tools to attach to the Duet. once complete i will do my best to make a video showing everything needed to make this happen for others to fallow.
The questions are:
-
can the moments be relative? or absolute? or can i pick some how in the config file one or the other?
-
can I set the axis up to be rotational? ( Telling it a degree number instead of a position). I would do this in the G code. so that the printer would automatically know its a rotational position.
-
Besides the "M584: Set drive mapping" what else do i need to add to the config file? homing files? anything else?
Thank you for the help!
~Russ Gries
-
-
@russ-gries I dont know if this is the best way to do it, but assuming you are going to use a stepper motor you could maybe configure it as an extruder so it uses relative movement by default and if you set your steps/mm to 360°/(200stesp/rev motor) *16microstepping = 8.889 you would have an "Extruder"=Rotating Head that can be commanded to move 30° clockwise by sending G1 E30.
You would have to align it somehow before turning that stepper and make that your initial angle.BTW I saw your video a while back, good work, I guess this is where all the cool kids hang.
-
Good thinking there! its defiantly something to think about.
One question though. if its set up as an Extruder. then how dose the firmware handle it.let me restate that question.
from my understanding, if the extruder gets a command in relative movement ( E30) then over the entire moment the extruder moves that much right? so that the plastic is evenly extruded?
so i'm not sure where that is handled. is it in the firmware or else where?
so if the code looks like this for Printing:
G1 X33.265 Y27.359 E1.37686
G1 X32.331 Y28.899 E0.07487
G1 X29.933 Y32.214 E0.17009Then everything is moving at the same time so to speak. while x and y are moving the extruder is moving that much and ending at the same time as the line of code.
however, I would need to have the E ( rotational motor) move before the next moment. so that its allways going in the right direction.
so, with this in mined, can it be done like this:
then it would need to look like this for the rotational motor? :
G1 X33.265 Y27.359
E1.37686
G1 X32.331 Y28.899
E0.07487
G1 X29.933 Y32.214
E0.17009am i thinking of this correctly?
it will read each line and move there before going to the next line?Thanks for the feed back. Unfortunately I'm not that familiar with how things are read in the buffer... so some trial and error is needed, that or one who can answer the questions can help
good stuff. will get there.
Thanks!!
~Russ Gries -
@russ-gries said in Requests for help: Gcode cam follower/ tangential knife control.:
from my understanding, if the extruder gets a command in relative movement ( E30) then over the entire moment the extruder moves that much right? so that the plastic is evenly extruded?
Correct, the movement of all the axis and extruders in the same command are coordinated.
so i'm not sure where that is handled. is it in the firmware or else where?
Yes, the firmware is designed to do this
however, I would need to have the E ( rotational motor) move before the next moment. so that its always going in the right direction.
well I suppose it depends, the ideal way would probably be to not use a slicer because as far as I know they don't support arc movements G2/3(they approximate with small lines), but with a small enough linear approximation to a curve the difference between doing it before or during will be very small probably insignificant.
I'm not 100% sure, but if it doesn't work, the way you suggested below should work.then it would need to look like this for the rotational motor? :
G1 X33.265 Y27.359
E1.37686
G1 X32.331 Y28.899
E0.07487
G1 X29.933 Y32.214
E0.17009
am i thinking of this correctly?
it will read each line and move there before going to the next line?Correct, for consecutive movements each line is executed after the previous movement is finished and the movements are coordinated only when they are in the same G command.
BTW I am relatively new to this so I'm sure someone will correct me if I'm wrong.
-
Ok, Thanks for the feed back!
After doing some work on this a second option for turrning the tool head is to use a servo....
I could get a 360 deg servo. Then just move the servo accordingly.
Ill have to think about this more.
Somthing like this would work with the right controls...
https://www.adafruit.com/product/3614?gclid=EAIaIQobChMI77yl9rra3QIVltlkCh0RDQq3EAQYAiABEgK3iPD_BwE
So a stepper might be best for eazy installation and uses...
I'm going to use a geared stepper for this first version so the size is small. Wont be fast but it will be functional...
~Russ -
Progress.. a short video of it working! well just proof it can be done but a lot more to do in the G code script...
https://www.youtube.com/watch?v=0EYsK1X155M
I'm not so sure using the extruder output is going to work.
due to how its controlled in the firmware. I have two choices from what i can see.- try to hack some thing to let me move the extruder before the move but on the fly. ( no waiting)
- wait every time it has to move by placing it on the next line by its self... not a good option for fast coil making...
The other option is to use the U axis and try to make absolute movements work...
I wonder if I'm still going to have the same problem with that too...feed back please.
Thanks for the help everyone! I can see us all cutting vinal, cloth, paper, cardboard, leather? ... and for me ... making coils!
~Russ
-
Progross ! Got the motor and gear system all ready for testing.
Alot more to do.. but a little at a time...
~Russ
Had to re build the motor to make it 24V bipolar...
-
Short snippet of it working.
https://youtu.be/Ruf0Oo334ZMAlot of slop in the original stepper motor gears. May need to change that out for somthing better. Or see if i can fix it at all.
But its a start! Thats what prototypes are all about!
~Russ
-
ok, I'm lost...
I set up the U axis,
I want to control it at the same time as XYZ ( delta) but it is doing all kinds of weird things.
here is my config.g can you see anything i need to change?
; Configuration file for dc42 Kossel updated RWG 11-25-16
; Axis and motor configuration
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S1 ; Drive 1 goes forwards
M569 P2 S1 ; Drive 2 goes forwards
M569 P3 S1 ; Drive 3 goes backwards
M569 P4 S0 ; Drive 4 goes backwards
M574 X2 Y2 Z2 U2 S0 ; set endstop configuration (all endstops at high end, active high)0 = none, 1 = low end, 2 = high end.
M584 U4 ; ********** map U drive to second extruder driver.M665 R166.636 L343.788 B155 H405 X 0°, Y 0° ; set delta radius, diagonal rod length, printable radius, homed height and XY tower corrections
M666 X0.01 Y-0.45 Z0.44 Z0.00 U0 ; **********put your endstop adjustments here, or use auto calibration to find them
M92 X80 Y80 Z80 U90 ; Set axis steps/mm (20 tooth pulleys, 1.8deg/step motors)
M350 X64 Y64 Z64 U1 E16 I1 ; ( set E to Set 16x micro-stepping with interpolation
M906 X1500 Y1500 Z1500 U200 E800 I50 ; Set motor currents (mA) and increase idle current to 60% Russ change from default 60 to 10
M201 X1000 Y1000 Z1000 U3000 E1000 ; Accelerations (mm/s^2)
M203 X30000 Y30000 Z30000 U3000 E30000 ; Maximum speeds (mm/min)
M566 X1200 Y1200 Z1200 U3000 E1200 ; Maximum instant speed changes
G21 ; Work in millimetres
G90 ; Send absolute coordinates...
M83 ; ...but relative extruder moves
;M557 R80 S18 ; ***moved to auto cal file!! define a grid with the specified radius and spacing (for delta printers)results are spored in file /sys/heightmap.csv; FAN CONTROL
M106 P0 I1 ; invert fan pwm; Thermistors and heaters
M305 P0 T100000 B3950 R4700 H0 L0 ; Typical Chinese bed thermistor. Put your own H and/or L values here to set the bed thermistor ADC correction.
M305 P1 T100000 B4388 R4700 H0 L0 ; E3Dv6 hot end. Put your own H and/or L values here if necessary to set the first nozzle thermistor ADC correction.
M301 H0 P20 I0.5 D1000 T0.85 W150 B5 ; PID settings for the bed
M301 H1 P10 I0.10 D100 T0.50 ; PID settings for extruder 0
M570 ; Allow extra heating time; Tool definitions
M563 P0 D0 H1 S"Extruder 1" ; Define tool 0
;M563 P1 D1 S"360 Drive" ; **********Define tool 1 ( use if tool is an extruder)
G10 P0 S0 R0 ; Set tool 0 operating and standby temperatures
;M92 E90 ; ********** (Set extruder steps per mm 20 1024 ,this is 360 deg ) for first and second extruders ( use if tool is an extruder);Servo control
M307 H6 A-1 C-1 D-1 ; Disable heater channel 6 for use with servo CNC spindle. use M280 P6 Sxx the S is the ms use 0-200, I1 to invert Sig, must use on every command
M280 P6 S30 ; set the "throddle" to boot high, low, high. boots the esc
M280 P6 S5
M280 P6 S30;*** If you have a dual-nozzle build, un-comment the next 2 lines
;M563 P1 D1 H2 ; Define tool 1
;G10 P1 S0 R0 ; Set tool 1 operating and standby temperatures
;M92 E663:663 ; Set extruder steps per mm; Z probe and compensation definition
M558 P1 X0 Y0 Z1 H5 F300 T10000 I1 ; Z probe is IR and is not used for homing any axes, Z probe dive height 3mm, probing speed 300mm/min, travel speed 10000mm/min , Invert (I1) or do not invert (I0)
G31 X0 Y0 Z0 P500 ; Set the zprobe offset and threshold (put your own values here). For a delta, use zero X and Y offset.;*** If you are using axis compensation, put the figures in the following command
;M556 S78 X0 Y0 Z0 ; Axis compensation hereM207 S7.0 F3600 Z0.1 ; Set firmware retraction details
M572 D0 S0.1 ; set pressure advanceM208 X0 Y0 Z-30 U0 S1 ; ********** set minimum limments
;M208 X0 Y0 Z0 ; set max limments
T0 ; select first print headM501 ; load Eprom settings
I'm sure there are thing in there that are old, its not a clean file... i need it clean it up.
If i dont home U, i can get it to work, but if i home it it dose not run at all... i have know idea why.
here is my homeu.g
G91 ; use relative positioning
M220 S100 ; Set speed factor override percentage to 100% if its higher so the home dose not slam the top.
G1 S1 U360 F3000 ; move axis 360 and look for and stop
G1 S2 U20 ; move axis
G1 S1 U-20 ; move axis to find home again
G1 U10 F2000 ; move to X0 facing position ( change this number to set home where you want)
G90 ; back to absolute positioning
G1 U200 F500 ; center the head and set a reasonable feed rateany help is a huge plus!
Thank you!
~Russ
ps. the first time i hit home U the entire printer makes high pitch noises from the motor? know idea what that's all about but it messes up the motors... egh!
-
Which firmware version are you using? There was a bug with homing additional axes on a delta, that I fixed in one of the 2.02RC releases.
-
Thanks David,
Im using 1.19 i believe. Need to double check in the morning.
I can upgrade and see if that fixes it.
A few other Q.
-
In the mean time dose the config.g look good or did i miss somthing? Also the homeu.g
-
Can i set up one axis as relative while the rest are absolute?
-
If i send this command. G1 X50 Y50 U10 will the U complete before the X and Y or will they all finish at the same time?
-
Can i set up axis U to allways move at the same apeed all the time? And use the F command to change it other wise?
Such as using a G0 command to move it one speed and use G1 to move another? Thses will be fixed speeds for each? But only for the U axis?
If i can set up G1 and G0 for set speeds on U where do i do that?Thank you thank you thank you!
Im going crazy over here
But ill get there!
~Russ
-
-
-
Your M584 command that creates the U axis must come before the M574 command that refers to U. Also the M584 command should re-define the extruder drivers, otherwise driver 4 will be both an axis and an extruder.
-
No.
-
At the same time.
-
No. The F parameter determines the speed of the move as a whole. If there is any XYZ movement, then it is the speed of the XYZ component of the move.
-
-
Having read all above (but quite quickly to be honest), were I to attempt this, I would lean heavily on the G-Code concept that a G1 move does internal calculations to ensure that all axis specified on that move arrive at the same point at the same time when the move ends.
Also, A is normally the first rotational axis. Given RepRap flexibility, you could call it A or U... but I'm going to call it A below, as this is more normal CNC nomenclature.
Assuming A is defined as a rotational axis:
G1 Xnnn Ynnn Annn will smoothly rotate the A axis "in coordination with" the XY move. A series of these should do what you want.
Homing on A should be setup mechanically so that A can continuously rotate, and that "home" is triggered for a fraction of a degree of that rotation.
Relative vs. absolute? Doesn't really matter, when you realize an NIST standard rotational axis can be moved an infinite amount, limited only by the number of digits that the G-Code parser will accept.
That is, as you wind a coil, A might move through 0, many tiny increments, past 360, and just keep going. Far along in a coil, moving from 394857.2 to 394857.24 is perfectly legitimate.
Anyway, I'd build everything on those assumptions. You MAY already be doing that... but I wanted to make a pretty strong recommendation to NOT treat a rotational axis as an extruder, or anything else. Treat it as a rotational axis. G-Code standards will give you a big jump on what you are trying to accomplish.
-
DC42, does RepRap support rotational axis move coordination on G2?
Russ, if it does, that would make the G-Code much simpler. You could have a single line of G-code that does each "circle" of the coil. If it does, I'll post some examples.
By the way, for coil winding, you may wish to generate the G-Code with a simple script. PERL, Python, Java, etc.
-
@danal said in Requests for help: Gcode cam follower/ tangential knife control.:
DC42, does RepRap support rotational axis move coordination on G2?
RRF does not currently distinguish between linear and rotational axes.
G2 and G3 moves can specify movement along additional axes, which will be done linearly and coordinated with the XY motion.
-
Yes, this was also a question I had.
David,
If it was you trying to make what im trying to make, How would you set up and control a rotanial axis?
You deeply know the limitations of the firmware.
In the end it might not be possible to make fluid movements like im trying to do.
So what ever the best options i have ill stick with those. I want others to be able to use there Duet controler to use a tool end as im making.
At the moment My current limitation is that I want to position the tool in the direction I want to go and in order to do this the tool has to stop every time it has to turn. I'm not sure if there's any way to work around this problem?
If I use arcs instead of point to point then is it possible to command the tool to follow the Ark. In any fashion?
From what I can tell so far I'm going to have to stop every time I want to turn the tool
Thanks for your feedback I'll do whatever I can with what options I have and eventually may have to try a completely different platform and order to achieve this, but even if it's slow it will still allow people to make knife cutters and other things so it's still worth pursuing.
~Russ
-
I will be upgrading my firmware and testing the homing here in a couple of hours so will find out and make sure everything is good on that part.
~Russ
-
ok, firmware up to date.
FIRMWARE_NAME: RepRapFirmware for Duet 2 WiFi/Ethernet FIRMWARE_VERSION: 2.02RC2(RTOS) ELECTRONICS: Duet WiFi 1.0 or 1.01 FIRMWARE_DATE: 2018-09-07b2
now, i see its homing but i cant move it at all once its homed or even before its homed?
But now i get an error if its not homed and try to move it. where before it just moved only if it was not home yet.
now I'm stuck, i cant move it. U is rendered useless. ? strange because it dose home
did i miss end stop liniments or something?
I also updated my config.g
these now should be correct. I redefined the extruder drives correctly yes? and moved M574 after M584
; Axis and motor configuration
M569 P0 S1 ; Drive 0 goes forwards
M569 P1 S1 ; Drive 1 goes forwards
M569 P2 S1 ; Drive 2 goes forwards
M569 P3 S1 ; Drive 3 goes forwards
M569 P4 S0 ; Drive 4 goes backwards
M569 P5 S0 ; Drive 5 goes backwards
M584 U4 E3:5
M574 X2 Y2 Z2 U2 S0when I run a file with U commands, it completely ignores the U commands?.
not sure what to check next, please let me know what to look for. Thanks!!!!
~Russ
-
also something to note, U dose not show up here? E0 andE1 do? but the current is correct for E0 for U ?
is this normal?
~Russ