Hello Guest it is April 26, 2024, 10:45:07 PM

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

871
German / Re: Mach3 mit USB-Steuerungplatine Probleme
« on: August 15, 2020, 11:24:16 AM »
Servus Dieter,
ich habe befürchtet, das mein Ansatz zwei Achsen gleichzeitig zu verfahren auch nicht funktionieren wird,
da dies wie schon geschrieben eine Controller Angelegenheit ist.

Zu Deinem HF Spindel Problem, das hört sich alles schwer nach elektrischen Störungen auf den Steuerleitungen an. Ich weis jetzt nicht, wie Du die Verkabelung zwischen dem Controller und dem Spindelcontroller ausgeführt hast. Bilder würden evtl. helfen. Aber generell gesagt, wenn diese Verkabelung nicht geschirmt und sauber geerdet ist, wird es hier schwierig. Ich nehme an, das Spindel auch ein China Produkt ist, und die nehmen das
mit EMV nicht so ernst. 

Gruß Tom

872
German / Re: Mach3 mit USB-Steuerungplatine Probleme
« on: August 15, 2020, 02:54:27 AM »
Hallo Dieter,
habe gerade mal was probiert.

Gehe mal auf Config -> Ports&Pins -> Input signals, dann ganz nach unten in der Liste,
bis Du zu den Jog Eingängen kommst.

Dort nur mal zu Test beim  JogX++ und JogY++ Enabled setzen, dann Emulated setzen.
Jetzt in das Hotkey Feld klicken und dann für jeden Eingang einfach eine beliebige Taste drücken.

Ich habe für JogX++ das kleine x und für JogY++ das kleine y genommen.

Jetzt Übernehmen und speichern, anschliessen Reset, jetzt sollten sich die Achsen auch mit den Tasten
x und y in positiver Richtung bewegen lassen. Durch drücken beider Tasten auch gleichzeitig, zumindest
hier.

Gruß Tom

873
German / Re: Mach3 mit USB-Steuerungplatine Probleme
« on: August 14, 2020, 11:53:32 AM »
Servus Dieter,

das mit dem Verfahren von scheint ein Controller Problem zu sein. Ich habe das gerade Mal auf meinen Maschinen mit CSMIO Controllern probiert, da geht das einwandfrei, sowohl mit dem Original 1024 Screenset
als auch mit meinen Eigenentwicklungen.
Ich fürchte hier sind wir am Ende des Weges angelangt.
Ich schau Morgen noch mal, da gab es eine Möglichkeit über OEM Buttons, das hab ich aber jetzt grad nicht
mehr so im Kopf (über 50 halt). Melde mich, was ich da noch finden kann.

Gruß Tom 

874
German / Re: Mach3 mit USB-Steuerungplatine Probleme
« on: August 13, 2020, 01:40:29 PM »
@Tweakie,
for what ever reasons i am not able to answer personal Messages, so i do it here. i will take care of this issue.


@Dieter, ok z.Zt. bin ich unterwegs, darum bin ich auch nicht gleich eingestiegen.
zum Thema Edit  G-Codes teste mal, ob Du bei Ausfüren (Windows) Notepad starten kannst.

zu Thema 2 Achsen fahren, das ist nicht vom Screenset abhängig, da müssen wir mal tiefer graben,
habe aber leider erst am WE Zeit.

Gruß Tom

875
General Mach Discussion / Re: Mach3 Conveyor belt
« on: August 04, 2020, 02:56:07 PM »
btw, was ist draus geworden?

876
that is what i tryed to explain (maybe my bad bavarian english is causing causing this).
softlimits are allways related to machine coords. machine cooods can only be set by
using Hardware reference Switches. thats it.

877
for the soft Limit error, you have to go to diagnostic page an have a look for the Machine Coord's

without Hardware reference Switches it is realy hard to use soft Limits, because they are allways related
to machine coords.

878
as Graham has written, if you use ballscrews (does not matter chinese or not) you should be in a tolerance
less then 0,001 mm per Revolution. so the first step would IMHO be to figure out, where your 'relative big tolerance' is comeing from. backslash (witch is not realy real with ballscrews) lose main bearings for the ballcrew
... and so on. first of all you have to get a preceise move of your axis (over the full range), and then talk about
tolerances.

879
this code from Graham:
Code: [Select]
%
G21 G40 G00 G99 G17

N1 (8MM DIA END MILL)
G54 G00 G90 G43 X0 Y0 Z5. H3 S8000 M3
Z1.
G01 Z-52. F100.
X44.375 F200.
G02 I-44.375 Z-54.
I-44.375 Z-56.
G00 X0 Y0
Z5.
M30
%

will start at Z -52
1st circle cut will bring Z to -54
2nd circle cut will bring Z to -56

so the pitch will be 2mm, it is not depending on Speed, it is depending on hight differenc (Z).

880
i assume in Config -> General config  the I/J Mode is set to absolute.

so your starting coordinate in X is 44,375

by using

G2 I-44,375

you are telling the System, that the Center X coordinate of your circle is absulute -44,375

so your start is at +44,375 and the Center is at -44,375 makes a radius of 88,75 and a
diamater of 177,5. exactly what your ruler Shows.

about the Min/Max:

Max X := X-Start = 44,375
Min X:= X-Start - Diameter = 44.775 - 177,5 = -133,125

Y is nowhere specified, so it takes the startvalue = 0

Max Y := 0 + Radius  = +88,75
Min Y := 0 - Radius = -88,75

so the entire Problem is the Absolute I/J Mode insteed of incremental.

with incremental Mode we will have the following situation

so your starting coordinate in X is 44,375

by using

G2 I-44,375

you are telling the System, that the Center X coordinate of your circle is incremental -44,375 witch
makes the Center going to absolute X = 0

so your start is at +44,375 and the Center is at 0 makes a radius of 44,375 and a
diamater of 88,75.

about the Min/Max:

Max X := 44,375
Min X:= -44.375

Y is nowhere specified, so it takes the startvalue = 0

Max Y := 0 + Radius  = +44,375
Min Y := 0 - Radius = -44,375