null
SZM-V16-2FA-83 microswitch

Starion Hinge Lever Microswitch (SZM-V16-2FA-83)

×
Price:
$1.95 (USD)
Brand
SKU
STARION-SZM-V16-SWITCH
Weight
0.94 Ounces
Availability
Ships within 1-2 business days
Shipping
Calculated at checkout
Max Qty
8 unit(s)

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

Quantity:
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    A departure from the common Gersung GSM-V1623A2 or popular GSM-V1623A3 microswitch is the Crown CWL-309MJ-BENYLIS-ST35 Joystick preference to the Starion SZM-V16-2FA-83 hinge-lever microswitch.  Enthusiasts within the Korean lever community say that it possesses similar overall characteristics of the A3 and actuation features of the Omron V microswitch, though more economically priced than either model.  If we look at the estimated specs of the Omron V model:

    • Operation force max: 1.23N (125gf)
    • Pre-travel max: 4.0mm
    • Movement differential max: 1.5mm
    • Over-travel min: 1.6mm
    • Operation point: 15.2mm ± 1.2mm
    • Release force max: 0.14N (14.3gf)

    Let's also look at the specs of the Gersung A3

    • Operation force max: rough estimated 1.76N (~180gf)
    • Pre-travel max: 4.0mm
    • Movement differential max: 1.5mm
    • Over-travel min: 1.6mm
    • Operation point: 15.2mm ± 1.2mm

    The Starion provides an approximate ~180gf feel or (300gf for the pin plunger model). The Omron family does not possess a 180gf equivalent microswitch.

    Compatible with Levers that use the Gersung GSM-V16 Series Microswitch

    The hinge-lever characteristic of the Starion microswitch will install in existing Korean joystick lever models that accept the Gersung GSM-V16 Series Microswitch, such as the:

     

    Thanks to Discord's ディープ・スロート for further information regarding Omron V and Starion differences.

  • Product Reviews

    ×

    This product hasn't received any reviews yet. Be the first to review this product!

    Write A Review

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