Page 1 sur 2

Jedicut and Arduino over USB

Posté : mer. févr. 29, 2012 9:29 am
par Scott Schering
Have anyone ever run or heard of Jedicut with an Adruino board over usb?

I know it's been done on an old Arduino but I'm having no luck finding any info on a usb interface.

Re: Jedicut and Arduino over USB

Posté : jeu. mars 01, 2012 9:37 pm
par Jerome
Do you have a link ? It's an interesting project !

I have a question in USB. What protocol do you want to use ?

Re: Jedicut and Arduino over USB

Posté : ven. mars 02, 2012 5:12 pm
par Scott Schering
The other cutter I was reading about that used Arduino turned out to be only using it for the timing signal and thermal control of the hot wire.
All the step/direction control was still done via the parallel port.

What I'm looking at now is loading reprap teacup firmware on my Arduino Mega
http://reprap.org/wiki/Teacup_Firmware

The Arduino would interpret g code on the board and run the steppers.. The g codefile is sent via serial connection to the Arduino.

Are there any plugins for Jedicut to export G code or do you think it's possible to port Jedicut jdc files to g code?

Is the cut path defined in the jdc file or is that only calculated when you start the cutting process?
If the path is defined in the jdc then it might be possible to re-write the teacup g code parser.

Re: Jedicut and Arduino over USB

Posté : sam. mars 03, 2012 10:31 am
par Jerome
The cut path is calculated when you start the cutting.

I think it's possible to rewrite g-code but you have to developp a new Jedicut plugin.

Re: Jedicut and Arduino over USB

Posté : lun. mars 05, 2012 4:50 am
par Scott Schering
Thanks for the info..
I'll study up on your DLL info and see if I can get some ideas on how to write a G code dll.

Re: Jedicut and Arduino over USB

Posté : lun. mars 05, 2012 4:15 pm
par doron
Where does one find the doc describing the DLL requirements and in/out interfaces ?
Is there such a doc ?
source code with English comments ?

Re: Jedicut and Arduino over USB

Posté : lun. mars 05, 2012 9:59 pm
par Jerome
Good idea Scott ;)

Re: Jedicut and Arduino over USB

Posté : lun. mars 05, 2012 9:59 pm
par Jerome
doron,

The only code you can find is on the Jedicut's extension project hosted by Google code.

I started to write a small documentation, only in french and it's not up to date. You can use Google Translate ;)
http://www.aeropassion.net/leblog/pages ... un-plug-in

Re: Jedicut and Arduino over USB

Posté : mar. mars 06, 2012 4:30 pm
par doron
using the google translate, I can not figure out where you pass the pin assigned from the GUI to the DLL. (i.e. x,x_dir,y,y_dir,,a,a_dir,b,b_dir,enebale etc...)
-D

Re: Jedicut and Arduino over USB

Posté : mar. mars 06, 2012 4:46 pm
par doron
Never mind.
Just found the UType unit in another directory.
-Thanks.