Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions key_formats.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,25 @@ const KeyFormat all_formats[] = {
.macs = 7,
.clearance = 8},

{.manufacturer = "Schlage",
.format_name = "Everest 29",
.format_link = "https://commercial.schlage.com/en/products/key-systems/everest-29-keyways.html",
.first_pin_inch = 0.231,
.last_pin_inch = 1.210,
.pin_increment_inch = 0.1562,
.pin_num = 7,
.pin_width_inch = 0.031,
.elbow_inch = 0.1,
.drill_angle = 90,
.uncut_depth_inch = 0.335,
.deepest_depth_inch = 0.2062,
.depth_step_inch = 0.0125,
.min_depth_ind = 0,
.max_depth_ind = 9,
.macs = 7,
.clearance = 8},


{.manufacturer = "Arrow",
.format_name = "AR4",
.format_link = "C2",
Expand Down
2 changes: 1 addition & 1 deletion key_formats.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef KEY_FORMATS_H
#define KEY_FORMATS_H

#define FORMAT_NUM 23
#define FORMAT_NUM 24

typedef struct {
char* manufacturer;
Expand Down