2 axis plotter

2 axis FPGA plotter
  • 2 axis plotter
  • Stepper motors
  • FPGA control
  • Data from PC with C# over RS232

This plotter is drawing a castle.

C# application is sending XY coordinates to the FPGA.

FPGA is controlling two stepper motors.


This is a companion discussion topic for the original entry at https://community.robotshop.com/robots/show/2-axis-plotter

Screen -> Printer

Would be nice to know how you go from an image on the screen to printing it.

For now images are

For now images are hard-coded as sets of points.

On many of theses projects,

On many of theses projects, the software to accept some sort of drawing format is the main challenge. G-code seems to be the main format to use. You can use the free Inkscape program to convert raster images to vector format, and then that to G-code.

But of course, you need your software to accept the G-code data, and translate that to the motormovements.

-Joe

Thank you for advice.

Thank you for advice.