2018-06-27 05:12:43 +00:00
|
|
|
// entry point for customizer script. This probably isn't useful to most people,
|
|
|
|
// as it's just a wrapper that helps generate customizer.scad for thingiverse.
|
|
|
|
|
2018-06-28 05:27:22 +00:00
|
|
|
/* [Basic-Settings] */
|
|
|
|
|
|
|
|
// what preset profile do you wish to use? disable if you are going to set paramters below
|
|
|
|
key_profile = "dcs"; // [dcs, oem, dsa, sa, g20, disable]
|
|
|
|
// what key profile row is this keycap on? 0 for disable
|
|
|
|
row = 1; // [5,1,2,3,4,0]
|
|
|
|
|
|
|
|
// What does the top of your key say?
|
|
|
|
legend = "";
|
|
|
|
|
2018-06-27 05:12:43 +00:00
|
|
|
include <src/settings.scad>
|
|
|
|
|
|
|
|
include <src/key_sizes.scad>
|
|
|
|
include <src/key_profiles.scad>
|
|
|
|
include <src/key_types.scad>
|
|
|
|
include <src/key_transformations.scad>
|
2018-07-26 05:48:15 +00:00
|
|
|
include <src/key_helpers.scad>
|
2018-06-27 05:12:43 +00:00
|
|
|
|
|
|
|
use <src/key.scad>
|
|
|
|
|
2018-07-01 02:37:24 +00:00
|
|
|
key_profile(key_profile, row) legend(legend) {
|
|
|
|
key();
|
|
|
|
}
|