Skip to content

Commit 0bcad4c

Browse files
committed
return to old heatset diameter
1 parent 371fb93 commit 0bcad4c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

customizer/src/obs_case_customizer/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
from pydantic import BaseModel
2323
from websockets.exceptions import ConnectionClosed
2424

25-
THREADS = int(os.environ.get('CUSTOMIZER_THREADS', 2))
26-
TIMEOUT = int(os.environ.get('CUSTOMIZER_JOB_TIMEOUT', 600))
25+
THREADS = int(os.environ.get('CUSTOMIZER_THREADS', 10))
26+
TIMEOUT = int(os.environ.get('CUSTOMIZER_JOB_TIMEOUT', 1200))
2727

2828
# TODO: make this configurable
2929
ALL_PARTS = [
@@ -262,7 +262,7 @@ class CustomVariables(BaseModel):
262262
MainCase_top_rider_cable: bool = True
263263
m3_screw_diameter_tight: float = 3
264264
m3_screw_diameter_loose: float = 3.25
265-
m3_insert_hole_diameter: float = 4.5
265+
m3_insert_hole_diameter: float = 4
266266
m3_hex_nut_diameter: float = 6
267267
SeatPostMount_angle: float = 20
268268
SeatPostMount_diameter: float = 28

variables.scad

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ m3_screw_head_depth = 3; // minimum depth for sinking the screw head
6262
m3_screw_head_diameter = 6; // can have a little clearance
6363
m3_hex_nut_diameter = 6.45; // outer circle, *not* wrench size (S), but `S*2/sqrt(3)`, plus clearance
6464
m3_hex_nut_thickness = 2.5; // found different nut specifications, 2.5 is the maximum thickness I found named
65-
m3_insert_hole_diameter = 4.5;
65+
m3_insert_hole_diameter = 4;
6666
m3_insert_hole_depth = 5.75;
6767
m3_insert_cavity_depth = 5.75 - 4.5; // size of cavity on the bottom for displaced plastic
6868
m3_insert_cavity_diameter = m3_insert_hole_diameter + 1;

0 commit comments

Comments
 (0)