CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Machine Controllers Software and Solutions > G-Code Programing


G-Code Programing Discuss G-code programing and problems here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 05-01-2006, 05:25 PM
 
Join Date: Dec 2004
Location: USA
Posts: 26
NickLatech is on a distinguished road
3 holes to drill, I'm looking for a simple and free cad program

I'm finally getting to use my miniCNC machine, I have three holes to drill on a panel(s). I havnt used the machine in a year and I forgot which CAD software I used. I know I downloaded way too many and would like to keep from repeating the process again.

Does anyone have a recommendation on which CAD software to use for a simple and free software for my small 3 hole drill project. The software needs to output G code.

Thanks
Nick
Reply With Quote

  #2  
Old 05-02-2006, 09:46 AM
Rekd's Avatar
Community Moderator
 
Join Date: Apr 2003
Location: teh Debug Window
Posts: 1,877
Rekd is on a distinguished road

Pencil Cad is pretty good for doing 3 holes. (I think there's an upgrade to Keyboard Cad).

J/k,

You might find something here at CNCzone, or perhaps http://www.freebyte.com/cad/cadcam.htm#cadcamsystems
__________________
Matt
San Diego, Ca

___ o o o_
[l_,[_____],
l---L - □lllllll□-
( )_) ( )_)--)_)

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #3   Ban this user!
Old 05-24-2006, 04:26 AM
 
Join Date: May 2006
Location: usa
Posts: 27
Jeff Roark is on a distinguished road
Thumbs up Check out Simple CNC

Simple CNC is only $35.00 and you get free upgrades. Check it out @

http://www.datawise.net/~jorenr/cnc/..._home_page.htm

Fillout a form and "Make G-Code" Really easy for anyone to use. It is not a CAD program. Vertually no learning curve.


Last edited by Jeff Roark; 05-24-2006 at 04:28 AM. Reason: Add image
Reply With Quote

  #4  
Old 06-19-2006, 02:00 AM
tobyaxis's Avatar
Moderator
 
Join Date: Jan 2006
Location: USA
Posts: 4,396
tobyaxis is on a distinguished road
Lightbulb

Try the Machinery's Handbook under Jig Boring.

That is always a good reference that at least someone has to have.

tobyaxis
Reply With Quote

  #5   Ban this user!
Old 06-19-2006, 03:43 AM
rhino's Avatar  
Join Date: Oct 2005
Location: Australia
Age: 29
Posts: 159
rhino is on a distinguished road
why a cad program?

here is a scan of my black book:
please find it attached.
Attached Thumbnails
Click image for larger version

Name:	bolthole circle.jpg‎
Views:	128
Size:	9.9 KB
ID:	19044  
__________________
On the other hand, You have different fingers.
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 06-20-2006, 08:20 AM
 
Join Date: Jun 2005
Location: USA
Posts: 180
rweatherly is on a distinguished road

I have been making some generic G Code generators to machine simple designs. Attached is an Excel file that will generate code to drill based on a list of X,Y coordinates. You may want to try it.
Attached Files
File Type: xls GCodeGen_Drill.xls‎ (37.0 KB, 249 views)
Reply With Quote

  #7   Ban this user!
Old 09-24-2007, 08:03 AM
 
Join Date: May 2006
Location: usa
Posts: 27
Jeff Roark is on a distinguished road
Simple CNC Programming

Simple CNC can now be found at:
www.simplecnc.com

Last edited by Jeff Roark; 09-24-2007 at 08:12 AM. Reason: Added Oicture
Reply With Quote

  #8   Ban this user!
Old 09-24-2007, 01:59 PM
gar gar is offline
 
Join Date: Mar 2005
Location: USA
Posts: 1,498
gar is on a distinguished road

070924-1456 EST USA

Learn to write your own G-code.

You need a fundamental understanding of your machine. It is always important to know the basics of any system. Then later when it makes sense to use a program to generate your G-code you will be in a better position to troubleshoot problems.

.
Reply With Quote

  #9   Ban this user!
Old 09-24-2007, 06:39 PM
 
Join Date: May 2006
Location: usa
Posts: 27
Jeff Roark is on a distinguished road
G-Code by hand or with software?

