Search found 65 matches

by srl
Thu Feb 06, 2014 10:49 am
Forum: QCAD/CAM
Topic: How do i configure CAM?
Replies: 21
Views: 44953

Re: How do i configure CAM?

All fine today on holidays at one of our Australian beaches near Sydney. Today I added start and direction custom properties and it works! Just added some code before going to export contour. Will test more and show it off next week. Maybe some how- to YouTube on G40-G42 is the way to go as there is...
by srl
Wed Feb 05, 2014 1:03 am
Forum: QCAD/CAM
Topic: How do i configure CAM?
Replies: 21
Views: 44953

Re: How do i configure CAM?

I've been adding custom property features to my config file, Z, g41 and g42 compensation. This is in addition to the layer name options including angle down after rapid to the next level. I'm away on holidays which has given me the time to do it but I can't real world test it yet, but the output cod...
by srl
Thu Jan 16, 2014 1:29 pm
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

My CAM config using layer names and variables

Here is my latest update for the new year. I've changed "cut", "safety" and "clear" set in the opening dialog to named variables instead of #numbers. This will make the gcode easier to read as rapids will stand out. Layers can still be assigned a number variable from #1 to #30. Any unassigned visibl...
by srl
Sun Dec 22, 2013 8:01 am
Forum: QCAD 'Script Add-On & Plug-in challenge' - Work in Progress
Topic: Request - Closed contour area mill path.
Replies: 2
Views: 17271

Re: Request - Closed contour area mill path.

Here is the example of what I wish. This all done manually.
This mill path uses my Cam config script with details in the layer names as you can see.
srl
by srl
Fri Nov 29, 2013 10:36 am
Forum: Chat
Topic: The World according to QCAD
Replies: 29
Views: 140886

Re: The World according to QCAD

Sydney -New South Wales - Australia.

srl
by srl
Wed Nov 20, 2013 4:02 am
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

Re: Layers and Offset codes.

Just done two things.

'#int 'Variables in frozen layer names are no longer added.
'Z float' A plain Z level can now be used in a layer name.
I used it to cut some things yesterday so it works.
DSC07904.JPG
DSC07904.JPG (65.13 KiB) Viewed 36206 times
No more Cam-Expert.
GCodesrl.js
(6.96 KiB) Downloaded 2775 times
Right click and save as.
srl
by srl
Sat Nov 16, 2013 4:35 am
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

Re: Layers and Offset codes.

Here is my offering for setting most things by the layer names. To test I use linuxcnc ruining on Virtual Box and a real machine. Use with caution, as I found out again! /* This is my LinuxCNC Gcode config file for the Qcad Cam add-on, can I remind you that the QCad add-on's are not "free" but only ...
by srl
Sun Oct 27, 2013 6:54 am
Forum: QCAD/CAM
Topic: Start Point of a Profile
Replies: 8
Views: 15533

Re: Start Point of a Profile

HI Andrew
As far I need is only a "Start" "0" or "1" , 0 or 1 for setting the path direction. Of course open contours will only need start at one end for you to set the direction. The rest we can put in the config file.


Thanks
Stephen.
by srl
Sun Oct 27, 2013 6:16 am
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

Re: Layers and Offset codes.

I've just got my config working on 3.4.2
This line in .getToolDownLevel has changed.

Code: Select all

 var layerValue = layer.getCustomProperty("QCADCAM","Cam/ZCutting", docValue);
Now I need to get entity custom values to over-ride those set in the layer name.

Stephen.
by srl
Tue Oct 22, 2013 3:02 am
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

Re: Layers and Offset codes.

So Tags would work very well as you have suggested. Could you have a "start" tag for setting the first entity? Tags could also have priority over the layer name for setting the Z depth. Here is a sample of what I'm up to. GCode.prototype.writeHeader = function() { this.writeLine("G10 L1 P1 R.5"); va...
by srl
Mon Oct 21, 2013 9:07 pm
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

Re: Layers and Offset codes.

Hi Andrew I've just finished my GCode.js last night. Well I thought I did as I already have some improvements of course. I have used one long contour for both programs, but your standard use (without rapids) also now works fine except for direction and offset on inner closed cuts. Of course I can't ...
by srl
Mon Oct 21, 2013 12:17 pm
Forum: Chat
Topic: What do people use QCAD for?
Replies: 53
Views: 607160

Re: What do people use QCAD for?

I've spent the last week and a bit on making the change to Qcad3-cam and its done, well a little bit of practical testing to go. I did a little C++ years ago and its come in handy. Boland C++ is long gone! Z variable setting to layer name as well as feedrate, rapid and G41-42 offset. It works on CNC...
by srl
Wed Oct 16, 2013 11:58 am
Forum: QCAD 'Script Add-On & Plug-in challenge' - Work in Progress
Topic: Request - Closed contour area mill path.
Replies: 2
Views: 17271

Request - Closed contour area mill path.

My dream script is to select a closed contour, enter a path spacing (tool width) and have a spiral path appear to the center. Only lines would be fine, any arcs around the outer could be finished manually. It would save me a lot of time on new designs. The maths involved is a bit beyond me. Thanks S...
by srl
Mon Oct 14, 2013 8:02 pm
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

Re: Layers and Offset codes.

My Camexport config was for one long contour and I remember it to being very limited in what you could do. I'm keen not to go back there! I've fixed the change Z (layer change) in a contour by adding this line to the prepareForCutting function. GCode.prototype.prepareForCutting = function() { // for...
by srl
Fri Oct 11, 2013 12:11 pm
Forum: QCAD/CAM
Topic: Layers and Offset codes.
Replies: 19
Views: 48464

Layers and Offset codes.

Hi Andrew The last few days I've been looking at the Cam-addon to replace my modified Cam expert. I can't get any new Z codes when there is a layer change in a contour. i played with the config file to prove that it was reading the depth. It's not detecting the change. Also how can we get the G40-42...

Go to advanced search