> ## 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 Thread

> Separate 24mm threaded component for alternative belt clamp assembly

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%20Thread.stl" />

## Quick Reference

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

## Function

The 24mm Thread is a standalone threaded component used with the separate belt clamp parts. This component:

* Provides the 24mm external threading for the nut interface
* Designed to bolt onto the Belt Clamp - Bottom component
* Used when the integrated clamping thread parts are difficult to print
* Requires additional hardware for assembly

<Note>
  This is a non-standard part. Use this alongside the Belt Clamp - Bottom and Belt Clamp - Top when you have difficulty printing the integrated 24mm Clamping Thread parts.
</Note>

## Additional Hardware Required

When using this separate assembly instead of the integrated clamping thread:

| Quantity | Part                       |
| -------- | -------------------------- |
| 2        | M3x8 Socket Cap Head Bolt  |
| 1        | M3x16 Socket Cap Head Bolt |
| 3        | M3 Hex Nut                 |

<Warning>
  Print this part in the default file orientation. Printing threaded components in other orientations causes structural weakness.
</Warning>

## Download Files

<Card title="STL File" icon="cube" href="https://github.com/KinkyMakers/OSSM-hardware/blob/main/Printed%20Parts/Actuator/Non-standard/OSSM%20-%2024mm%20Thread.stl">
  Download for slicing
</Card>
