THE CHASSIS AND CAD.
The NeoRacer is a 1:12 scale autonomous racing platform, and its full mechanical design is open. Every part lives in a public, version-controlled GitHub repository under a reciprocal open-hardware license, so you can read the chassis, print the 3D parts, and open the CAD to modify mounts for your own sensors.
THE HARDWARE REPOSITORY.
The whole mechanical design is tracked in Neobotics-Foundation-Inc/neoracer-hardware-files. Because it is version-controlled, you can see exactly what changed between revisions, fork it, and bring your edits back as a pull request. Two top-level folders organize everything: one for the full vehicle and one for the parts you print.
- full-vehicle/ holds the complete assembly: a FreeCAD master, a STEP export, a set of STLs, and a V1 DWG drawing.
- 3d-printed-parts/ holds a combined STEP of the printable parts plus a standalone battery-cap STL, so you can go straight to the for just the bits you print.
THE FOUR FORMATS.
Each format does one job well. The reason the repo ships all four is that a single file cannot be both the editable source and a print-ready at the same time, so the design is exported into the format that fits each use.
| Format | Role | What you do with it |
|---|---|---|
| FreeCAD | Editable master | Open it to change geometry, add a mount, or re-export. This is the real source. |
| STEP | Neutral CAD interchange | Import into almost any CAD tool without losing the solid model. Good for measuring or referencing. |
| STL | Printable mesh | Drop straight into a slicer to 3D print the part. Geometry only, no editing history. |
| DWG | 2D drawing | A flat technical drawing of the V1 vehicle for dimensions and reference. |
PRINT OR MODIFY.
Print the parts
Modify the mounts
THE LICENSE.
The design is released under the CERN-OHL-S-2.0 license, the strongly reciprocal variant of the CERN Open Hardware License. In plain terms, you are free to study, build, modify, and redistribute the design. The reciprocal part means that if you share a modified version, you share it back under the same terms, so improvements stay open for the next student. The full license text travels with the repo.
bashgit lfs install git clone https://github.com/Neobotics-Foundation-Inc/neoracer-hardware-files.git cd neoracer-hardware-files
Running git lfs install once on your machine makes sure the large CAD files are fetched in full when you clone.
