From d9d11834881f052455f3943e6196aaa15b0dd1a5 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 28 May 2025 16:57:48 -0500 Subject: [PATCH] remove old unsupported OLED mount/cutout/panel the mount/cutout wasn't in a sensible place in the only panel it appeared in for a while, so removing it for now until/unless there's a reason to do it better, but in all likelihood, I'll just keep reusing the adafruit one Signed-off-by: Brian S. Stephan --- src/components.scad | 12 ------------ ...ine-control-panel-with-mount-with-oled.scad | 18 ------------------ 2 files changed, 30 deletions(-) delete mode 100644 src/panels/overhang/right-sega-2p-nine-control-panel-with-mount-with-oled.scad diff --git a/src/components.scad b/src/components.scad index 33e79ba..acc41bc 100644 --- a/src/components.scad +++ b/src/components.scad @@ -107,18 +107,6 @@ module m2_mount_post() { } } -module oled_ssd1306_mount() { - translate([11.5, 12, 0]) m2_mount_post(); - translate([11.5, -12, 0]) m2_mount_post(); - translate([-11.5, 12, 0]) m2_mount_post(); - translate([-11.5, -12, 0]) m2_mount_post(); -} - -module oled_ssd1306_mount_cutout() { - translate([0, 1.9, 0]) cube([25, 14, 5], center=true); - translate([0, 0, -1.0]) cube([35, 35, 4], center=true); -} - module adafruit_pid_326_oled_ssd1306_mount_post() { cylinder(r=2.25/2, h=8, $fn=50, center=true); } diff --git a/src/panels/overhang/right-sega-2p-nine-control-panel-with-mount-with-oled.scad b/src/panels/overhang/right-sega-2p-nine-control-panel-with-mount-with-oled.scad deleted file mode 100644 index 3e27fc8..0000000 --- a/src/panels/overhang/right-sega-2p-nine-control-panel-with-mount-with-oled.scad +++ /dev/null @@ -1,18 +0,0 @@ -/* - * SPDX-FileCopyrightText: © 2023 Brian S. Stephan - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -include -include -use - -module sega_2p_nine_plus_control_right_overhang_panel_with_mount_with_oled() { - difference() { - sega_2p_nine_plus_control_right_overhang_panel_with_mount(); - translate([75, 77.5, 0]) oled_ssd1306_mount_cutout(); - } - translate([75, 77.5, 0.5]) oled_ssd1306_mount(); -} - -sega_2p_nine_plus_control_right_overhang_panel_with_mount_with_oled();