Skip to content

Engineering

Modular Drawer Slide System

Year
2025
Status
Completed
Modular Drawer Slide System
Test rig, fortieth cycle

Specifications

Technical Specifications
tools Fusion 360 · Arduino · Bambu Lab X1C
materials 6061 aluminum extrusion · Delrin glide blocks · Stainless M3 hardware

The brief was simple to state and difficult to satisfy: a slide mechanism that a small workshop could produce in batches of fifty without specialized tooling, and that an end user could service with a single hex key.

The mechanism

Three printed prototypes later, the working geometry turned out to be the simplest one — a captured glide block riding inside a standard aluminum extrusion channel.

damping.ino
// Soft-close damping curve, sampled at 100Hz
float dampingForce(float velocity) {
  const float K = 0.42f;
  return -K * velocity * fabsf(velocity);
}

The Arduino rig above was only for bench testing — the production part has no electronics at all, which was rather the point.