59.529.510.5
Loading the interactive model…
Interactive 3D model of Govee H5126 Dummy Remote Insert

Brackets and mounts

Govee H5126 Dummy Remote Insert

6 views
Bounding box
29.5 × 59.5 × 10.5 mm
Engine
Precision B-rep
Parameters
13
Published
August 25, 2026

Download

Free to download and use. See the terms.

The prompt

// =================================================================== // Govee H5126 Exact Dummy Remote for Decora/Rocker Bracket // Matches the circular dual-button face shown in the MakerWorld model // =================================================================== $fn = 80; // --- Main Dimensions (mm) --- body_width = 29.5; // Fit tolerance width for cradle body_height = 59.5; // Fit tolerance height for cradle body_depth = 10.5; // Remote thickness corner_radius = 4.0; // Outer corner rounding // --- Face Feature Parameters --- btn_dia = 17.5; // Circular button diameter btn_depth = 0.6; // Deboss depth for button seams/insets btn_offset_y = 11.5; // Distance from center to top/bottom button centers led_dia = 1.6; // Top status indicator LED diameter logo_dia = 4.5; // Bottom logo indicator diameter // --- Helper Modules --- module rounded_rect(w, h, r) { hull() { translate([r, r]) circle(r = r); translate([w - r, r]) circle(r = r); translate([r, h - r]) circle(r = r); translate([w - r, h - r]) circle(r = r); } } // --- Main Model Assembly --- difference() { // 1. Base Pill Body linear_extrude(height = body_depth) { rounded_rect(body_width, body_height, corner_radius); } // 2. Top Status LED Hole / Dimple translate([body_width / 2, body_height - 5.5, body_depth - 0.8]) { cylinder(d = led_dia, h = 1.0); } // 3. Top Circular Button Groove & Raised Center Effect translate([body_width / 2, (body_height / 2) + btn_offset_y, body_depth - btn_depth]) { difference() { cylinder(d = btn_dia, h = btn_depth + 0.1); cylinder(d = btn_dia - 1.2, h = btn_depth + 0.2); } } // 4. Bottom Circular Button Groove & Raised Center Effect translate([body_width / 2, (body_height / 2) - btn_offset_y, body_depth - btn_depth]) { difference() { cylinder(d = btn_dia, h = btn_depth + 0.1); cylinder(d = btn_dia - 1.2, h = btn_depth + 0.2); } } // 5. Bottom Govee "G" Logo Indentation translate([body_width / 2, 5.8, body_depth - 0.5]) { difference() { cylinder(d = logo_dia, h = 0.6); cylinder(d = logo_dia - 1.2, h = 0.7); } } }

Parameters

NameValueRange
Body width29.5 mm10 – 80
Body height59.5 mm20 – 120
Body depth10.5 mm4 – 30
Outer corner radius4 mm0.5 – 15
Button diameter17.5 mm5 – 40
Button groove depth0.6 mm0.2 – 3
Button offset from center11.5 mm0 – 25
Button seam width (diameter change)1.2 mm0.2 – 4
LED indicator diameter1.6 mm0.5 – 5
LED distance from top edge5.5 mm1 – 20
Logo diameter4.5 mm1 – 12
Logo distance from bottom edge5.8 mm1 – 20
Logo groove depth0.5 mm0.2 – 2

Every value above is a live dimension. Open a model like this in the editor and each one becomes a slider you can drag before exporting.