Hello Guest it is April 25, 2024, 07:00:00 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 - ymsio

Pages: 1
1
General Mach Discussion / Re: Anyone use "Import DFX's" before?
« on: August 08, 2009, 12:40:06 AM »
Hi, Ymsio

I think it's built into mach3.184.000, I used ver 184 to generate pic below in ver MachR3.042.029 and it loaded.

Have you tried LazyCam, You should give it a try.

Chip

Hi, Chip.
I have tried LazyCam b4, but I prefer to use the "Import DFX's" function.
I will say that function is easier than lazycam. any idea to ectract this function for new version? :o
Thanks.

2
General Mach Discussion / Anyone use "Import DFX's" before?
« on: August 05, 2009, 10:43:14 PM »
I used Mach3 R1.84.000 before, "Import DFX's" is a really good function to me.
Could I take out this function from older mach3 to new version mach3?


Thanks.

3
General Mach Discussion / Re: high speed problem...
« on: July 28, 2009, 12:16:14 AM »
"exact stop mode" solve my problem. Thanks all.

4
General Mach Discussion / Re: high speed problem...
« on: July 26, 2009, 10:07:45 PM »
Probably because you're running a relatively high feedrate, with a relatively low acceleration.  When running in constant velocity mode, something's gotta give, and it's sharp corners.  Either increase acceleration, or decrease feedrate.  I believe using exact stop mode will also cure that, but at a cost....

Regards,
Ray L.

Hi HimyKabibble,
Firstly, thanks for reply.
of cos, I wish to increase feedrate. Otherwise I have to spend more than 6 hours to complete a workpiece(due to thousand lines to run)!
So, as you mentioned, to increase acceleration in mach3? or do I need to adjust servo motor's parameter too?

Thanks again.

5
General Mach Discussion / high speed problem...
« on: July 26, 2009, 09:23:39 PM »
Hi,

I have a problem is that when I tried to increase feedrate to 2000, the angles will become radians...



each x,y&z uses same size AC servo & ball-screw.

is any setting wrong? ???

Thanks.

G code as below:
(File a )
(Monday, July 27, 2009)
G90G80G49
G0 Z0.0000
G90.1
G0 Z0.0000
M5
M6T1
M3
S2000
G0 Z0.0000
G0 X16.8291 Y5.3868
M3
F300.000G1 Z-2.0000
F2000.000G1 X44.6850 Y5.3868
G1 X44.6850 Y38.5996
G1 X16.8291 Y38.5996
G1 X16.8291 Y5.3868
G0 Z0.0000
G0 X58.8161 Y44.1707
F300.000 G1 Z-2.0000
F2000.000 G2 X58.8161 Y44.1707 I71.2552 j44.1707
G0 Z0.0000
G0 X66.7554 Y74.1694
F300.000G1 Z-2.0000
F2000.000G1 X30.9714 Y68.8125
G1 X47.8991 Y93.8827
G1 X66.7554 Y74.1694
M5
G0 Z0.0000
G0 X0 Y0
M5M30

6
General Mach Discussion / Re: write wizard syntax error.
« on: July 11, 2007, 08:22:20 PM »
Open Mach, go to the tab at the top, operator, vb script editor. I think this is what you need.

Brett

Yes, Brett. I know how to do that. By the way, what file I need to open and edit in VB script editor?? coz I don't see any script file in the wirte wizard folder, ie C:\Mach3\Addons\Write. I am not too sure that I can edit a .set (screen) file in the VB script editor... ??? I had opened the write.set file by using the mach3 screen editor, all the buttons code had been modiflied also. The input was not problem already, but other problems would come out!! :-[?Brett, could to tell me what file I shuold open and edit in VB script editor??


You need to open the Macro and edit it, You can't edit and save if it pops up in the ERRROR window... there is no path to save the data too :(

That should do it!

Thanks
Brian


Brian, the "Macro" that you mentioned is it VB script editor???

Thanks for you all alot......;)

7
General Mach Discussion / Re: write wizard syntax error.
« on: July 10, 2007, 08:56:03 PM »
Thanks Brian,  :)
but how to do it?? I am not too sure...coz I am quite new  :-[
could you teach me how to open the Macro?

thanks again.

8
General Mach Discussion / Re: write wizard syntax error.
« on: July 09, 2007, 10:15:13 PM »
when I input any character, the syntax error will appear here VB script.

========================================================
Texto=""
Letra1 = Array ("1","2","3","4","5","6","7","8","9","0")
Letra2 = Array ("Q","W","E","R","T","Y","U","I","O","P")
Letra3 = Array ("A","S","D","F","G","H","J","K","L","?)        <====less a "??
Letra4 = Array ("Z","X","C","V","B","N","M","+","-"," ")
Letra5 = Array ("q", "w","e","r","t","y","u","i","o","p")
Letra6 = Array ("a","s","d","f","g","h","j","k","l","?)            <====less a "??
Letra7 = Array ("z","x","c","v","b","n","m",",",".","?")
Letra8 = Array ("?,"/","\","=","_",":",";","$","&&","(")        <====less a "??
Letra9 = Array (")","""","%","*","?,"?,">","<","I")             <====I am not too sure...

Total = GetVar(1500) + 1
Call SetVar(1500 + Total, 1)
If Total > 57 Then Total = 57
Call SetVar(1500, Total)
For J = 1 To Total
  Clave = GetVar(1500 + J)
  Select Case Clave
    Case  1,2,3,4,5,6,7,8,9,10
      Letra = Letra1(Clave-1)
    Case  11,12,13,14,15,16,17,18,19,20
      Letra = Letra2(Clave-11)
    Case  21,22,23,24,25,26,27,28,29,30
      Letra = Letra3(Clave-21)
    Case  31,32,33,34,35,36,37,38,39,40
      Letra = Letra4(Clave-31)
    Case  41,42,43,44,45,46,47,48,49,50
      Letra = Letra5(Clave-41)
    Case  51,52,53,54,55,56,57,58,59,60
      Letra = Letra6(Clave-51)
    Case  61,62,63,64,65,66,67,68,69,70
      Letra = Letra7(Clave-61)
    Case  71,72,73,74,75,76,77,78,79,80
      Letra = Letra8(Clave-71)
    Case  Else
      Letra = Letra9(Clave-81)
  End Select
  Texto = Texto & Letra
Next
Call SetUserLabel(1, Texto)
======================================================
I chaged all correctly, but this error will occur again when I restart mach3 again!

9
General Mach Discussion / write wizard syntax error.
« on: July 05, 2007, 08:41:08 PM »
when I try to input character, a syntax error occur... :-[
how to solve it?? ??? ???
my MACH3 is Version R2.0.081

Pages: 1