Hello All,
I’m new to the forum and to CNC. I’m trying to get a 3d Probe to scan a part and create a point cloud file. I’m running UCcnc 1.2113 with AutolevelerCA 1.0049.
I created my dummy tool path file in VCarve. I run UCcnc, set AutolevelerCA to Create, load the tool path file, send to UCcnc, and run the cycle. It scans the part, and just stops at the end. No point cloud file is created.
UCcnc didn’t come with a M331.txt macro so I made one from the screen shot at 20:26 in https://www.youtube.com/watch?v=yJhWasl8QYw. That really looked like it would create the file, but it doesn’t. Here’s the contents of the file:
/////////////////////
//M331 probing macro
double Zmin = (double)Evar;
double Frate = (double)Qvar;
exec.Code("G31 Z" + Zmin + " F" + Frate); // Move to the probe sensor down
while(exec.IsMoving()){}
exec.Wait(100);
exec.ivars[999] = exec.GetZpos(); //store touch Zpos to #999
//Write one string to a text file
string text = "" +AS3.Getfield(226) + ";" + AS3.Getfield(227) + ";" + AS3.Getfield(228);
System.IO.File.AppendAllText(@"C:\UCCNC\Objectprobe.txt", text+ Environment.NewLine);
/////////////////////
I’ve installed the three files in the locations that Cahit specified. Can someone please help me with this? Thanks -
Mike (DoolinGuitars)