stl to g-code

10 visualizzazioni (ultimi 30 giorni)
Vincent I
Vincent I il 22 Apr 2013
Hi, I would like to build a 3d printer for my senior project design using an ramps 1.4 controlled by matlab. however all the searching that I have done so far I was unable to find any info on how to control the ramps via matlab.
I was wondering if anyone has any experience or idea if this could be done?
And is it possible to convert stl file to g-code?
Thank you Vincent
  1 Commento
Karim Yahyaoui
Karim Yahyaoui il 5 Mar 2016
Hi Vincent, I would like to know if you found anything about this. Thank you.

Accedi per commentare.

Risposte (1)

Thomas Llewellyn-Jones
Thomas Llewellyn-Jones il 4 Mag 2016
Controlling a Ramps board or similar is a case of creating a serial object in Matlab and then simply writing g-code line by line to the controller, eg.
serialobject=serial('COM1','BaudRate',250000);
fopen(serialobject);
Replace 'COM1' and 250000 with the relevant values for your board port (which can be found in device manager or through INSTRFIND) and baudrate. After this to send g-code commands just use fprintf,
fprintf(serialobject,'G1 X10 \n');
Dont forget the new line terminator or the Ramps board wont recognise the end of the command. In terms of generating gcode files it is best to use an available slicer (Cura, Slic3r, MatterControl etc) or write a script for your own purposes. Hope this helps.

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by