> ## Documentation Index
> Fetch the complete documentation index at: https://docs.researchanddesire.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 24mm Hex Flower Nut - Wrench

> Printed companion wrench for the 24 mm Hex Flower nut

export const STLViewer = ({url}) => {
  const [loading, setLoading] = useState(true);
  const EMBED_URL = `https://www.viewstl.com/?embedded&url=${encodeURIComponent(url)}`;
  const getGitHubUrl = rawUrl => {
    if (rawUrl.includes('raw.githubusercontent.com')) {
      return rawUrl.replace('raw.githubusercontent.com', 'github.com').replace(/\/main\//, '/blob/main/');
    }
    return rawUrl;
  };
  const fileUrl = getGitHubUrl(url);
  const fileName = decodeURIComponent(url.split('/').pop());
  return <div style={{
    width: '100%',
    maxWidth: '800px',
    margin: '0 auto'
  }}>
      {loading && <div style={{
    position: 'absolute',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center',
    width: '100%',
    height: '500px',
    background: '#f5f5f5',
    borderRadius: '8px',
    zIndex: 1
  }}>
          Loading 3D viewer...
        </div>}
      <div style={{
    position: 'relative'
  }}>
        <iframe src={EMBED_URL} style={{
    width: '100%',
    height: '500px',
    border: 'none',
    borderRadius: '8px',
    background: '#f5f5f5'
  }} onLoad={() => setLoading(false)} title="STL Viewer" allowFullScreen />
      </div>
      <div style={{
    display: 'flex',
    justifyContent: 'space-between',
    alignItems: 'center',
    marginTop: '8px',
    fontSize: '12px',
    color: '#666'
  }}>
        <span>Drag to rotate • Scroll to zoom</span>
        <a href={fileUrl} target="_blank" rel="noopener noreferrer" style={{
    color: '#0066cc',
    textDecoration: 'none'
  }}>
          {fileName} ↗
        </a>
      </div>
    </div>;
};

<STLViewer url="https://raw.githubusercontent.com/KinkyMakers/OSSM-hardware/main/Printed%20Parts/Actuator/Non-standard/OSSM%20-%2024mm%20Nut%20-%20Hex%20Flower%20-%20Wrench.stl" />

## Quick Reference

|          |             |
| -------- | ----------- |
| Quantity | 1 per build |

## Function

Compact printed tool for the Hex Flower nut variant. This component:

* Engages the Hex Flower pattern for secure grip beyond hand-tight
* Aids in controlled loosening without slipping
* Slim profile for easy storage with your OSSM kit

<Note>
  Only needed for the Hex Flower nut variant. The standard 5-sided nut is hand-tightened only.
</Note>

## Compatibility

* Fits: 24 mm Hex Flower nut variant for OSSM
* Does not fit: Standard 5-sided nut or other non-Hex Flower profiles

## Print Guidelines

* Material: PETG or ABS/ASA recommended; PLA+ is more brittle under torque
* Layer height: 0.20 mm (0.16 mm for tighter dimensional accuracy)
* Perimeters: 4-6 walls
* Infill: 40-60% (Gyroid/Cubic recommended)
* Orientation: Lay flat with Hex Flower face up so layer lines resist torque
* Supports: Not required

<Warning>
  This is a printed tool. Do not use cheater bars, impact drivers, or power tools. Excessive torque can crack the wrench or damage the nut.
</Warning>

<Tip>
  If the fit is tight on the nut, a light pass with fine sandpaper (320-600 grit) on the cavity walls usually resolves it.
</Tip>

## Download Files

<CardGroup cols={2}>
  <Card title="STL File" icon="cube" href="https://github.com/KinkyMakers/OSSM-hardware/blob/main/Printed%20Parts/Actuator/Non-standard/OSSM%20-%2024mm%20Nut%20-%20Hex%20Flower%20-%20Wrench.stl">
    Download for slicing
  </Card>

  <Card title="STEP File" icon="drafting-compass" href="https://github.com/KinkyMakers/OSSM-hardware/blob/main/Printed%20Parts/Actuator/Non-standard/STEP/OSSM%20-%2024mm%20Nut%20-%20Hex%20Flower%20-%20Wrench.stp">
    For CAD modification
  </Card>
</CardGroup>
