Hello Guest it is March 19, 2024, 06:12:57 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - TPS

711
General Mach Discussion / Re: Macro pauses my program
« on: December 01, 2020, 02:03:28 AM »
you can use macropump macro to do this.

712
GetDro(5) is the right value for B-axis.
have you enabled macropump macro in General cofig?

713
if you want to run W10 you have to look for a external Motion Controller, i simple BOB for PP will not work.

714
General Mach Discussion / Re: Macro pauses my program
« on: November 30, 2020, 02:17:20 AM »
simple answer: no

every macro call will Interrupt continious movement. so only Chance is to to call the teh macro
when your bit it not cutting material.

715
General Mach Discussion / Re: Looking for good DIY controller kit supplier
« on: November 28, 2020, 07:45:25 AM »
-in your Special case (MaxNC controler board) the PIC is reading and handling the encorder, and only the PIC,
Mach3 knows nothing about this Encoder.

-in a good tuned stepper System it is normaly not necessary to use encoder's

-anyhow there there are stepper Motor drivers on the market witch can handle Encoders. then they are
closed Loop. Leadshine is only one example:
http://www.leadshine.com/ProductSubType.aspx?type=products&category=closed-loop-steppers&producttype=closed-loop-stepper-drives&subtype=general-closed-loop-stepper-drives

but also here, only the stepper drives reads/handles the Encoder, not Mach3

716
if you put the code in a custom macro like M100, it Needs to be called in G-Code every time you want to Change
the analog Output, and Motion will stop on every macro call.

that is why i was talking about macropump macro, this is a macro witch is running in Background, and it will
read the B-Axis Position every 10ms and write the analog Output, and because it is running in Background,
it will not pause Motion.

717
General Mach Discussion / Re: Mach 3 only loading little bit of Gcode
« on: November 27, 2020, 07:34:24 AM »
i think the latest Version can be found here:

https://www.nvcnc.net/xhc-cnc-controller.html

but not 100% sure.

718
Show"N"Tell ( Your Machines) / Re: Best Way To Run My Machine
« on: November 27, 2020, 02:15:57 AM »
your controlbox has a cslab csmio/IP-M Controller. it is controlled via Ethernet

here: https://en.cs-lab.eu/technical-support/download/manuals-firmware-plugin/csmio-series-manuals-and-firmware-plugin/csmioip-m-user-manuals-download/

is a Manual witch Shows, how to connect the Controller to your Laptop. Win10 64bit should be ok.

719
General Mach Discussion / Re: Mach 3 only loading little bit of Gcode
« on: November 27, 2020, 02:09:46 AM »
you can try this:

https://www.youtube.com/watch?v=JquPpIab4GY

maybe it help's

720
in my posted link (https://en.cs-lab.eu/digital-and-analog-ios-configuration-its-easy/)
you can see analog Output Need's a value 0-4095 for 0-10V

so 0-100 (b-axis Position DRO(5)) multiplied by 4.095 will bring the result.

you can put the posted code into macropump.m1s (make sure macropump is enabled in
General config) and it should work.