null
Image 1

Neutrik NAUSB Surround and Support - Pink

×
Price:
$7.45 (USD)
SKU
BCADE-NAUSB-SAS-P
Weight
0.16 Ounces
Availability
Ships within 1-2 business days
Shipping
Calculated at checkout
Current Stock
1
Quantity:
Description
Reviews
Videos
Warranty
Other Details
  • Product Description

    Neutrik NAUSB is Sold Separately

    Photo is specifically for installation display purposes only.  Purchase Neutrik NAUSB Feedthrough here.


    For many, the Neutrik NAUSB Feedthrough is an essential component in their DIY build or commercial Fightstick modification. The NAUSB's durability is also required to ensure a solid connection from your controller to console via the reversed USB-B port. Buttercade offers both durability and style with the NAUSB Surround and Support (SAS).

    Two-Parts, One Solution

    The NAUSB SAS consists of two pieces - the first is a solid boot that surrounds the hardware, similar to the Neutrik SCDP Rubber Boot for NAUSB, NE8FDP. Its main difference Buttercade's model is a 3D printed plastic, giving much more deliberate support for the NAUSB.

    The second piece reinforces the port itself, surrounding itself with the same color plastic.  For all the times you may have accidentally jerked the USB cable from the port, this piece will keep the port from moving or loosening at all.

    Available in Several Colors

    To match your preferences, you can choose your SAS in the following colors:

    • Black
    • Blue
    • Gray
    • Green
    • Orange
    • Pink
    • Purple
    • Red
    • White
    • Yellow

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