Search models, users, collections, and posts

Navee GT3 Pro Electric Scooter Steering Hub Cap

Print Profile(1)

All
A1 mini
H2D Pro
X1E
X2D
X1 Carbon
H2S
P1P
H2C
X1
P2S
H2D
P1S
A1
A2L

0.2mm layer, 4 walls, 30% infill
0.2mm layer, 4 walls, 30% infill
Designer
19 min
1 plate

Open in Bambu Studio
Boost
0
0
0
0
0
0
Released 

Description

Steering hub cap broke for my sons Navee GT3 Pro electric scooter, took some measurements from the old one and created this one using OpenSCAD.

 

 

 

Here's the complete OpenSCAD script if you wish to make any changes:

 

// =====================
// Parameters
// =====================
outer_diameter = 60;
inner_diameter = 30;

total_height = 4.7;   // Total height of ridge as well as pins
top_thickness = 1.5;  // Thickness of base plate

// Calculated height for parts under plate
sub_height = total_height - top_thickness; // Equals 3.2 mm

rim_thickness = 1.3;  
peg_diameter = 3.4;

peg_center_distance = 37;

$fn = 100;

// =====================
// Topplate (Z starts at 0 and goes up to 1.5)
// =====================
difference() {
   cylinder(d = outer_diameter, h = top_thickness);

   translate([0,0,-1])
       cylinder(d = inner_diameter, h = top_thickness + 2);
}

// =====================
// Outer edge(Z starts at 0 and goes down to -3.2)
// Total measurement from top to bottom equals 4.7 mm
// =====================
difference() {
   translate([0,0,-sub_height])  
       cylinder(d = outer_diameter, h = sub_height);

   translate([0,0,-sub_height-1])  
       cylinder(d = outer_diameter - 2*rim_thickness, h = sub_height + 2);
}

// =====================
// Pins (Starts at underside of plate and goes down to -3.2)
// =====================
translate([-peg_center_distance/2, 0, -sub_height]) 
   cylinder(d = peg_diameter, h = sub_height);

translate([peg_center_distance/2, 0, -sub_height])  
   cylinder(d = peg_diameter, h = sub_height);

Comment & Rating (0)

(0/1000)