null
Image 1

30 Connection 22 AWG .187" Ground Daisy Chain Wire

×
Rating
Price:
$8.95 (USD)
SKU
30-CDAISYWIRE-187
Weight
1.48 Ounces
Availability
Usually ships within 1-2 business days
Shipping
Calculated at checkout
Max Qty
12 unit(s)

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

Quantity:
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    Signal wire connects from your button to your joystick controller to your or arcade cabinet motherboard.  A ground wire accompanies it to regulate electricity so you or another source doesn't become part of the conduction.  Unlike signal wires which must be separated to reflect the exact button being pressed, ground wires can be daisy-chained together.  This solution is now available as a 22 AWG 30 connection wire.

    Each connection point contains a .187 quick disconnect and nylon sleeve. With 30pcs, you have enough connections to wire three 8-button configurations, or four 6-button layouts. The wire can be cut in a number or ways to accomodate your project.  The end wire is over 2 feet long, which can be cut if not needed or requires resizing.

  • Product Reviews

    ×

    Write A Review

    1. Quality wires, does exactly what wires would do.

      I often buy .110 and .187 Ground / Signal wires from FA all the time. The products are quality and do as they're meant to do, having the sleeves on the quick disconnects is a major plus, I intend to purchase more of these wires over the years. Keep up the good products FA! on Dec 29th 2019

    2. Very good product

      The wires fit perfect and they are plenty long enough for the job on Jan 10th 2019

  • 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; } } }