Skip to main content

V-Plotter

The basic idea of the v-plotter is 
that lines can be drawn as needed with only 2 motors and a pen attached to a cable connected to the motors. As each motor moves the pen travels the arc around the other motor. By interleaving movements of both motors any graph can be drawn. 

For this project I used a Raspberry Pi, 2 stepper motors, and 2 stepper motor drivers. The code is written in Python and runs on the Pi.








Comments

Popular posts from this blog

ESP MicroPython 16x2 LCD

   Install MicroPython on Wemos D1 Mini https://www.wemos.cc/en/latest/tutorials/d1/get_started_with_micropython_d1.html  https://micropython.org/download/esp8266/ Command line method of flashing MicroPython bin file (firmware): esptool.py --port PORT_NAME erase_flash esptool.py --port PORT_NAME --baud 1000000 write_flash --flash_size = 4MB -fm dio 0 FIRMWARE.bin   uPyCraft method of flashing MicroPython bin file (firmware):  https://how2electronics.com/esp32-micropython-upycraft-getting-started/