Display_OLED_2in23_128x32

OLED 128x32 pixel panel 2.23 inch with 24-pin flex

Category: Display

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
  "Display_OLED_2in23_128x32"
  (version 20240108)
  (generator turbocaseweb)
  (descr "OLED 128x32 pixel panel 2.23 inch with 24-pin flex")
  (attr board_only exclude_from_pos_files exclude_from_bom allow_missing_courtyard)
  (zone_connect 0)
  (
    property
    "TurboCaseModule"
    "eJytUctugzAQvPMVlnoBxZB4SapUKLf0VqkfUCFEiFssERMZo7aq+Pc6+FEHJUoPWbjseHd2dufQ7vuGoi3rjk35Xby+PG8LYBzSgsD6K4Wi63edFGUlwwj9BEjFJ9vLGm3QI2RjXlP2UUsFwFIDZVnYmtXKQa6MpAlxqGyPCkpd3tD3U02aLJ80pmbzriklDd8WGKmfcU6FYcujseYUPWctdxpteN1xOIqaQzQzczCKQ81jQCVGjfBIbVT9TjHYvfDfOhileZRdG6kFx+QC44OmNHyWDHKMKsolFRspeuoxD8EQBIcbZv3fIsNUtUId8+xq/sVA64eJfi2dAFafv/2kNSbXmwGrR9c83NlpY3S8SMDedg6zMbvorrlCFpw9iVZ6Ysh62nrficrgX1b052o="
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "a80dc404-d448-461d-ba15-405238b263bf")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    property
    "TurboCaseAdd"
    "Display_OLED_2in23_128x32()"
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "5ab10790-3ca3-4906-8636-b3bf352902f5")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    property
    "TurboCaseSub"
    "Display_OLED_2in23_128x32_substract()"
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "03d4d3fd-784a-45d5-a39e-547226eecc11")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    property
    "TurboCaseHeight"
    "2"
    (at 0 0 0)
    (unlocked yes)
    (layer "F.SilkS")
    (hide yes)
    (uuid "bb72144b-99e3-4424-bc27-6c2c4831e84c")
    (
      effects
      (
        font
        (size 1 1)
        (thickness 0.1)
      )
    )
  )
  (
    fp_rect
    (start -31.0 -12.0)
    (end 31.0 12.0)
    (
      stroke
      (width 0.2)
      (type default)
    )
    (fill none)
    (layer "User.7")
    (uuid "bbafa869-1b3f-4916-aa12-50794460ac8d")
  )
  (
    fp_rect
    (start -27.509999999999998 -9.0)
    (end 27.490000000000002 4.1)
    (
      stroke
      (width 0.2)
      (type default)
    )
    (fill none)
    (layer "User.7")
    (uuid "2a03ad4f-d9ea-4303-b765-e2d7c9afc84c")
  )
  (
    fp_rect
    (start -6.25 12.0)
    (end 6.25 22.0)
    (
      stroke
      (width 0.2)
      (type default)
    )
    (fill none)
    (layer "User.7")
    (uuid "ae044d54-d85c-49d1-9fb8-eef3fa462637")
  )
  (
    fp_line
    (start -6.25 12.0)
    (end -6.25 -22.0)
    (
      stroke
      (width 0.2)
      (type dot)
    )
    (layer "User.7")
    (uuid "e9c4920d-f699-48b1-9a46-83f623be224b")
  )
  (
    fp_line
    (start 6.25 12.0)
    (end 6.25 -22.0)
    (
      stroke
      (width 0.2)
      (type dot)
    )
    (layer "User.7")
    (uuid "cfef668c-f86a-4efc-92eb-8359c1dfdf34")
  )
)

The OpenSCAD code

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

module Display_OLED_2in23_128x32_substract() {
    width = 62;
    height = 24;
    aa_width = 55;
    aa_height = 13.1;
    aa_top = 3;
    aa_left = 3.49;
    translate([0, 0, inner_height])
        union() {
            translate([-(width/2)+aa_left, -(height/2)+aa_top, 0])
                cube([aa_width, aa_height, 3]);
            translate([0, 0, -1])
                #cube([width, height, 2], center=true);
        }
}

module Display_OLED_2in23_128x32() {
    width = 62;
    height = 24;
    module corner() {
        translate([-2, 0, -2])
            cube([12,2,2]);
        translate([-2, -10, -2])
            cube([2,10,2]);
    }
    translate([0, 0, inner_height])
        union() {
            translate([-width/2-0.2, height/2+0.2, 0])
                corner();

            rotate([0, 0, 180])
            translate([-width/2-0.2, height/2+0.2, 0])
                corner();

        }
}