Can a machine be setup with one axis?
- Leon82
- Offline
- Platinum Member
Less
More
- Posts: 592
- Thank you received: 77
29 Nov 2018 03:26 #121573
by Leon82
Can a machine be setup with one axis? was created by Leon82
For example if I wanted to buy parts over time and setup z axis first. Can I still use the software to control the one axis and add the others later.
My old computer has a legacy parallel port on it so I just have to buy the cable so I'm going to use a standard parallel breakout board
Thanks
My old computer has a legacy parallel port on it so I just have to buy the cable so I'm going to use a standard parallel breakout board
Thanks
Please Log in or Create an account to join the conversation.
- Clive S
- Offline
- Platinum Member
Less
More
- Posts: 2244
- Thank you received: 478
29 Nov 2018 08:23 #121580
by Clive S
Replied by Clive S on topic Can a machine be setup with one axis?
Yes you can, you can even set it up as a 3 axis machine and still only use one axisFor example if I wanted to buy parts over time and setup z axis first. Can I still use the software to control the one axis and add the others later.
My old computer has a legacy parallel port on it so I just have to buy the cable so I'm going to use a standard parallel breakout board
Thanks
The following user(s) said Thank You: Leon82
Please Log in or Create an account to join the conversation.
- Leon82
- Offline
- Platinum Member
Less
More
- Posts: 592
- Thank you received: 77
30 Nov 2018 01:28 - 30 Nov 2018 01:29 #121617
by Leon82
Replied by Leon82 on topic Can a machine be setup with one axis?
Thanks .
I booted with the live cd And the max jitter sofar is 13105 nanoseconds. From what I've read my box should be ok.
Hopefully the plug in the motherboard is still working
What's the difference between the base and service thread? The base thread is at 19788ns
I booted with the live cd And the max jitter sofar is 13105 nanoseconds. From what I've read my box should be ok.
Hopefully the plug in the motherboard is still working
What's the difference between the base and service thread? The base thread is at 19788ns
Last edit: 30 Nov 2018 01:29 by Leon82.
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
Less
More
- Posts: 23178
- Thank you received: 4865
02 Dec 2018 17:09 #121721
by andypugh
Replied by andypugh on topic Can a machine be setup with one axis?
The base thread does the fast ND stuff, like output step pulses, but typically does not do any difficult mathematics (no floating point)
The servo thread does the complicated stuff, like calculating the step frequency for the next 1mS, before passing that number on to the base thread.
The servo thread does the complicated stuff, like calculating the step frequency for the next 1mS, before passing that number on to the base thread.
The following user(s) said Thank You: Leon82
Please Log in or Create an account to join the conversation.
- Leon82
- Offline
- Platinum Member
Less
More
- Posts: 592
- Thank you received: 77
16 Dec 2018 13:35 #122473
by Leon82
Replied by Leon82 on topic Can a machine be setup with one axis?
Thanks.
I got the z axis up and running. I had to invert it in the pin menu.
I selected the g201(because I got 201x) for driver but it was choppy and jumping. So I tried the keling preset and it was very smooth
I got the z axis up and running. I had to invert it in the pin menu.
I selected the g201(because I got 201x) for driver but it was choppy and jumping. So I tried the keling preset and it was very smooth
Please Log in or Create an account to join the conversation.
- pl7i92
- Offline
- Platinum Member
Less
More
- Posts: 1875
- Thank you received: 355
16 Dec 2018 15:36 #122479
by pl7i92
Replied by pl7i92 on topic Can a machine be setup with one axis?
For Steppper Mashines BEST To stay at the Given 100000 BASE
will give you 5meter/min that shout reatch your NEED
No need to edit in
BE arare the Entry You makes go to the Stepgen Timing not to the BASETREAD
Servotread is the Time that Switches Buttons PERYPHERY are ancounterd
will give you 5meter/min that shout reatch your NEED
No need to edit in
BE arare the Entry You makes go to the Stepgen Timing not to the BASETREAD
Servotread is the Time that Switches Buttons PERYPHERY are ancounterd
The following user(s) said Thank You: Leon82
Please Log in or Create an account to join the conversation.
- Leon82
- Offline
- Platinum Member
Less
More
- Posts: 592
- Thank you received: 77
17 Dec 2018 03:28 #122503
by Leon82
Replied by Leon82 on topic Can a machine be setup with one axis?
Here's a silly question,
How do I make a text file a program? I'm not quite ready to run anything but it has what seem to be image file extension. Png... Ect
I saw this in the ini when I tried out the GMOCCAPY UI. Could I use a .txt file?
How do I make a text file a program? I'm not quite ready to run anything but it has what seem to be image file extension. Png... Ect
I saw this in the ini when I tried out the GMOCCAPY UI. Could I use a .txt file?
Please Log in or Create an account to join the conversation.
- pl7i92
- Offline
- Platinum Member
Less
More
- Posts: 1875
- Thank you received: 355
17 Dec 2018 09:26 #122509
by pl7i92
Replied by pl7i92 on topic Can a machine be setup with one axis?
Yes You can use TXT Just open * Files
BUT BETTER To Safe to NC_File Folder With ending ngc
BUT BETTER To Safe to NC_File Folder With ending ngc
The following user(s) said Thank You: Leon82
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
Less
More
- Posts: 23178
- Thank you received: 4865
17 Dec 2018 10:13 - 17 Dec 2018 10:14 #122512
by andypugh
There are two questions that you could be asking here.
1) How do I make a text file containing Pyhon, Bash, Java etc into an executable file.
- Then you need the file to start with the #! sequence and the path to the interpreter
For example #! /usr/bin/python
And you also need to give the file execute permissions "chmod +x file.name"
2) How do I get LinuxCNC to treat a text file containing G-code as .G-code:
- Change the file extension to .ngc
Or edit the INI to accept the other extension as G-code.
Three! There are at least three questions you could be asking
3) To interpret a bitmap image (.png, .gif, .jpg) as a depth map simply open it in the LinuxCNC GUI file browser, the special filter file "Image-to-gcode" will run and convert the image to a machinable file.
Replied by andypugh on topic Can a machine be setup with one axis?
Here's a silly question,
How do I make a text file a program?
There are two questions that you could be asking here.
1) How do I make a text file containing Pyhon, Bash, Java etc into an executable file.
- Then you need the file to start with the #! sequence and the path to the interpreter
For example #! /usr/bin/python
And you also need to give the file execute permissions "chmod +x file.name"
2) How do I get LinuxCNC to treat a text file containing G-code as .G-code:
- Change the file extension to .ngc
Or edit the INI to accept the other extension as G-code.
but it has what seem to be image file extension. Png... Ect
Three! There are at least three questions you could be asking
3) To interpret a bitmap image (.png, .gif, .jpg) as a depth map simply open it in the LinuxCNC GUI file browser, the special filter file "Image-to-gcode" will run and convert the image to a machinable file.
Last edit: 17 Dec 2018 10:14 by andypugh.
The following user(s) said Thank You: Leon82
Please Log in or Create an account to join the conversation.
- Leon82
- Offline
- Platinum Member
Less
More
- Posts: 592
- Thank you received: 77
23 Dec 2018 14:34 #122781
by Leon82
Replied by Leon82 on topic Can a machine be setup with one axis?
Thanks again.
I got all three axes up and running. I even ran a little test program .
I can use mastercam at work but I'm going to have to figure something out for home
I got all three axes up and running. I even ran a little test program .
I can use mastercam at work but I'm going to have to figure something out for home
Please Log in or Create an account to join the conversation.
Time to create page: 0.073 seconds