/ customizer_base.scad
customizer_base.scad
 1  // entry point for customizer script. This probably isn't useful to most people,
 2  // as it's just a wrapper that helps generate customizer.scad for thingiverse.
 3  
 4  /* [Basic-Settings] */
 5  
 6  // what preset profile do you wish to use? disable if you are going to set paramters below
 7  key_profile = "dcs"; // [dcs, oem, dsa, sa, g20, disable]
 8  // what key profile row is this keycap on? 0 for disable
 9  row = 1; // [5,1,2,3,4,0]
10  
11  // What does the top of your key say?
12  legend = "";
13  
14  $using_customizer = true;
15  
16  include <src/settings.scad>
17  
18  include <src/key_sizes.scad>
19  include <src/key_profiles.scad>
20  include <src/key_types.scad>
21  include <src/key_transformations.scad>
22  include <src/key_helpers.scad>
23  include <src/key.scad>
24  
25  key_profile(key_profile, row) legend(legend) {
26    key();
27  }