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

# Remote - Bottom Housing

> The lower enclosure for the RADR wireless remote containing the battery compartment

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/researchanddesire/radr-wireless-remote/main/Hardware/Print%20Files/Remote%20-%20Bottom.stl" />

## Function

The Bottom Housing is the lower shell of the RADR wireless remote. This component:

* Forms the battery compartment for the rechargeable battery
* Provides the rear ergonomic surface for comfortable grip
* Contains mounting bosses for PCB attachment
* Features the USB-C charging port access
* Mates with the Top Housing to complete the enclosure

## Print Settings

| Setting           | Value                       |
| ----------------- | --------------------------- |
| Layer Height      | 0.12mm (for smooth curves)  |
| Walls             | 4                           |
| Infill Type       | Gyroid                      |
| Infill Percentage | 20-30%                      |
| Supports          | Yes - for internal features |

<Tip>
  Print with the interior facing up to ensure clean exterior surfaces.
</Tip>

## Assembly Notes

<Steps>
  <Step title="Check fit">
    Test fit the PCB and battery before final assembly. Verify the USB-C port aligns with the housing opening.

    <Check>
      The PCB sits flat on the mounting bosses with no interference.
    </Check>
  </Step>

  <Step title="Verify clearances">
    Ensure the battery fits with adequate clearance. Some printer tolerances may require light sanding.

    <Warning>
      Do not force components. If fit is too tight, sand lightly rather than applying excessive force.
    </Warning>
  </Step>
</Steps>

## Download Files

<CardGroup cols={2}>
  <Card title="STEP File" icon="cube" href="https://github.com/researchanddesire/radr-wireless-remote/blob/main/Hardware/Print%20Files/Remote%20-%20Bottom.step">
    Download for CAD editing
  </Card>

  <Card title="3MF Project" icon="layer-group" href="https://github.com/researchanddesire/radr-wireless-remote/blob/main/Hardware/Print%20Files/Bambu%20A1%20Remote_V1.01.3mf">
    Bambu Studio project with print settings
  </Card>
</CardGroup>
