Topic: Github Files

I can't open the GitHub files in openscad, most of them pop the warning "No Top level geometry to render".
The only one that renders is balance_v4.8
I'm looking for the measurements of the custom parts or a way to open them in a 3d software to cut in a CNC.
I also can't find the reference for the motor or the length of the belt the motor uses.


I wrote to the email but haven't got an answer yet.

Re: Github Files

Copy parameters.scad, functions.scad, standardParts.scad files to "C:\Users\USERNAME\Documents\OpenSCAD\libraries". Then make a new .scad file anywhere. Copy the following code into the file, save, then open it with openSCAD, and render: 


include <parameters.scad>
include <functions.scad>
include <customParts.scad>


laser206(); //this line render the laser206 module (see: customParts.scad)
//this line is a comment

//laser101(); // if you want rendering this part, remove "//", and write it before laser206(); else both will be rendered. Try another .scad file. Like standardParts.scad. Search a module, like module stepper28BYJ() {.... } Make a new line before or after, and paste (without quotation mark): "stepper28BYJ();" Then Render.
//laser102();
//laser207();
//laser106();
//etc...