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 > General CNC (Mill and Lathe) Control Software (NC) > Group Projects


Group Projects This forums is where things can be ironed out, tasks allocated, task feedback made.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #49   Ban this user!
Old 12-12-2005, 03:44 AM
 
Join Date: Jun 2005
Location: South Africa
Age: 57
Posts: 44
aubrey is on a distinguished road

Originally Posted by ESjaavik
Did not mean to start a religious war.
Don't worry, no offence taken!
I use windows all day every day and roundly curse it at least every hour.
Funny thing about democracy... Its the only "system" that by definition, allows other "systems" to also be acceptable.
Best
Reply With Quote

  #50   Ban this user!
Old 12-12-2005, 02:49 PM
Lionclaw's Avatar  
Join Date: Jan 2005
Location: USA
Posts: 253
Lionclaw is on a distinguished road

Has anyone considered using an FPGA? Check out this board for $99:

http://www.digilentinc.com/info/S3Board.cfm

It's just a matter of using the Xilinx tools to create the software. I just finished a course at cal state where we designed a 16-bit RISC processor and loaded it into the FPGA.

This thing is great too because it has VGA out and a PS/2 port. So you could have a monitor and keyboard.
__________________
Andy
CNC Kits - http://www.comptonsoft.com/cncweb/
Reply With Quote

Sponsored Links
  #51   Ban this user!
Old 05-22-2007, 02:59 PM
 
Join Date: Apr 2007
Location: USA
Posts: 1,314
harryn is on a distinguished road

Hi, I am looking for a (reasonably) economical way to run a "planned" 4 axis mill / router. (hobby use)

I am very tempted by Rhino, which is win based, so it would be handy of course to use the same computer for the control as well.

I found these motors

http://www.imshome.com/mdrive42acplus_mdi.html

which can plug right into a USB port and AC. IMS provides some control software (m code) as well.

I have no experience at all with G code / cnc yet, so wide open to various approaches. I am just curious if there is a way we can use something like this to simplify our life of making a CAD to CAM arrangement.
Reply With Quote

  #52   Ban this user!
Old 12-26-2007, 11:13 AM
 
Join Date: Sep 2006
Location: Pakistan
Posts: 2
MILLER_OF_DEE is on a distinguished road
Cool "Hardware" GCode interpreter

Hi Guys,

I have been watching you guys talking about G-Code Interpreter. Some one opting for DSP and some one for PIC, and of course some people being scary about PIC will not do, DSP will do, what about circular interpolation.

Good news for every one that I have implemented linear and circular interpolation in a PIC, yes PIC18F458/PIC18F452 running at 40MHz and I have made some STARS of various corners and aspect ratio, and some round shapes, rectangle with sharp corners, and recatngles with round corners too.
In both metric and inch units.

I will soon be posting the schematic and the test code in hex format for you guys to test. Once I finalize the main interface cause right now I have graphic LCD 128x64 KS0108 based controller, and a 4x3 keypad installed. I am going for 240x128 T6963C based LCD and some really serious input interface for it to represent my work piece.

Later I am planning to decode the following mostly used G-Codes in the
PIC18F458/452

G00 positioning (rapid traverse)
G01 linear interpolation (feed)
G02 circular Interpolation CW
G03 circular Interpolation CCW
G04 dwell, a programmed time delay
G20 input in inch
G21 input in mm
G90 absolute dimension input
G91 incremental dimension input

Till then
Regards for every body on CNCZONE
Reply With Quote

  #53   Ban this user!
Old 12-26-2007, 01:48 PM
 
Join Date: Apr 2005
Location: finland
Posts: 262
andy55 is on a distinguished road

An exact stop trajectory planner is not hard to implement using any hardware or software. By that I mean that the machine comes to a full stop at the end of each move, and so it also starts all moves from a full stop.

The trick (if you want to do 3D moldmaking or complex paths in general) is to make a trajectory planner that 'cuts corners' within a specified tolerance and keeps up the velocity of the machine. That is nontrivial, and I'd be delighted to look at any open-source implementations anyone has come up with. I've tried to understand how it's done in EMC2, but really going through the code and math requires more time than I have right now...
Reply With Quote

  #54   Ban this user!
Old 12-27-2007, 04:58 PM
 
Join Date: Sep 2006
Location: United States
Posts: 1
stephenbuck is on a distinguished road

This also sounds a lot like what the NCPod (www.oemtech.com/ncpod) does, although it seems to have been in beta testing for quite a long time. Does anyone know the status of the NCPod?
Reply With Quote

  #55   Ban this user!
Old 06-03-2008, 03:43 PM
 
Join Date: May 2008
Location: palestine
Posts: 1
mogamel is on a distinguished road

Hello all
nice to meet you
can any one provide me Processor Breakout Board ( pcb and schematich )
thank you
Reply With Quote

Sponsored Links
  #56   Ban this user!
Old 01-08-2011, 12:54 AM
James Newton's Avatar  
Join Date: May 2005
Location: USA
Posts: 756
James Newton is on a distinguished road
Buy me a Beer?

Ok, so I'm yet another guy who is interested in this idea. I've got some code partly done that does the 3 d line to step and direction thing, but also managing ramping and acceleration. The code is at
https://docs.google.com/document/d/1...t?hl=en&pli=1#

And I'd love to have some feedback on it.

If space and time allow, I'll add a very limited G code interpreter to it.
Reply With Quote

  #57   Ban this user!
Old 06-03-2011, 04:02 PM
 
Join Date: Jun 2011
Location: PAKISTAN
Posts: 1
ammarjaspal is on a distinguished road

Hi everyone,I am new to the forum.I am doing my final year project on CNC and i want some guide line from u guyz.
1.Can g-code be converted to hex file?
2.And if so than which microcontroller is best to use(PIC or AVR)
Reply With Quote

  #58   Ban this user!
Old 06-03-2011, 06:15 PM
James Newton's Avatar  
Join Date: May 2005
Location: USA
Posts: 756
James Newton is on a distinguished road
Buy me a Beer?

Originally Posted by ammarjaspal View Post
Hi everyone,I am new to the forum.I am doing my final year project on CNC and i want some guide line from u guyz.
1.Can g-code be converted to hex file?
2.And if so than which microcontroller is best to use(PIC or AVR)
You appear to be confusing data (g-code) with program/firmware (for uC) with data format (hex file). g-code, like any ASCII text, could easily be converted to a hex format:
techref.massmind.org/techref/ascii.htm
but that wouldn't do anything for a uC unless you find a program to load into the uC (usually in hex format) which can interpret the g-code and signal drivers to drive motor to move a CNC machine.

This page might link to what you are looking for (in the "See also" section)
techref.massmind.org/techref/io/embeddedCNCs.htm
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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Autocad to gcode JamesMI Autodesk Software (Autocad, Inventor etc) 17 12-02-2011 02:54 AM
turbocnc and cams gcode Lu_ca TurboCNC 1 07-12-2006 06:50 AM
Is it possible to get a gcode into Rhino MrBean Rhino 3D 11 04-03-2005 07:41 AM
gcode to gcode converter july_favre General CAM Discussion 4 05-24-2004 06:51 PM
Gcode verify autocad plugin balsaman General CAM Discussion 1 10-31-2003 11:22 AM




All times are GMT -5. The time now is 06:20 AM.





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