Cutout_Neutrik_DSeries

Chassis hole for a Neutrik D Series panel mount connector

Category: Cutout

Using this part

This TurboCase prefab can be directly pasted into your KiCad PCB editor by using the copy button below. The code of the footprint is also shown here for reference. The footprint file can also be downloaded to be added to your own local footprint libraries.

Download footprint
(
  footprint
  "Cutout_Neutrik_DSeries"
  (version 20240108)
  (generator turbocaseweb)
  (descr "Chassis hole for a Neutrik D Series panel mount connector")
  (attr board_only exclude_from_pos_files exclude_from_bom allow_missing_courtyard)
  (zone_connect 0)
  (
    property
    "TurboCaseModule"
    "eJzLzU8pzUlVcC4tyS8tifdLLS0pysyOdwlOLcpMLY4vLk0qLilKTC7R0FSo5lIAgiIFWwUjI30jawivGMg11gPzwQJAxXnFOYklqRrRuqY6CgY6CkXahnqmsZoQ5fklYCmgsCUQG0CFQSC5MiczLyW1SMMQpAeINLGbqGtoqWehb6SjADRVG2g2mEeq8cUgjMMCFPN1KTO/lgsAkopZvA=="
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "926203a0-6ab5-4d16-b933-c23424169737")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    property
    "TurboCaseSub"
    "Cutout_Neutrik_DSeries_substract()"
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "cf9805ed-6ceb-4110-a678-753aa3ddf726")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    property
    "TurboCaseOffsetPCB"
    "yes"
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "d2e4bc96-9725-4e04-86d4-9680d92bacea")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    property
    "TurboCaseHeight"
    "26"
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "c5ac1e60-6a4c-4728-b1c8-1b332966b288")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    fp_rect
    (start -5.0 -11.5)
    (end 5.0 11.5)
    (
      stroke
      (width 0.2)
      (type default)
    )
    (fill none)
    (layer "User.6")
    (uuid "56a986bd-a026-4bfd-9773-7346401c79e4")
  )
  (
    fp_line
    (start -10 0)
    (end 10 0)
    (
      stroke
      (width 0.2)
      (type default)
    )
    (layer "User.6")
    (uuid "be427d10-0c84-416f-877c-99efce46090c")
  )
  (
    fp_text
    user
    "D Series front"
    (at -5.0 0 90)
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
      (justify bottom)
    )
    (layer "User.6")
    (uuid "db643637-871f-44ac-8e2b-8d2e0fe1b31b")
  )
)

The OpenSCAD code

This is the OpenSCAD code that will end up in your final case .scad file:

module Cutout_Neutrik_DSeries_substract() {
    r = 22/2;
    rs = 3.2/2;

    translate([-5, 0, r+1.5])
    rotate([0, 90, 0])
        cylinder(10, r, r);

    translate([-5, -19.8/2, 1.5+r+19.8/2])
    rotate([0, 90, 0])
        cylinder(10, rs, rs);

    translate([-5, 19.8/2, 1.5+r-19.8/2])
    rotate([0, 90, 0])
        cylinder(10, rs, rs);
}