| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #include "key_formats.h"
- // all lengths in inches since it's all American formats
- // angle is in degrees
- const KeyFormat all_formats[] = {
- {
- .format_name = "KW1",
- .first_pin_inch = 0.247,
- .last_pin_inch = 0.847,
- .pin_increment_inch = 0.15,
- .pin_num = 5,
- .pin_width_inch = 0.084,
- .drill_angle = 90,
- .uncut_depth_inch = 0.329,
- .deepest_depth_inch = 0.191,
- .depth_step_inch = 0.023,
- .min_depth_ind = 1,
- .max_depth_ind = 7,
- .macs = 4,
- .clearance = 4
- },
- {
- .format_name = "SC4",
- .first_pin_inch = 0.231,
- .last_pin_inch = 1.012,
- .pin_increment_inch = 0.1562,
- .pin_num = 6,
- .pin_width_inch = 0.031,
- .drill_angle = 100,
- .uncut_depth_inch = 0.335,
- .deepest_depth_inch = 0.2,
- .depth_step_inch = 0.015,
- .min_depth_ind = 0,
- .max_depth_ind = 9,
- .macs = 7,
- .clearance = 4
- }
- };
|