I certainly appreciate the position of learning to write your own g code programs.
There are different people out there with different wants, needs and aspirations. Some may like to learn a programming language to make parts on their CNC machine and others might want to use software to make parts. The great think is there are options out there for everyone.
Reply With Quote

  #10   Ban this user!
Old 09-24-2007, 08:21 PM
gar gar is offline
 
Join Date: Mar 2005
Location: USA
Posts: 1,498
gar is on a distinguished road

070924-1925 EST USA

Jeff:

What I am suggesting is that one start learning from a low level rather than trying to jump in at some high level point. I am not arguing that you do or do not use CAM. However, in some simple or production problems CAM may not be the best solution. Even in some complex applications you might use CAM for part of the job and wrap some hand generated G-code around the CAM code. But you need to know G-code to do this.

An example: Put someone in a differential equations course with only basic arithmetic skills. Maybe you can teach them to follow some rules and solve some problems, but that person will lack the background to understand what they are doing to attack any general problem. A basic understanding of differential and integral calculus can be very enlightening relative to many problems.

Without a good background in basics in any field you are at a great disadvantage in solving many problems.

In another thread somewhere an individual was trying to use ohms law or a power equation to prove there was no advantage in high voltage distribution of power. By a lack of background and understanding of basic electrical circuit theory he came to an incorrect conclusion.

I am not against CAM but in this case I think Nick should start and directly write the G-code.

If there is a canned cycle for drilling in his machine then it is quite possible that something like this might work:

G81 is a canned drill cycle, and M97 is a local subroutine call.

O0230

Start up stuff

Tool 1 change stuff for starter drill
G81 Z-0.05 R 0.1 L0
M97 P1000

Tool 2 change stuff for drill
G81 Z-0.75 R 0.1 L0
M97 P1000

Tool 3 for reamer
G81 Z-0.75 R 0.1 L0
M97 P1000

Tool 4 for chamfer drill
G81 Z-0.15 R0.1 L0
M97 P1000

M00 Z 4.0

M30

Other parameters are most likely needed but this is a sufficient outline.



N1000 (subroutine of the three points)
X 1. Y1.
X 2. Y 2.5
X 0. Y 4.0
M99


If I wanted 10 holes then I only need to put their locations in the one subroutine. Or if a hole position needs changing it is only one position.

If there are other similar applications, then this basic program with modification can be used.

Maybe some other stuff is required depending upon job requirements.

I do my tool changes with a G65 and parameters. It is simple and you can easily read what is being done without a lot of clutter.

.
Reply With Quote

Sponsored Links
  #11  
Old 09-24-2007, 08:44 PM
dertsap's Avatar
Gold Member
 
Join Date: Oct 2005
Location: canada
Posts: 3,667
dertsap is on a distinguished road
Buy me a Beer?

simple g code understanding is a necessity ,
it would be stupid and dangerous to press cycle start on a setup that a guy doesn t understand what the code is doing ,its like letting a blind person drive
i personally don t see how it could be difficult to create a g code prog to drill three simple holes , software takes more time than i can to code it in ,but i had to learn how to do that , g code doesn t come naturally it needs to be understood to make it work properly
bottom line is anyone that doesn t understand it should learn it before they destroy their machine or seriously hurt themselves

if software is what you need , you can download mach 3 for free and the wizzards will produce g code just the same as simple cnc
Reply With Quote

  #12   Ban this user!
Old 09-25-2007, 06:05 PM
 
Join Date: Feb 2007
Location: Greece
Posts: 41
S.Kontogiannis is on a distinguished road
Free CAD/CAM

I absolutyely agree that understanding g-code is a must.
But I would also like to suggest GSIMPLE (I am the author) which is a completely free CAD/CAM for 3 axis mills (suitable for most simple tasks) and can be downloaded at http://www.gsimple.eu. GSimple is very easy to learn and use. On the web site there are some examples. The first one is making a simple drill. Making three or ten drills is almost as easy.

I also believe that a simple CAM like Gsimple can help people get familiar with gcode programming. You can see a ready made code (gsimple produces a readable code with comments and test it by running it on the screen (no tool crashes!). Gsimple will also let you edit the code (or rewriting it completely if you like) and then test it on the screen.
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 08:10 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361