DonWard / electronic-leadscrew

Lathe electronic leadscrew controller

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Clough42 Lathe Electronic Leadscrew Controller

This is the firmware for an experimental lathe electronic leadscrew controller. The goal is to replace the change gears or gearbox on a metalworking lathe with a stepper motor controlled electronically based on an encoder on the lathe spindle. The electronic controller allows setting different virtual gear ratios for feeds and threading.

Project Status

Design and prototyping.

Current Concept

The project is still in the early stages of development. The current hardware looks like this:

  • Use a TI F280049C Piccolo microcontroller on a LaunchXL prototyping board
  • Use an inexpensive SPI "LED&Key" import display and keypad for the user interface
  • Read the spindle position using a rotary encoder with a 3D-printed gear
  • Use a standard stepper motor and driver on the lathe leadscrew
  • Make as few modifications to the lathe as possible:
    • Use the original leadscrew and halfnuts without machining
    • Drive the leadscrew through the factory input shaft
    • Drive the encoder from the factory spindle gear train
    • Make it easy to restore the lathe to the original change gear configuration

The current plan is to support the following operations:

  • Multiple feeds in thousandths of an inch per revolution
  • Multiple feeds in hundredths of a millimeter per revolution
  • Multiple imperial thread pitches (in threads-per-inch)
  • Multiple metric thread pitches (in millimeters)

Future Goals

While this project is starting out as a simple gearbox replacement, some features seem attractive, even for that simple case:

  • Threading/feeding up to a hard shoulder with automatic stop
  • Automatic recall and resync with hybrid threads (e.g. metric threads on an imperial leadscrew)

Non-Goals

This is not a CNC project. The goal is not to control the lathe automatically, but rather to transparently replace the lathe change gears or quick-change gearbox with an electronic virtual gearbox that can be quickly set to almost any ratio. The lathe will continue to operate normally, with the operator closing and opening the half-nuts to control feeding and threading.

Hardware Configuration

If you want to get this running on your own LaunchXL-F280049C board, here are the settings you will need:

Physical Switches

The LaunchXL-F280049C has a number of switches on the board to configure the GPIO and peripheral signal routing. This provides lots of flexibility for different uses of the board, but it means that you will have to change some of the switches from their defaults in order to use the GPIO pins and eQEP periperals.

These are the required switch settings

  • S3.1 = 0 Connects eQEP1 to J12
  • S3.2 = 0 Connects eQEP2 to J13
  • S4 = 1 Connects eQEP1 to J12
  • S9 = 1 (default) -- Connects GPIO32/33 to BoosterPack site 2 pins

S6 and S8 can be in any position. 0 is the default.

External Connections

The firmware assumes the following pins are connected externally.

NOTE: the silkscreen on the LaunchXL-F280049C board has the labels for J6 and J8 swapped. J6 is the header closest to the edge of the board.

Encoder

A quadrature encoder for the spindle is connected to the eQEP connector, J12.

Stepper Driver

A Step-direction stepper motor driver should be connected to the following GPIO pins:

  • GPIO0 (J8 pin 80) - Step
  • GPIO1 (J8 pin 79) - Direction
  • GPIO6 (J8 pin 78) - Enable

Control Panel

The LED&KEY control panel board must be connected through a bidirectional level converter, since it is a 5V device, and the TI microcontroller is a 3.3V device. A standard BSS138-based converter works well.

  • GPIO24 (J6 pin 55) - DIO
  • GPIO32 (J8 pin 71) - CLK
  • GPIO33 (J6 pin 53) - STB (chip select)

Debugging Outputs

In addition to the control wires for the hardware, the firmware also outputs signals on two additional GPIO pins to allow timing of the interrupt and loop routines. An oscilloscope or logic analyzer may be connected to these pins to debug and time the ISR routines:

  • GPIO7 (J8 pin 77) - Main state machine ISR
  • GPIO2 (J8 pin 76) - Secondary control panel loop

About

Lathe electronic leadscrew controller

License:MIT License


Languages

Language:C 56.8%Language:C++ 38.7%Language:Batchfile 1.9%Language:Assembly 1.8%Language:Objective-C 0.8%