Hello Guest it is April 26, 2024, 03:49:41 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 - CNC-Steuerung

Pages: « 1 2 3 4 5 6 »
31
Hi Darc,

first you should define a M-Macro like M100 for Led on and M101 for LED off.
Then can use the whole VB-Script language for your Macros..

M100:

SetUserLED (nnnn, 1)   ' Led on

M101:

SetUserLED (nnnn, 0)    ' Led off


or you can use both in one macro:


M100:

If GetUserLED (nnnn) then       ' UserLED on?
     SetUserLED (nnnn,0)          ' then turn it off
else
     SetUserLED (nnnn, 1)         ' ..or turn it on...
end if


Thats will toggle the status of your LED....

Copy this macro into your folder matching your profile.


Best regards,


Wolfram


32
General Mach Discussion / Re: Driver poblems
« on: February 10, 2007, 07:57:27 PM »
Hi,

"I installed a new Asus mother board and 2.8 ghz dual core processor."

Does anybody have such problems with a dual core processor? Last PC Ive tested with such an processor doesnt
work well! (And Ive tested a lot of in the last 2 years ;) )

Could you please post your drivertest?

Greetings from Germany,

Wolfram

33
VB and the development of wizards / Re: OEM DROs in Wizards
« on: February 07, 2007, 11:41:05 AM »
Hi Brian,

Problem found and fixed!
If you start the wizards with double click instead of "run" the OEM DROs will be
destroyed....
Thanks to ART, we need a few mails and videos to detect it  :)

Greetings from Germany,

Wolfram

34
German / Mach3 unter Vista..(von ART)
« on: February 05, 2007, 03:41:48 PM »
Hier ist die übersetzte Anleitung von ART, um Mach3 unter MS-Vista zu installieren und zu starten:

Damit Mach3 unter Vista läuft, sind einige Besonderheiten bei der Installation zu beachten:

1) Zuerst sollte die Installation ganz normal ausgeführt werden.

2) Dann sollte die angehängte Datei heruntergeladen und ausgepackt werden. Damit diese Datei (memoryoverride.reg) in die Windows-
Registry eingetragen werden kann, braucht sie nur mit Doppelklick ausgewählt zu werden. Windows fragt dann nach, ob diese Information
der Registry hinzugefügt werden soll. Diese Datei modifiziert die Registry so, daß der Mach3-Treiber läuft.

3) Anschließend wechselt ihr in den Mach3 - Installationsordner (z.B. c:\mach3), um den DriverTest auszuführen.
Dazu wird dieser mit der rechten Maustaste angeklickt und mit der Option gestartet: " Ausführen als Administrator".
Anschließend kommt die Mitteilung, dass das System neu gebootet wird, was unbedingt (!) auch gemacht werden soll,
ansonsten kommt es zum Crash. ...

4) Nun sollte Mach3 ausgeführt werden können, wir können den Treibertest aber nochmal ausführen.

Hinweis:
Es gibt während des Treibertests einige Fehlermeldungen, tatsächlich läuft dieser beim ersten Start unter Umständen nicht.
In diesem Fall fragt Vista, ob er im Kompatibilitätsmodus ausgeführt werden soll. Wird das gemacht, läuft er ....

Gruß Wolfram
(alias Bubka)

35
VB and the development of wizards / Re: OEM DROs in Wizards
« on: January 25, 2007, 12:22:27 PM »
Hi Brian,

"The wizards use there own DRO's and will not harm the data in DRO's that you have in Mach3"

sorry, but that not the whole true..

Ive found that there are side effects with Mach3 which causes incredible faults in Mach3!  >:(

So my ToolChange Position will be changed after using a wizard.....

What can we do?

Thanks and Greetings from Germany

Wolfram




36
German / Herzlich Willkommen im "Deutschen Eck"
« on: January 25, 2007, 06:15:15 AM »
Hallo liebe Mach-User,

Danke an ART für diese tolle Idee, internationale Foren einzurichten. Dies könnte die Anlaufstelle für Interessenten und Benutzer der Mach2/3... aus dem gesamten deutschsprachigen Raum werden.

Einige User kennen mich als "Bubka" aus div. deutschen Foren, ich habe im Hause CNC-Steuerung.com die Verantwortung für die Übersetzung, den Support und die Gestaltung der Mach3-Software.

Durch diesen engen Kontakt zum Originalforum wird der Support vielleicht auch etwas einfacher und wenn ich hier für den einen oder anderen User Übersetzungsarbeit leisten kann tue ich das gern.

Ansonsten hoffe ich auf eine rege Beteiligung!

Grüße aus Deutschland nach Halifax!

Wolfram Szentiks
CNC-Steuerung, Bocholt



37
General Mach Discussion / Re: MPG-Mode Question..
« on: December 09, 2006, 11:25:15 AM »
Hi Brian,

ok, thanks. So I have to build a new jog wheel with the
function to change the cycle steps...

But..

"The problems all go back to under powered machines."

what does it mean?

Thanks and Greetings,

Wolfram

38
General Mach Discussion / Re: Tool measure macro
« on: December 09, 2006, 05:23:44 AM »
Hi Faby,

Code: [Select]
Code "G31 Z-230 F600"
While IsMoving()
Wend
Code "G91 G00 Z2"
Code "G31 Z-10 F60"
While IsMoving()
Wend
HitOld = GetVar(2002)
It works fine, but only when I run step by step...


Ok, I think you must wait after movement G91 G00 Z2:

Code " G91 G00 Z2"
While IsMoving()
Wend
Code " G31 Z-10 F60"
While  IsMoving()
Wend.


Thats the reason because it does work step by step.
But be careful!!
Th G91 command sets the mode to G91 ... (really logic,  ;) )
If your mode at the beginning of your measure macro was G90,
your macro returns with G91! Your crash will be shure..

So read the G9x-Status (from LED) first in your macro and restore it
after measurement...


@ REM300WM:

You cannot connect a macro with DROs only with buttons.
So you must place a button with VB-Script function on your screen and
have to place your code there...


Greetings from Germany,

Wolfram

39
General Mach Discussion / MPG-Mode Question..
« on: December 08, 2006, 05:53:00 PM »
Hi,

I`ve a little bit problems to understand the MPG movement modes... ???

In velocity mode my axis runs in dependance of my turning speed - ? ok!

In step / velocity mode my axis moves at lower turning speed with the set step-size from cycle step mode?
At higher speed it switched to velocity mode, as calibrated or set in MPG-Setup.

But my steps are independant of the cycle steps setting and not fine enough to touch a surface or an edge..
My settings are 4 Imp / detent, vel 100, 40%..

Whats wrong??


The single / Multistep modes are ok, but to slow to jog over the whole table..


Thanks and Greetings,

Wolfram



40
General Mach Discussion / Toolpath in Lathe-Mode
« on: December 07, 2006, 01:20:10 PM »
Hi,

I have a really simple question....

How can I rotate the toolpath display in turning screens?

Ive checked the video, but with left mouse button and moving the displays will be zoomed in and out,
with right mouse button it will be panned.....

Nor shift and Ctrl combination will work too....

Thanks for a short hint...

Wolfram




Pages: « 1 2 3 4 5 6 »