null
Image 1

Seimitsu LS-40-SC-K (.187" Fastener Type) Joystick with RE Plate

×

Sorry but this item is currently unavailable.

Please check back at a later stage.

Rating
Price:
$29.75 (USD)
SKU
SEIMITSU-LS-40-SC-K
Weight
6.76 Ounces
Availability
Ships within 1-2 business days
Shipping
Calculated at checkout
Max Qty
4 unit(s)

Why is there a quantity limit? Learn more. new-window-icon.png

Current Stock
We're sorry. This product is currently sold out.

Choose Your Options

 
 
 
 
 
 
 
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    The Seimitsu LS-40 is highly desired amongst Neo Geo fans, especially those who own the Japanese candy cab.  The fastener type differs from the LS-40-01 PCB type in that it connects to .187 quick disconnect, which are common in arcade cabinets.  The LS-40 and LS-40-01 have the following characteristics

    • Shortest throw distance
    • Shortest engage distance.
    • Soft, sensitive spring like the Sanwa JLF.
    • Comes with square gate only.
    • Small "deadzone"


    Compatible with Seimtsu LB-35 balltops, LB-39 bubbletops, color shaft and dustwasher sets

    You can find plenty of color customization options for the LS-56.  Now available are Seimitsu solid and translucent color shaft and dustwasher sets, plus solid color LB-35 bubbletops, and translucent LB-39 bubbletops.  Use these to swap the default black up to 7 solid color and 10 translucent colors accessories.

    RE Plate installed. Compatible with LS-32 SS Plate 

    The Seimitsu LS-40 is about the same size as the Seimitsu LS-32, and comes with the RE plate installed.  If you intend to install into a Fightstick, you will likely need the Seimitsu SS Mounting Plate for LS-32, LS-40.
     
    Important

    Not sure how to install the LS series color shaft cover? Click here for help.

  • Product Reviews

    ×

    Write A Review

    1. Great Joystick

      I've bought a few of these to fit into both arcade control panels and fight sticks as my preferred joystick. It feels great and is responsive - can't think of anything better or worse to say about it. Always a good time fitting a cool ball on top too. Yeah, recommended. on Mar 6th 2025

  • Find Similar Products by Category

×
×
// HTML Table Sorting let sortDirection = {}; // Keep track of the sort direction for each column function sortTableByColumn(columnIndex, type) { const table = document.getElementById("sortableTable"); let rows, switching, i, x, y, shouldSwitch; switching = true; // Set the sorting direction to ascending or flip it if already sorting this column let direction = sortDirection[columnIndex] === "asc" ? "desc" : "asc"; sortDirection[columnIndex] = direction; // Store the new direction while (switching) { switching = false; rows = table.rows; // Loop through all table rows (except the first, which contains table headers): for (i = 1; i < (rows.length - 1); i++) { shouldSwitch = false; // Get the two elements you want to compare, one from current row and one from the next: x = rows[i].getElementsByTagName("TD")[columnIndex]; y = rows[i + 1].getElementsByTagName("TD")[columnIndex]; let xContent = x.innerHTML.toLowerCase(); let yContent = y.innerHTML.toLowerCase(); // Type conversion for numeric sort if (type === 'number') { xContent = parseFloat(xContent) || 0; yContent = parseFloat(yContent) || 0; } // Check if the two rows should switch place: if (direction === "asc") { if (xContent > yContent) { shouldSwitch = true; break; } } else if (direction === "desc") { if (xContent < yContent) { shouldSwitch = true; break; } } } if (shouldSwitch) { // If a switch has been marked, make the switch and mark that a switch is done: rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; } } }