Yes, I might design a bottom case, too

This commit is contained in:
XANTRONIX 2023-11-17 10:06:00 -05:00
parent 10571c4df5
commit d5b4b6c541

View file

@ -23,7 +23,7 @@ screw_post_middle_y_offset = 72.50;
screw_post_lower_y_offset = (keyboard_y_offset - 2 * wall_width) / 2 + wall_width;
screw_post_x_offset = (keyboard_x_offset - 2 * wall_width) / 2 + wall_width;
case_screw_posts = [
top_case_screw_posts = [
/* Upper row */
[screw_post_x_offset, screw_post_upper_y_offset, screw_post_corner_height],
[case_width_bottom / 2, case_length_bottom - 10.0, screw_post_middle_height],
@ -104,7 +104,7 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
}
for (post = case_screw_posts) {
for (post = top_case_screw_posts) {
translate([post[0], post[1], wall_height - wall_width - post[2] - eps])
screw_post(post[2] + eps);
}