Skip to content

Commit 7557bfe

Browse files
authored
Merge pull request #36 from lightos/add-weiser-format
Add Weiser WR3 key format support
2 parents b979d80 + f749d24 commit 7557bfe

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

key_formats.c

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,24 @@ const KeyFormat all_formats[] = {
254254
.max_depth_ind = 6,
255255
.macs = 5,
256256
.clearance = 3},
257+
258+
{.manufacturer = "Weiser",
259+
.format_name = "WR3",
260+
.format_link = "https://www.lockwiki.com/index.php/Weiser_Classic",
261+
.first_pin_inch = 0.237,
262+
.last_pin_inch = 0.861,
263+
.pin_increment_inch = 0.156,
264+
.pin_num = 5,
265+
.pin_width_inch = 0.090,
266+
.elbow_inch = 0.150,
267+
.drill_angle = 90,
268+
.uncut_depth_inch = 0.315,
269+
.deepest_depth_inch = 0.153,
270+
.depth_step_inch = 0.018,
271+
.min_depth_ind = 0,
272+
.max_depth_ind = 10,
273+
.macs = 6,
274+
.clearance = 3},
257275

258276
{.manufacturer = "Ford",
259277
.format_name = "H75",

key_formats.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef KEY_FORMATS_H
22
#define KEY_FORMATS_H
33

4-
#define FORMAT_NUM 21
4+
#define FORMAT_NUM 22
55

66
typedef struct {
77
char* manufacturer;

0 commit comments

Comments
 (0)