mirror of
https://github.com/System-End/hackpad.git
synced 2026-04-19 19:55:15 +00:00
Finished my hackpad
This commit is contained in:
parent
455ef8e868
commit
46bbc38dfc
488 changed files with 170960 additions and 942354 deletions
1393
hackpads/38key/cad/case.step
Normal file
1393
hackpads/38key/cad/case.step
Normal file
File diff suppressed because it is too large
Load diff
1
hackpads/38key/firmware/README.md
Normal file
1
hackpads/38key/firmware/README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
Firmware for my HackPad (hackclub.hackpad.com)!
|
||||
|
|
@ -1,11 +1,10 @@
|
|||
import board
|
||||
import board;
|
||||
|
||||
from kmk.kmk_keyboard import KMKKeyboard as _KMKKeyboard
|
||||
from kmk.scanners import DiodeOrientation
|
||||
|
||||
|
||||
class KMKKeyboard(_KMKKeyboard):
|
||||
keyboard.col_pins = (board.GP27, board.GP26)
|
||||
keyboard.row_pins = (board.GP29, board.GP28)
|
||||
keyboard.col_pins = (board.GP1, board.GP0, board.GP28, board.GP29, board.GP3)
|
||||
keyboard.row_pins = (board.GP26, board.GP27, board.GP4, board.GP5)
|
||||
|
||||
keyboard.diode_orientation = DiodeOrientation.COL2ROW
|
||||
66
hackpads/38key/firmware/main.py
Normal file
66
hackpads/38key/firmware/main.py
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
print("STARTING")
|
||||
|
||||
import board;
|
||||
|
||||
from kmk.kmk_keyboard import KMKKeyboard
|
||||
from kmk.keys import KC
|
||||
from kmk.scanners import DiodeOrientation
|
||||
from kmk.modules.layers import Layers
|
||||
from kmk.modules.tapdance import TapDance
|
||||
from kmk.modules.macros import Macros
|
||||
|
||||
print(dir(board))
|
||||
|
||||
keyboard = KMKKeyboard()
|
||||
|
||||
keyboard.modules.append(Layers())
|
||||
tapdance = TapDance()
|
||||
tapdance.tap_time = 750
|
||||
keyboard.modules.append(tapdance)
|
||||
keyboard.modules.append(Macros())
|
||||
|
||||
keyboard.col_pins = (board.GP1, board.GP0, board.GP28, board.GP29, board.GP3)
|
||||
keyboard.row_pins = (board.GP26, board.GP27, board.GP4, board.GP5)
|
||||
|
||||
keyboard.diode_orientation = DiodeOrientation.COL2ROW
|
||||
|
||||
QWERTY_LAYER = KC.TO(0)
|
||||
NUM_LAYER = KC.TO(1)
|
||||
FUNC_LAYER = KC.TO(2)
|
||||
MOUSE_LAYER = KC.TO(3)
|
||||
|
||||
tapdance.tap_dance_keys = {
|
||||
KC.SPACE: [KC.SPACE, QWERTY_LAYER, NUM_LAYER, FUNC_LAYER, MOUSE_LAYER],
|
||||
KC.LGUI: [KC.LGUI, KC.LGUI(KC.C), KC.LGUI(KC.V)],
|
||||
KC.Q: [KC.Q, KC.TAB, KC.ESC]
|
||||
}
|
||||
|
||||
keyboard.keymap = [
|
||||
[ #QWERTY LEFT
|
||||
KC.Q, KC.W, KC.E, KC.R, KC.T,
|
||||
KC.A, KC.S, KC.D, KC.F, KC.G,
|
||||
KC.Z, KC.X, KC.C, KC.V, KC.SPACE,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
],
|
||||
[#NUM LAYER
|
||||
KC.N1, KC.N2, KC.N3, KC.N4, KC.N5,
|
||||
KC.TAB, KC.MS_UP, KC.NO, KC.NO, KC.MS_LEFT,
|
||||
KC.MS_LEFT, KC.MS_DOWN, KC.MS_RIGHT, KC.NO, KC.SPACE,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
],
|
||||
[#FUNC LAYER
|
||||
KC.F1, KC.F2, KC.F3, KC.F4, KC.F5,
|
||||
KC.NO, KC.NO, KC.NO, KC.NO, KC.NO,
|
||||
KC.NO, KC.NO, KC.NO, KC.NO, KC.NO,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
],
|
||||
[#MOUSE LAYER
|
||||
KC.NO, KC.NO, KC.MS_UP, KC.NO, KC.NO,
|
||||
KC.NO, KC.MS_LEFT, KC.MS_BTN1, KC.MS_RIGHT, KC.NO,
|
||||
KC.NO, KC.NO, KC.MS_DOWN, KC.NO, KC.NO,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
]
|
||||
]
|
||||
|
||||
if __name__ == '__main__':
|
||||
keyboard.go()
|
||||
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_160617.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_160617.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_194458.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_194458.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_195032.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_195032.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_195548.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_195548.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_205614.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-07_205614.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_200520.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_200520.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_201203.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_201203.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_201711.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_201711.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_202749.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_202749.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_220025.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-08_220025.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_124417.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_124417.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_125440.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_125440.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_131350.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_131350.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_132540.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_132540.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_134341.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-09_134341.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-10_113153.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-10_113153.zip
Normal file
Binary file not shown.
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-12_074925.zip
Normal file
BIN
hackpads/38key/pcb/Vpad/Vpad-backups/Vpad-2024-10-12_074925.zip
Normal file
Binary file not shown.
18315
hackpads/38key/pcb/Vpad/Vpad.kicad_pcb
Normal file
18315
hackpads/38key/pcb/Vpad/Vpad.kicad_pcb
Normal file
File diff suppressed because it is too large
Load diff
83
hackpads/38key/pcb/Vpad/Vpad.kicad_prl
Normal file
83
hackpads/38key/pcb/Vpad/Vpad.kicad_prl
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"board": {
|
||||
"active_layer": 44,
|
||||
"active_layer_preset": "All Layers",
|
||||
"auto_track_width": true,
|
||||
"hidden_netclasses": [],
|
||||
"hidden_nets": [],
|
||||
"high_contrast_mode": 0,
|
||||
"net_color_mode": 1,
|
||||
"opacity": {
|
||||
"images": 0.6,
|
||||
"pads": 1.0,
|
||||
"tracks": 1.0,
|
||||
"vias": 1.0,
|
||||
"zones": 0.6
|
||||
},
|
||||
"selection_filter": {
|
||||
"dimensions": true,
|
||||
"footprints": true,
|
||||
"graphics": true,
|
||||
"keepouts": true,
|
||||
"lockedItems": false,
|
||||
"otherItems": true,
|
||||
"pads": true,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"zones": true
|
||||
},
|
||||
"visible_items": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
32,
|
||||
33,
|
||||
34,
|
||||
35,
|
||||
36,
|
||||
39,
|
||||
40
|
||||
],
|
||||
"visible_layers": "fffffff_ffffffff",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"git": {
|
||||
"repo_password": "",
|
||||
"repo_type": "",
|
||||
"repo_username": "",
|
||||
"ssh_key": ""
|
||||
},
|
||||
"meta": {
|
||||
"filename": "Vpad.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
|
|
@ -6,14 +6,14 @@
|
|||
"apply_defaults_to_fp_fields": false,
|
||||
"apply_defaults_to_fp_shapes": false,
|
||||
"apply_defaults_to_fp_text": false,
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"board_outline_line_width": 0.05,
|
||||
"copper_line_width": 0.2,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"courtyard_line_width": 0.05,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
|
|
@ -24,13 +24,13 @@
|
|||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_line_width": 0.1,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"other_line_width": 0.1,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
|
|
@ -41,11 +41,11 @@
|
|||
"height": 1.524,
|
||||
"width": 1.524
|
||||
},
|
||||
"silk_line_width": 0.09999999999999999,
|
||||
"silk_line_width": 0.1,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.09999999999999999,
|
||||
"silk_text_thickness": 0.1,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"min_clearance": 0.5
|
||||
|
|
@ -115,15 +115,15 @@
|
|||
"min_copper_edge_clearance": 0.5,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_microvia_diameter": 0.2,
|
||||
"min_microvia_drill": 0.1,
|
||||
"min_resolved_spokes": 2,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_text_height": 0.7999999999999999,
|
||||
"min_text_height": 0.8,
|
||||
"min_text_thickness": 0.08,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.0,
|
||||
"min_via_annular_width": 0.09999999999999999,
|
||||
"min_via_annular_width": 0.1,
|
||||
"min_via_diameter": 0.5,
|
||||
"solder_mask_to_copper_clearance": 0.0,
|
||||
"use_height_for_length_calcs": true
|
||||
|
|
@ -431,7 +431,7 @@
|
|||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "orpheuspad_pcb.kicad_pro",
|
||||
"filename": "Vpad.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
|
|
@ -469,7 +469,7 @@
|
|||
"plot": "",
|
||||
"pos_files": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "orpheuspad_pcb_final.step",
|
||||
"step": "",
|
||||
"svg": "",
|
||||
"vrml": ""
|
||||
},
|
||||
|
|
@ -576,7 +576,7 @@
|
|||
},
|
||||
"sheets": [
|
||||
[
|
||||
"7995ec7a-c14b-437e-b354-3eb74052b7cb",
|
||||
"12e92653-a452-4534-9890-baca0519ab51",
|
||||
"Root"
|
||||
]
|
||||
],
|
||||
4969
hackpads/38key/pcb/Vpad/Vpad.kicad_sch
Normal file
4969
hackpads/38key/pcb/Vpad/Vpad.kicad_sch
Normal file
File diff suppressed because it is too large
Load diff
34850
hackpads/38key/pcb/Vpad/Vpad.step
Normal file
34850
hackpads/38key/pcb/Vpad/Vpad.step
Normal file
File diff suppressed because it is too large
Load diff
83
hackpads/38key/pcb/Vpad/_autosave-Vpad.kicad_prl
Normal file
83
hackpads/38key/pcb/Vpad/_autosave-Vpad.kicad_prl
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"board": {
|
||||
"active_layer": 44,
|
||||
"active_layer_preset": "",
|
||||
"auto_track_width": true,
|
||||
"hidden_netclasses": [],
|
||||
"hidden_nets": [],
|
||||
"high_contrast_mode": 0,
|
||||
"net_color_mode": 1,
|
||||
"opacity": {
|
||||
"images": 0.6,
|
||||
"pads": 1.0,
|
||||
"tracks": 1.0,
|
||||
"vias": 1.0,
|
||||
"zones": 0.6
|
||||
},
|
||||
"selection_filter": {
|
||||
"dimensions": true,
|
||||
"footprints": true,
|
||||
"graphics": true,
|
||||
"keepouts": true,
|
||||
"lockedItems": false,
|
||||
"otherItems": true,
|
||||
"pads": true,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"zones": true
|
||||
},
|
||||
"visible_items": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
32,
|
||||
33,
|
||||
34,
|
||||
35,
|
||||
36,
|
||||
39,
|
||||
40
|
||||
],
|
||||
"visible_layers": "fff7fff_ffffffff",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"git": {
|
||||
"repo_password": "",
|
||||
"repo_type": "",
|
||||
"repo_username": "",
|
||||
"ssh_key": ""
|
||||
},
|
||||
"meta": {
|
||||
"filename": "Vpad.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
102488
hackpads/38key/pcb/Vpad/fp-info-cache
Normal file
102488
hackpads/38key/pcb/Vpad/fp-info-cache
Normal file
File diff suppressed because it is too large
Load diff
1393
hackpads/38key/production/case/case.step
Normal file
1393
hackpads/38key/production/case/case.step
Normal file
File diff suppressed because it is too large
Load diff
BIN
hackpads/38key/production/gerbers.zip
Normal file
BIN
hackpads/38key/production/gerbers.zip
Normal file
Binary file not shown.
10
hackpads/38key/production/kb.py
Normal file
10
hackpads/38key/production/kb.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import board;
|
||||
|
||||
from kmk.kmk_keyboard import KMKKeyboard as _KMKKeyboard
|
||||
from kmk.scanners import DiodeOrientation
|
||||
|
||||
class KMKKeyboard(_KMKKeyboard):
|
||||
keyboard.col_pins = (board.GP1, board.GP0, board.GP28, board.GP29, board.GP3)
|
||||
keyboard.row_pins = (board.GP26, board.GP27, board.GP4, board.GP5)
|
||||
|
||||
keyboard.diode_orientation = DiodeOrientation.COL2ROW
|
||||
66
hackpads/38key/production/main.py
Normal file
66
hackpads/38key/production/main.py
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
print("STARTING")
|
||||
|
||||
import board;
|
||||
|
||||
from kmk.kmk_keyboard import KMKKeyboard
|
||||
from kmk.keys import KC
|
||||
from kmk.scanners import DiodeOrientation
|
||||
from kmk.modules.layers import Layers
|
||||
from kmk.modules.tapdance import TapDance
|
||||
from kmk.modules.macros import Macros
|
||||
|
||||
print(dir(board))
|
||||
|
||||
keyboard = KMKKeyboard()
|
||||
|
||||
keyboard.modules.append(Layers())
|
||||
tapdance = TapDance()
|
||||
tapdance.tap_time = 750
|
||||
keyboard.modules.append(tapdance)
|
||||
keyboard.modules.append(Macros())
|
||||
|
||||
keyboard.col_pins = (board.GP1, board.GP0, board.GP28, board.GP29, board.GP3)
|
||||
keyboard.row_pins = (board.GP26, board.GP27, board.GP4, board.GP5)
|
||||
|
||||
keyboard.diode_orientation = DiodeOrientation.COL2ROW
|
||||
|
||||
QWERTY_LAYER = KC.TO(0)
|
||||
NUM_LAYER = KC.TO(1)
|
||||
FUNC_LAYER = KC.TO(2)
|
||||
MOUSE_LAYER = KC.TO(3)
|
||||
|
||||
tapdance.tap_dance_keys = {
|
||||
KC.SPACE: [KC.SPACE, QWERTY_LAYER, NUM_LAYER, FUNC_LAYER, MOUSE_LAYER],
|
||||
KC.LGUI: [KC.LGUI, KC.LGUI(KC.C), KC.LGUI(KC.V)],
|
||||
KC.Q: [KC.Q, KC.TAB, KC.ESC]
|
||||
}
|
||||
|
||||
keyboard.keymap = [
|
||||
[ #QWERTY LEFT
|
||||
KC.Q, KC.W, KC.E, KC.R, KC.T,
|
||||
KC.A, KC.S, KC.D, KC.F, KC.G,
|
||||
KC.Z, KC.X, KC.C, KC.V, KC.SPACE,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
],
|
||||
[#NUM LAYER
|
||||
KC.N1, KC.N2, KC.N3, KC.N4, KC.N5,
|
||||
KC.TAB, KC.MS_UP, KC.NO, KC.NO, KC.MS_LEFT,
|
||||
KC.MS_LEFT, KC.MS_DOWN, KC.MS_RIGHT, KC.NO, KC.SPACE,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
],
|
||||
[#FUNC LAYER
|
||||
KC.F1, KC.F2, KC.F3, KC.F4, KC.F5,
|
||||
KC.NO, KC.NO, KC.NO, KC.NO, KC.NO,
|
||||
KC.NO, KC.NO, KC.NO, KC.NO, KC.NO,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
],
|
||||
[#MOUSE LAYER
|
||||
KC.NO, KC.NO, KC.MS_UP, KC.NO, KC.NO,
|
||||
KC.NO, KC.MS_LEFT, KC.MS_BTN1, KC.MS_RIGHT, KC.NO,
|
||||
KC.NO, KC.NO, KC.MS_DOWN, KC.NO, KC.NO,
|
||||
KC.LSHIFT, KC.LCTRL, KC.LALT, KC.LGUI
|
||||
]
|
||||
]
|
||||
|
||||
if __name__ == '__main__':
|
||||
keyboard.go()
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +0,0 @@
|
|||
# Firmware
|
||||
|
||||
In here you'll find 2 folders:
|
||||
|
||||
**QMK**: This is a port of [QMK](https://docs.qmk.fm/) to Orpheuspad, with VIA support. It's configured using C++ and JSON, and is generally harder to set up // configure \
|
||||
**KMK**: This is a port of [KMK](https://github.com/KMKfw/kmk_firmware). Compared to QMK, it's less powerful, but offers easier configuration through 2 python files/
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
# DEAD CODE, NOT DONE!
|
||||
|
||||
print("Hackpad Testing!")
|
||||
|
||||
# Basic imports for orpheuspad
|
||||
import board
|
||||
|
||||
from kmk.kmk_keyboard import KMKKeyboard
|
||||
from kmk.keys import KC
|
||||
from kmk.scanners import DiodeOrientation
|
||||
|
||||
# Extra features
|
||||
|
||||
from kmk.modules.encoder import EncoderHandler
|
||||
from kmk.extensions.RGB import RGB
|
||||
|
||||
|
||||
print(dir(board))
|
||||
|
||||
keyboard = KMKKeyboard()
|
||||
|
||||
keyboard.col_pins = (board.GP27, board.GP26)
|
||||
keyboard.row_pins = (board.GP29, board.GP28)
|
||||
|
||||
keyboard.diode_orientation = DiodeOrientation.COL2ROW
|
||||
|
||||
# RGB imports
|
||||
# TODO: ADD PINS
|
||||
rgb = RGB(pixel_pin=board.GP3, num_pixels=2)
|
||||
keyboard.extensions.append(rgb)
|
||||
|
||||
# TODO: add OLED display
|
||||
|
||||
encoder_handler = EncoderHandler()
|
||||
encoder_handler.pins = ((keyboard.pin_a, keyboard.pin_b, None, False))
|
||||
|
||||
|
||||
keyboard.keymap = [ # TODO: fix this lol
|
||||
[
|
||||
# Example for rotary encoder
|
||||
KC.AUDIO_VOL_DOWN,
|
||||
KC.AUDIO_VOL_UP,
|
||||
|
||||
# switches
|
||||
KC.F,
|
||||
KC.U, KC.C, KC.K,
|
||||
]
|
||||
]
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
keyboard.go()
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
#define ENCODER_A_PINS { GP2 }
|
||||
#define ENCODER_B_PINS { GP1 }
|
||||
|
||||
#define WS2812_DI_PIN GP3
|
||||
#define RGBLIGHT_LED_COUNT 2
|
||||
|
||||
#define I2C_DRIVER I2CD1
|
||||
#define I2C1_SDA_PIN GP6
|
||||
#define I2C1_SCL_PIN GP7
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
{
|
||||
"manufacturer": "Alex Ren",
|
||||
"keyboard_name": "orpheuspad",
|
||||
"maintainer": "qcoral",
|
||||
"bootloader": "rp2040",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": false,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["GP27", "GP26", "GP4"],
|
||||
"rows": ["GP29", "GP28"]
|
||||
},
|
||||
"processor": "RP2040",
|
||||
"url": "https://hackpad.hackclub.com",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0000",
|
||||
"vid": "0xFEED"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 1, "y": 1},
|
||||
{"matrix": [0, 1], "x": 2, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2, "y": 1},
|
||||
{"matrix": [1, 0], "x": 0, "y": 0},
|
||||
{"matrix": [1, 1], "x": 1, "y": 0},
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
// Copyright 2023 QMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
enum layer_names {
|
||||
_BASE,
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
/*
|
||||
* ┬───┐
|
||||
* │ 2 │
|
||||
* ├───┼───┼───┤
|
||||
* │ 3 │ 5 │ 6 │
|
||||
* └───┴───┴───┘
|
||||
*/
|
||||
|
||||
/*
|
||||
The wiring is a little convoluted - refer to the diagram below:
|
||||
|
||||
*/
|
||||
[_BASE] = LAYOUT(
|
||||
KC_P7, KC_P8, KC_P4,
|
||||
KC_P5, KC_P6
|
||||
)
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM encoder_map[][1][2] = {
|
||||
[0] = { ENCODER_CCW_CW(MS_WHLU, MS_WHLD) },
|
||||
};
|
||||
|
||||
|
||||
#ifdef OLED_ENABLE
|
||||
bool oled_task_user(void) {
|
||||
// Host Keyboard Layer Status
|
||||
oled_write_P(PSTR("Layer: "), false);
|
||||
|
||||
switch (get_highest_layer(layer_state)) {
|
||||
case _BASE:
|
||||
oled_write_P(PSTR("Default\n"), false);
|
||||
break;
|
||||
default:
|
||||
// Or use the write_ln shortcut over adding '\n' to the end of your string
|
||||
oled_write_ln_P(PSTR("Undefined"), false);
|
||||
}
|
||||
|
||||
// Host Keyboard LED Status
|
||||
led_t led_state = host_keyboard_led_state();
|
||||
oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
|
||||
oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
|
||||
oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
|
||||
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
# VIA Support
|
||||
Not complete.
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
// Copyright 2023 QMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
enum layer_names {
|
||||
_BASE,
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
/*
|
||||
* ┬───┐
|
||||
* │ 2 │
|
||||
* ├───┼───┼───┤
|
||||
* │ 3 │ 5 │ 6 │
|
||||
* └───┴───┴───┘
|
||||
*/
|
||||
|
||||
/*
|
||||
The wiring is a little convoluted - refer to the diagram below:
|
||||
|
||||
*/
|
||||
[_BASE] = LAYOUT(
|
||||
KC_P7, KC_P8, KC_P4,
|
||||
KC_P5, KC_P6
|
||||
)
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM encoder_map[][1][2] = {
|
||||
[0] = { ENCODER_CCW_CW(MS_WHLU, MS_WHLD) },
|
||||
};
|
||||
|
||||
|
||||
#ifdef OLED_ENABLE
|
||||
bool oled_task_user(void) {
|
||||
// Host Keyboard Layer Status
|
||||
oled_write_P(PSTR("Layer: "), false);
|
||||
|
||||
switch (get_highest_layer(layer_state)) {
|
||||
case _BASE:
|
||||
oled_write_P(PSTR("Default\n"), false);
|
||||
break;
|
||||
default:
|
||||
// Or use the write_ln shortcut over adding '\n' to the end of your string
|
||||
oled_write_ln_P(PSTR("Undefined"), false);
|
||||
}
|
||||
|
||||
// Host Keyboard LED Status
|
||||
led_t led_state = host_keyboard_led_state();
|
||||
oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
|
||||
oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
|
||||
oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
|
||||
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
|
@ -1 +0,0 @@
|
|||
VIA_ENABLE = yes
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# orpheuspad
|
||||
|
||||

|
||||
|
||||
*A short description of the keyboard/project*
|
||||
|
||||
* Keyboard Maintainer: [Alex Ren](https://github.com/qcoral)
|
||||
* Hardware Supported: *The PCBs, controllers supported*
|
||||
* Hardware Availability: *Links to where you can find this hardware*
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make orpheuspad:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make orpheuspad:default:flash
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
||||
|
||||
## Bootloader
|
||||
|
||||
Enter the bootloader in 3 ways:
|
||||
|
||||
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
|
||||
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
OLED_ENABLE = yes
|
||||
OLED_TRANSPORT = i2c
|
||||
OLED_DRIVER = ssd1306
|
||||
|
||||
RGBLIGHT_ENABLE = yes
|
||||
WS2812_DRIVER = vendor
|
||||
|
||||
ENCODER_ENABLE = yes
|
||||
ENCODER_MAP_ENABLE = yes
|
||||
# required for rp2040
|
||||
LTO_ENABLE = yes
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 101 KiB |
|
|
@ -1,8 +0,0 @@
|
|||
(fp_lib_table
|
||||
(version 7)
|
||||
(lib (name "Kailh_PG1353_Solderable")(type "KiCad")(uri "${KIPRJMOD}/libraries/MX_V2/Kailh_PG1353_Solderable.pretty")(options "")(descr ""))
|
||||
(lib (name "MX_Solderable")(type "KiCad")(uri "${KIPRJMOD}/libraries/MX_V2/MX_Solderable.pretty")(options "")(descr ""))
|
||||
(lib (name "Seeed Studio XIAO Series Library")(type "KiCad")(uri "${KIPRJMOD}/libraries/OPL_Kicad_Library/Seeed Studio XIAO Series Library")(options "")(descr ""))
|
||||
(lib (name "Rotary_Encoder")(type "KiCad")(uri "${KIPRJMOD}/libraries/Rotary_Encoder.pretty")(options "")(descr ""))
|
||||
(lib (name "assets")(type "KiCad")(uri "${KIPRJMOD}/assets")(options "")(descr ""))
|
||||
)
|
||||
BIN
hackpads/orpheuspad/pcb/libraries/.DS_Store
vendored
BIN
hackpads/orpheuspad/pcb/libraries/.DS_Store
vendored
Binary file not shown.
BIN
hackpads/orpheuspad/pcb/libraries/MX_V2/.DS_Store
vendored
BIN
hackpads/orpheuspad/pcb/libraries/MX_V2/.DS_Store
vendored
Binary file not shown.
|
|
@ -1 +0,0 @@
|
|||
**/__pycache__/
|
||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1.25U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15) (tstamp cb764aad-6b18-4127-92b4-024a475df591)) (fp_line (start 11.90625 -9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 8cd9b128-1b6a-404d-9264-42520593e71e)) (fp_line (start 11.90625 9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 3e2ec1f3-41e2-4f84-97b4-c53898152f35)) (fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 7c66d0d4-26e8-4dc5-bae4-960ed252c0b9)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1.5U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1.5U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 14.287500000000001 9.525) (end -14.287500000000001 9.525) (layer Dwgs.User) (width 0.15) (tstamp ce494295-bbdb-4f0a-9b26-fb0c3090e00d)) (fp_line (start 14.287500000000001 -9.525) (end -14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp a6dcfc47-96ac-47db-ad65-87678157b9e3)) (fp_line (start 14.287500000000001 9.525) (end 14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 0d80c430-681c-4531-8781-45941607dcc2)) (fp_line (start -14.287500000000001 9.525) (end -14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp d6b6c97f-f158-4861-a733-3cbd7555ff11)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1.75U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1.75U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15) (tstamp 526105bb-a34e-45f8-a77a-c51d0596c06f)) (fp_line (start 16.66875 -9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 0ff40098-df5f-4c10-b12f-b9d8a5104990)) (fp_line (start 16.66875 9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 56403670-f538-4f67-b9bd-72183c3ceba9)) (fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 2dc04ac7-70b2-42cf-a57c-63aefe16ba18)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15) (tstamp 72178b26-698a-493f-beb0-d32202d45ab6)) (fp_line (start 9.525 -9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 83230241-4f4a-4b2c-8e8a-2adfa6831dbb)) (fp_line (start 9.525 9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 497c7e83-6927-4192-a3b3-84ef76586dc3)) (fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp d7eba7df-94bc-4237-902f-7ce46921cda5)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2.25U-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2.25U-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 21.431250000000002 9.525) (end -21.431250000000002 9.525) (layer Dwgs.User) (width 0.15) (tstamp b32e9a9f-e447-4c25-94d4-0ac754c74ccd)) (fp_line (start 21.431250000000002 -9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 5410aff4-297c-4286-9ed4-4be163983999)) (fp_line (start 21.431250000000002 9.525) (end 21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp b1c18aeb-2bb5-43ee-ba4b-620dce82278e)) (fp_line (start -21.431250000000002 9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 13a49dbc-cdff-4d95-85f1-4fe5d98c627c)) (pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 2902f037-e787-43f4-aa73-cd9d8caa3578)) (pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp a7a434ba-c30a-41bc-9a6e-4df642563ec2)) (pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 48c60381-f194-4b1a-8efc-8e3167bd9aeb)) (pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp a75139ec-d70f-4ea4-be3d-fc21e69ab57a)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2.25U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 21.431250000000002 9.525) (end -21.431250000000002 9.525) (layer Dwgs.User) (width 0.15) (tstamp b32e9a9f-e447-4c25-94d4-0ac754c74ccd)) (fp_line (start 21.431250000000002 -9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 5410aff4-297c-4286-9ed4-4be163983999)) (fp_line (start 21.431250000000002 9.525) (end 21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp b1c18aeb-2bb5-43ee-ba4b-620dce82278e)) (fp_line (start -21.431250000000002 9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 13a49dbc-cdff-4d95-85f1-4fe5d98c627c)) (pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 88f7e90b-13ea-468e-8945-135a40ef02bb)) (pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 9faee0b1-bc5d-4b8b-92aa-744ff3d2537f)) (pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 2e7b984f-5b56-49ac-9d61-f40c3d45057f)) (pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 49e4e689-f86e-478e-a207-80b3533735f6)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2.75U-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2.75U-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 26.19375 9.525) (end -26.19375 9.525) (layer Dwgs.User) (width 0.15) (tstamp f1ed5606-9bef-4ab8-8cdf-dd0473f84f36)) (fp_line (start 26.19375 -9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 7ec72a91-595a-4662-acfe-7dcabdefb318)) (fp_line (start 26.19375 9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 7ec9d07b-5b65-4120-9f08-b4c42e7725b4)) (fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 65965f3d-5378-4a30-b209-dc802f4b5bf8)) (pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 66607b3e-54bf-4408-8f39-2cddfd847d5a)) (pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 28d6fdac-2162-4c7e-a519-98f18610e843)) (pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp c1fce67b-088d-450d-8003-364dbff2bb54)) (pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 9a360af1-3137-47b6-8001-a549956a87d7)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2.75U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2.75U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 26.19375 9.525) (end -26.19375 9.525) (layer Dwgs.User) (width 0.15) (tstamp f1ed5606-9bef-4ab8-8cdf-dd0473f84f36)) (fp_line (start 26.19375 -9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 7ec72a91-595a-4662-acfe-7dcabdefb318)) (fp_line (start 26.19375 9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 7ec9d07b-5b65-4120-9f08-b4c42e7725b4)) (fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 65965f3d-5378-4a30-b209-dc802f4b5bf8)) (pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 943ae35d-fdb0-4257-bd22-ce4e9fdb936d)) (pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 63eb99e8-856b-4f39-840f-b38fedf7db46)) (pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 96f9062f-6f73-4b24-8652-fd13b0ee27f8)) (pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 39f7f531-29e9-4d5b-a588-545e2feac9a4)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2U-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2U-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 19.05 9.525) (end -19.05 9.525) (layer Dwgs.User) (width 0.15) (tstamp 77a29dbb-6066-437d-806e-56f9bf5a4cc8)) (fp_line (start 19.05 -9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp f32cb924-26d9-466f-8172-d111cba8267f)) (fp_line (start 19.05 9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 21b532eb-75c0-41af-999b-38234fb777ee)) (fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 636adec8-0bce-4cb5-a0fb-7d2f748c0186)) (pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 762010f1-f70e-4fa7-8dd5-e025495ea44a)) (pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp ca8e3f68-2134-42a4-8d24-164b0e125836)) (pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp efb14d76-0c37-4802-bec9-227c3ca9a529)) (pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 2f3e86a9-9ef1-4c3e-b37f-dfdb67b40040)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2U-Vertical-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2U-Vertical-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 9.525 19.05) (end -9.525 19.05) (layer Dwgs.User) (width 0.15) (tstamp 5127ad3f-d505-44b4-b893-f9248734716a)) (fp_line (start 9.525 -19.05) (end -9.525 -19.05) (layer Dwgs.User) (width 0.15) (tstamp e9237845-9ce7-4b87-b063-a147668bbf77)) (fp_line (start 9.525 19.05) (end 9.525 -19.05) (layer Dwgs.User) (width 0.15) (tstamp 8ee96a3f-2837-4851-ab6d-d2f52e95c258)) (fp_line (start -9.525 19.05) (end -9.525 -19.05) (layer Dwgs.User) (width 0.15) (tstamp 57ca5d7f-e237-479b-8e86-73070c718654)) (pad "" np_thru_hole circle (at -6.985 11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp cd656327-a068-4cb3-83bd-72324680fded)) (pad "" np_thru_hole circle (at -6.985 -11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 161035fa-5b10-45ed-a05b-2432da79cee7)) (pad "" np_thru_hole circle (at 8.255 11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 2619ebfa-e2bd-45ef-9d41-7f2c00b084fb)) (pad "" np_thru_hole circle (at 8.255 -11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp eed003ab-b4ae-494b-b72c-aa05f1591af0)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2U-Vertical" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2U-Vertical" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 9.525 19.05) (end -9.525 19.05) (layer Dwgs.User) (width 0.15) (tstamp 5127ad3f-d505-44b4-b893-f9248734716a)) (fp_line (start 9.525 -19.05) (end -9.525 -19.05) (layer Dwgs.User) (width 0.15) (tstamp e9237845-9ce7-4b87-b063-a147668bbf77)) (fp_line (start 9.525 19.05) (end 9.525 -19.05) (layer Dwgs.User) (width 0.15) (tstamp 8ee96a3f-2837-4851-ab6d-d2f52e95c258)) (fp_line (start -9.525 19.05) (end -9.525 -19.05) (layer Dwgs.User) (width 0.15) (tstamp 57ca5d7f-e237-479b-8e86-73070c718654)) (pad "" np_thru_hole circle (at 6.985 11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 9e4fd76b-0404-4ce9-a0c2-eada7d5cf224)) (pad "" np_thru_hole circle (at 6.985 -11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 4c736fb6-2527-44eb-b9eb-2f93ccbc108d)) (pad "" np_thru_hole circle (at -8.255 11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 7c69285b-b251-42b5-ada9-b8abbc7e95e1)) (pad "" np_thru_hole circle (at -8.255 -11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 51839e76-010e-489f-ad3d-7196f8d9c950)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 19.05 9.525) (end -19.05 9.525) (layer Dwgs.User) (width 0.15) (tstamp 77a29dbb-6066-437d-806e-56f9bf5a4cc8)) (fp_line (start 19.05 -9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp f32cb924-26d9-466f-8172-d111cba8267f)) (fp_line (start 19.05 9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 21b532eb-75c0-41af-999b-38234fb777ee)) (fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 636adec8-0bce-4cb5-a0fb-7d2f748c0186)) (pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 51504c2c-7b6a-401c-bace-dcb69f1909fa)) (pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 1837d36a-3df9-4ce8-af46-5bc9e72e3643)) (pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp df0a8f5f-0d47-4d6d-830d-91fb56bfd334)) (pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 4162f0b7-a1f8-4966-8c46-44550dcdead9)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-6.25U-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "6.25U-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 59.53125 9.525) (end -59.53125 9.525) (layer Dwgs.User) (width 0.15) (tstamp 105d7273-a56d-4aba-9d1a-70719fd119bb)) (fp_line (start 59.53125 -9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp c1a856a0-18e1-46db-8fdf-a78f82e264c0)) (fp_line (start 59.53125 9.525) (end 59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 55f4b4ef-b5ce-44a6-a7e3-05e756914515)) (fp_line (start -59.53125 9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 3c8b0194-6950-4354-9fdb-a973bf3b4cbe)) (pad "" np_thru_hole circle (at -50 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp ce310054-9eb2-4f17-9c74-4a9c358f2dc4)) (pad "" np_thru_hole circle (at 50 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 4964653c-17b7-4e7e-ad7f-0e6b50fa6f0a)) (pad "" np_thru_hole circle (at -50 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp a4e68f92-4c0b-46ee-810c-b0732604ab86)) (pad "" np_thru_hole circle (at 50 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 61e5ee27-e002-4196-ad10-60bc1e0cc41e)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-6.25U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "6.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 59.53125 9.525) (end -59.53125 9.525) (layer Dwgs.User) (width 0.15) (tstamp 105d7273-a56d-4aba-9d1a-70719fd119bb)) (fp_line (start 59.53125 -9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp c1a856a0-18e1-46db-8fdf-a78f82e264c0)) (fp_line (start 59.53125 9.525) (end 59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 55f4b4ef-b5ce-44a6-a7e3-05e756914515)) (fp_line (start -59.53125 9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 3c8b0194-6950-4354-9fdb-a973bf3b4cbe)) (pad "" np_thru_hole circle (at -50 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp f95dac69-0d8c-4dc2-996e-0b4a1a2aa220)) (pad "" np_thru_hole circle (at 50 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp eb315c99-45ea-48a0-ae2c-df5909fc8716)) (pad "" np_thru_hole circle (at -50 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 41220edf-f15d-429d-9802-1d7219061c18)) (pad "" np_thru_hole circle (at 50 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 59ff547d-5127-4fa6-8484-a33e17922f1b)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-6.5U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "6.5U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 61.9125 9.525) (end -61.9125 9.525) (layer Dwgs.User) (width 0.15) (tstamp 6977c01b-893b-431d-8a48-19c0ab175aea)) (fp_line (start 61.9125 -9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 9c82d20d-76bf-405e-8ae3-054685aa312f)) (fp_line (start 61.9125 9.525) (end 61.9125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 0b8cfafd-3d7f-4384-85ac-5e0b94d3bfec)) (fp_line (start -61.9125 9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 04a15c7e-5625-4f26-aa4a-69b2a2d5dc7f)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-7U-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "7U-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 66.675 9.525) (end -66.675 9.525) (layer Dwgs.User) (width 0.15) (tstamp e710f7c4-7eca-49ab-880a-cace6f21f1e8)) (fp_line (start 66.675 -9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 1386b3a6-279a-42bf-96cc-d89cb43c7327)) (fp_line (start 66.675 9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 9552850f-72fc-404e-897f-a67c7c4ff5bd)) (fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 5fe8a9ce-232c-473b-9256-1f273541469e)) (pad "" np_thru_hole circle (at -57.15 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp b712a017-ae2f-488d-b685-78d90f24b4f3)) (pad "" np_thru_hole circle (at 57.15 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp f40fa014-a7ba-4fbf-86f6-ac46b86d737a)) (pad "" np_thru_hole circle (at -57.15 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp bd26e0b4-c667-4f6d-90e2-9f9e012699f6)) (pad "" np_thru_hole circle (at 57.15 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 666b4c17-173b-466e-a554-050c2161e2a9)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-7U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "7U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 66.675 9.525) (end -66.675 9.525) (layer Dwgs.User) (width 0.15) (tstamp e710f7c4-7eca-49ab-880a-cace6f21f1e8)) (fp_line (start 66.675 -9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 1386b3a6-279a-42bf-96cc-d89cb43c7327)) (fp_line (start 66.675 9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 9552850f-72fc-404e-897f-a67c7c4ff5bd)) (fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 5fe8a9ce-232c-473b-9256-1f273541469e)) (pad "" np_thru_hole circle (at -57.15 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp f8103d43-7528-4dc6-8dd5-089b65e99796)) (pad "" np_thru_hole circle (at 57.15 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp a0ff9903-697d-419f-b5d3-a49fcb9898dd)) (pad "" np_thru_hole circle (at -57.15 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp f90909b1-c6b9-4ebf-8fd1-8874b1ff294a)) (pad "" np_thru_hole circle (at 57.15 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp a20d6053-cffc-4305-b785-be96082cef9c)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-ISO-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "ISO-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start -11.90625 19.05) (end -11.90625 0) (layer Dwgs.User) (width 0.15) (tstamp 33f7c90c-026c-4e58-bb81-26d12d165763)) (fp_line (start -11.90625 0) (end -16.66875 0) (layer Dwgs.User) (width 0.15) (tstamp 789017a0-2e5c-4f3c-a48f-0db85474a20c)) (fp_line (start -16.66875 -19.05) (end 11.90625 -19.05) (layer Dwgs.User) (width 0.15) (tstamp a518b9db-d4d4-4d5e-bc43-082b8930d671)) (fp_line (start 11.90625 -19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15) (tstamp 208a67dd-ee13-406d-85ec-707b1ce27f2e)) (fp_line (start -11.90625 19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15) (tstamp 664040e8-e7db-43ff-8a3d-e721822eb6c0)) (fp_line (start -16.66875 -19.05) (end -16.66875 0) (layer Dwgs.User) (width 0.15) (tstamp 2c392934-76d2-45a5-ba46-618618911f61)) (pad "" np_thru_hole circle (at -6.985 11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp ed670121-b285-426c-b58c-4ee34a3d432f)) (pad "" np_thru_hole circle (at -6.985 -11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 4f6c5565-0b0d-46e8-87dc-542408b54659)) (pad "" np_thru_hole circle (at 8.255 11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp a3e2c7dd-5ac0-4624-a4da-d8bdb7943442)) (pad "" np_thru_hole circle (at 8.255 -11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 7626bc04-7a60-408b-a6ce-6d0d12842636)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-ISO-Rotated-ReversedStabilizers" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "ISO-Rotated-ReversedStabilizers" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 19.05 11.90625) (end 19.05 -11.90625) (layer "Dwgs.User") (width 0.15) (tstamp fad52b1c-da10-45f4-8c5c-9ff2912ad24f)) (fp_line (start 0 11.90625) (end 0 16.66875) (layer "Dwgs.User") (width 0.15) (tstamp f36f4b08-0600-4bf6-9253-8e749a488b43)) (fp_line (start -19.05 -11.90625) (end 19.05 -11.90625) (layer "Dwgs.User") (width 0.15) (tstamp e332633b-7324-43bc-932e-7a620e45d322)) (fp_line (start -19.05 16.66875) (end -19.05 -11.90625) (layer "Dwgs.User") (width 0.15) (tstamp 0a96ce62-ad8a-4111-bbbf-3c423ef53072)) (fp_line (start 19.05 11.90625) (end 0 11.90625) (layer "Dwgs.User") (width 0.15) (tstamp df76f45b-270a-4fbf-b1b7-5e8b8bc0c393)) (fp_line (start -19.05 16.66875) (end 0 16.66875) (layer "Dwgs.User") (width 0.15) (tstamp 5e7e0465-093e-404a-b991-db39ab812354)) (pad "" np_thru_hole circle (at -11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 0aa3f5f1-3d8b-4834-a9aa-14ecf122a993)) (pad "" np_thru_hole circle (at 11.938 6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp d01a772a-ac83-47fc-b4af-5a9ec5bf0ff5)) (pad "" np_thru_hole circle (at -11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp ce66d392-962f-485a-8487-2bd3a992277b)) (pad "" np_thru_hole circle (at 11.938 -8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 366effde-6ab3-43d6-ad9e-ed4f210c1c97)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-ISO-Rotated" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "ISO-Rotated" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 19.05 11.90625) (end 19.05 -11.90625) (layer "Dwgs.User") (width 0.15) (tstamp fad52b1c-da10-45f4-8c5c-9ff2912ad24f)) (fp_line (start 0 11.90625) (end 0 16.66875) (layer "Dwgs.User") (width 0.15) (tstamp f36f4b08-0600-4bf6-9253-8e749a488b43)) (fp_line (start -19.05 -11.90625) (end 19.05 -11.90625) (layer "Dwgs.User") (width 0.15) (tstamp e332633b-7324-43bc-932e-7a620e45d322)) (fp_line (start -19.05 16.66875) (end -19.05 -11.90625) (layer "Dwgs.User") (width 0.15) (tstamp 0a96ce62-ad8a-4111-bbbf-3c423ef53072)) (fp_line (start 19.05 11.90625) (end 0 11.90625) (layer "Dwgs.User") (width 0.15) (tstamp df76f45b-270a-4fbf-b1b7-5e8b8bc0c393)) (fp_line (start -19.05 16.66875) (end 0 16.66875) (layer "Dwgs.User") (width 0.15) (tstamp 5e7e0465-093e-404a-b991-db39ab812354)) (pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 21b7d1dc-21ec-40d5-90c0-dd9bff127a52)) (pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 9c58042d-467a-49f6-89cb-d9821616d7c8)) (pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp b4e62bb7-c9cc-4abb-9a0d-f35018638f94)) (pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp b332b842-da45-45aa-a589-e4a47ccd4bb1)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-ISO" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "ISO" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start -11.90625 19.05) (end -11.90625 0) (layer Dwgs.User) (width 0.15) (tstamp 33f7c90c-026c-4e58-bb81-26d12d165763)) (fp_line (start -11.90625 0) (end -16.66875 0) (layer Dwgs.User) (width 0.15) (tstamp 789017a0-2e5c-4f3c-a48f-0db85474a20c)) (fp_line (start -16.66875 -19.05) (end 11.90625 -19.05) (layer Dwgs.User) (width 0.15) (tstamp a518b9db-d4d4-4d5e-bc43-082b8930d671)) (fp_line (start 11.90625 -19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15) (tstamp 208a67dd-ee13-406d-85ec-707b1ce27f2e)) (fp_line (start -11.90625 19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15) (tstamp 664040e8-e7db-43ff-8a3d-e721822eb6c0)) (fp_line (start -16.66875 -19.05) (end -16.66875 0) (layer Dwgs.User) (width 0.15) (tstamp 2c392934-76d2-45a5-ba46-618618911f61)) (pad "" np_thru_hole circle (at 6.985 11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 2e8d3872-4afa-47ee-a7ca-1c6618c619e8)) (pad "" np_thru_hole circle (at 6.985 -11.938) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 72756b18-cb28-4e4b-b92c-9ac9e6db5de9)) (pad "" np_thru_hole circle (at -8.255 11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp cad62aba-75c3-45d8-9b61-1ab8f42edaa9)) (pad "" np_thru_hole circle (at -8.255 -11.938) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp efc00158-c2e3-4b49-a1d2-542786afb5c0)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1.25U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15) (tstamp 0d18e5b3-ea19-44ee-8b3a-e3f365eb4221)) (fp_line (start 11.90625 -9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 4ed4aab0-b151-4b46-b595-53c17812d747)) (fp_line (start 11.90625 9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 4e77cf10-da50-464d-ac87-9c2a1906d8e7)) (fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 3178d7f1-c8a4-49b6-a118-7807ac7381e5)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1.5U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1.5U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 14.287500000000001 9.525) (end -14.287500000000001 9.525) (layer Dwgs.User) (width 0.15) (tstamp de44335a-6670-4733-a53c-def1b0911e2a)) (fp_line (start 14.287500000000001 -9.525) (end -14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp c98a0e68-f8f7-4466-9769-b97694177134)) (fp_line (start 14.287500000000001 9.525) (end 14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp d58c0d7b-25cb-4af4-bbec-d5500f620274)) (fp_line (start -14.287500000000001 9.525) (end -14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 31160b20-0590-40af-b681-0ed9ca0c3056)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1.75U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1.75U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15) (tstamp 536cad77-af9d-473b-94c8-9eeb8711d195)) (fp_line (start 16.66875 -9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp b8070e3a-0ac7-44a5-b044-4935d6325dc6)) (fp_line (start 16.66875 9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 31bb1600-828c-43ba-8db1-73f4132341fd)) (fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 149ee1b6-0242-45ad-bc88-8ee462c45ea4)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-1U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "1U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15) (tstamp b3e936f1-4db5-475a-a3d1-300758e02194)) (fp_line (start 9.525 -9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp a8b2fb1d-247c-4de8-8694-95b1d74d67bb)) (fp_line (start 9.525 9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp d95f340b-2601-419c-9845-9473dfae2f5d)) (fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 451e206a-9779-4e6b-9aac-4412d61bf96f)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2.25U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 21.431250000000002 9.525) (end -21.431250000000002 9.525) (layer Dwgs.User) (width 0.15) (tstamp 3cfb1caa-5d9f-4e80-bdb2-d0fcd3346fa5)) (fp_line (start 21.431250000000002 -9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 79e36474-2405-430c-8812-96616f0a7cc2)) (fp_line (start 21.431250000000002 9.525) (end 21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp def8ab42-e9c3-4e5b-b0d9-c2366edb948f)) (fp_line (start -21.431250000000002 9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 0b30e47c-c42e-4d05-aff6-af133494dd38)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2.75U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2.75U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 26.19375 9.525) (end -26.19375 9.525) (layer Dwgs.User) (width 0.15) (tstamp 57ca230f-02d3-4178-ac09-aead61e6f497)) (fp_line (start 26.19375 -9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 1e37b8e5-3595-4c14-a4ed-7f53d67e9084)) (fp_line (start 26.19375 9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 5b2e29df-2c44-4645-bd1c-e53e8cf1d184)) (fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp dbd53230-6ec1-44e9-89b3-4a164f8c1201)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-2U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "2U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 19.05 9.525) (end -19.05 9.525) (layer Dwgs.User) (width 0.15) (tstamp c208f7d6-0203-464e-b563-30b9da8314e0)) (fp_line (start 19.05 -9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 4ab71437-86cd-488e-9d01-b030bf4043ed)) (fp_line (start 19.05 9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp d3bea83a-026c-4777-be81-4aa5fe93bf2c)) (fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15) (tstamp decc7183-21b7-4ab9-889d-c0e788cb60ac)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-3U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "3U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 28.575000000000003 9.525) (end -28.575000000000003 9.525) (layer Dwgs.User) (width 0.15) (tstamp 28b3e792-cf5a-4703-ab43-7ed8e55d5e3c)) (fp_line (start 28.575000000000003 -9.525) (end -28.575000000000003 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 707e08be-da05-4506-a375-810df168a7a0)) (fp_line (start 28.575000000000003 9.525) (end 28.575000000000003 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 6978c80b-ca83-4865-b491-e6e09e643ba6)) (fp_line (start -28.575000000000003 9.525) (end -28.575000000000003 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 087c9081-bfd4-446b-a968-c45e1d5679dd)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-6.25U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "6.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 59.53125 9.525) (end -59.53125 9.525) (layer Dwgs.User) (width 0.15) (tstamp 9780288a-3cc0-4e55-87f1-a1381a044139)) (fp_line (start 59.53125 -9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 3b4328a8-7a43-4b06-8244-ddd5b87a4f67)) (fp_line (start 59.53125 9.525) (end 59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp eb7b52ea-b4aa-45fb-9b68-b7e0740c601e)) (fp_line (start -59.53125 9.525) (end -59.53125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp ed7c0c95-db0a-4e49-acca-a2ee59d33b92)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-6.5U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "6.5U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 61.9125 9.525) (end -61.9125 9.525) (layer Dwgs.User) (width 0.15) (tstamp 3c014a10-5f5e-40a4-8caf-419d9939765c)) (fp_line (start 61.9125 -9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 110f578e-9689-4adb-b9bb-15df3fb810fb)) (fp_line (start 61.9125 9.525) (end 61.9125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 92e0735a-c4da-4325-aefa-087eedf0d7a7)) (fp_line (start -61.9125 9.525) (end -61.9125 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 3128b505-f67f-4515-b6aa-0e49930ea0ae)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-7U" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "7U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start 66.675 9.525) (end -66.675 9.525) (layer Dwgs.User) (width 0.15) (tstamp dfb2017a-293f-485c-b238-26122f019e71)) (fp_line (start 66.675 -9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 6519d0d1-497f-48cd-93a0-753b87cf3b3e)) (fp_line (start 66.675 9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 79a48815-46e6-4987-ad5c-acbb77b7afe8)) (fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 972cba21-eadf-4c09-bf8a-b159d437958b)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "ALPS-ISO" (version 20211014) (generator pcbnew) (layer "F.Cu") (tedit 5CF31DEF) (attr through_hole) (fp_text reference "REF**" (at 0 3.175) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 457ccf5a-5a2a-4500-9abc-eea24f520126)) (fp_text value "ISO" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 3dd8e20f-b384-4f25-a6e3-ea00fb0e7bf1)) (fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5987ac71-f023-4d7d-8582-5020dd45255c)) (fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5a9e6516-daff-46b3-89eb-35e226de0642)) (fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 64fc0026-efb3-4467-937d-07e4906e257d)) (fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c467cbc-3b19-40b5-b739-a032138ec1e0)) (fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 751ae621-3a9f-4edc-8d0b-12274e293f6b)) (fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7a895e2a-362d-44c2-8fdf-5297370d6807)) (fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9e24d424-25ae-493e-aaac-37e970d6516a)) (fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b2aa4844-59d8-47ab-99e2-704eb7844a7e)) (pad "1" thru_hole circle (at -2.5 -4) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp d0700dbc-d5c6-436f-8d37-86fdedb7d26a)) (pad "2" thru_hole circle (at 2.5 -4.5) (size 2.3 2.3) (drill 1.524) (layers *.Cu "B.Mask") (tstamp 4c5b25bf-23be-43ff-a646-2329f951b5ed)) (fp_line (start -11.90625 19.05) (end -11.90625 0) (layer Dwgs.User) (width 0.15) (tstamp 8b4ac354-68cf-4b45-8130-cee00cc2b6ae)) (fp_line (start -11.90625 0) (end -16.66875 0) (layer Dwgs.User) (width 0.15) (tstamp 4277d17e-9157-4a1b-a3e8-ba96fe9e579d)) (fp_line (start -16.66875 -19.05) (end 11.90625 -19.05) (layer Dwgs.User) (width 0.15) (tstamp 4f05069b-9e5f-4026-8cf5-fbdc3ceb97ae)) (fp_line (start 11.90625 -19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15) (tstamp 3702de04-5513-4dfb-b3a9-70fd07461202)) (fp_line (start -11.90625 19.05) (end 11.90625 19.05) (layer Dwgs.User) (width 0.15) (tstamp 5a2a1d44-9bc0-433e-81e5-9163ca9037e8)) (fp_line (start -16.66875 -19.05) (end -16.66875 0) (layer Dwgs.User) (width 0.15) (tstamp a774a267-0f13-40a8-8101-6b9bd2de120b)))
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
|
|
@ -1 +0,0 @@
|
|||
(footprint "Gateron-KS33-Solderable-1.25U" (version 20221018) (generator pcbnew) (layer "F.Cu") (attr through_hole) (fp_text reference "REF**" (at 0 -3.5) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f2671b1c-b5fd-4cc1-b48c-165d1fbd5387)) (fp_text value "1.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7e9b4421-fc58-4b81-a584-7f6858b3211f)) (fp_line (start -7 -7) (end -7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cbd645c9-d070-49be-b8e7-c685e9c512ec)) (fp_line (start -7 5) (end -7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 852f6ed7-e578-4f31-9800-c44621da3cb1)) (fp_line (start -7 7) (end -5 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 92a54e0b-7aa1-4f62-8f5c-7dd947649c9e)) (fp_line (start -5 -7) (end -7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8f02064b-c991-41c5-a747-5158ce4f2ddf)) (fp_line (start 5 -7) (end 7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a50b9b42-678b-47c7-b062-1f419116b795)) (fp_line (start 5 7) (end 7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 59203258-8faa-4001-88d4-dc9c6428acd6)) (fp_line (start 7 -7) (end 7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 957c70b6-9da5-4c00-8103-e789daced34c)) (fp_line (start 7 7) (end 7 5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ba0a3343-f530-4476-a060-3d23f67bda0c)) (fp_rect (start -3.2 -6.3) (end 1.8 -4.05) (stroke (width 0.1) (type default)) (fill none) (layer "Cmts.User") (tstamp 6ad16729-e3a2-4093-b87d-429c0e6f6198)) (pad "" np_thru_hole circle (at 0 0 180) (size 5.1 5.1) (drill 5.1) (layers "F&B.Cu" "*.Mask") (tstamp 5c5d59cf-e588-40dc-956e-52cd5192586d)) (pad "1" thru_hole circle (at -4.4 4.7 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 068d758f-d2e5-47d9-8773-3595b3d9ee06)) (pad "2" thru_hole circle (at 2.6 5.75 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 5590dd3e-314b-4ff2-9fcf-23b33e405d62)) (fp_line (start 11.90625 9.525) (end -11.90625 9.525) (layer Dwgs.User) (width 0.15) (tstamp 3cdb8459-f0d2-4404-a125-48af7d730780)) (fp_line (start 11.90625 -9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp de8f36dc-a153-480b-a904-ac16ec4fd7f0)) (fp_line (start 11.90625 9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 333f48e3-de2f-4b33-87c3-a8d661b77e99)) (fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15) (tstamp c8fb11dc-6034-4e48-8870-f6b4993e7efe)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "Gateron-KS33-Solderable-1.5U" (version 20221018) (generator pcbnew) (layer "F.Cu") (attr through_hole) (fp_text reference "REF**" (at 0 -3.5) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f2671b1c-b5fd-4cc1-b48c-165d1fbd5387)) (fp_text value "1.5U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7e9b4421-fc58-4b81-a584-7f6858b3211f)) (fp_line (start -7 -7) (end -7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cbd645c9-d070-49be-b8e7-c685e9c512ec)) (fp_line (start -7 5) (end -7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 852f6ed7-e578-4f31-9800-c44621da3cb1)) (fp_line (start -7 7) (end -5 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 92a54e0b-7aa1-4f62-8f5c-7dd947649c9e)) (fp_line (start -5 -7) (end -7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8f02064b-c991-41c5-a747-5158ce4f2ddf)) (fp_line (start 5 -7) (end 7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a50b9b42-678b-47c7-b062-1f419116b795)) (fp_line (start 5 7) (end 7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 59203258-8faa-4001-88d4-dc9c6428acd6)) (fp_line (start 7 -7) (end 7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 957c70b6-9da5-4c00-8103-e789daced34c)) (fp_line (start 7 7) (end 7 5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ba0a3343-f530-4476-a060-3d23f67bda0c)) (fp_rect (start -3.2 -6.3) (end 1.8 -4.05) (stroke (width 0.1) (type default)) (fill none) (layer "Cmts.User") (tstamp 6ad16729-e3a2-4093-b87d-429c0e6f6198)) (pad "" np_thru_hole circle (at 0 0 180) (size 5.1 5.1) (drill 5.1) (layers "F&B.Cu" "*.Mask") (tstamp 5c5d59cf-e588-40dc-956e-52cd5192586d)) (pad "1" thru_hole circle (at -4.4 4.7 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 068d758f-d2e5-47d9-8773-3595b3d9ee06)) (pad "2" thru_hole circle (at 2.6 5.75 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 5590dd3e-314b-4ff2-9fcf-23b33e405d62)) (fp_line (start 14.287500000000001 9.525) (end -14.287500000000001 9.525) (layer Dwgs.User) (width 0.15) (tstamp 97ab7ec8-48ef-4b3f-bfc4-0f2975b07e88)) (fp_line (start 14.287500000000001 -9.525) (end -14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 062c6aa6-cdce-45bf-94b6-9d05d1d08da7)) (fp_line (start 14.287500000000001 9.525) (end 14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp c8928231-172c-47ec-abee-6f0a67e2bddb)) (fp_line (start -14.287500000000001 9.525) (end -14.287500000000001 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 70b4185f-a4f2-4654-a13c-0eada5595c20)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "Gateron-KS33-Solderable-1.75U" (version 20221018) (generator pcbnew) (layer "F.Cu") (attr through_hole) (fp_text reference "REF**" (at 0 -3.5) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f2671b1c-b5fd-4cc1-b48c-165d1fbd5387)) (fp_text value "1.75U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7e9b4421-fc58-4b81-a584-7f6858b3211f)) (fp_line (start -7 -7) (end -7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cbd645c9-d070-49be-b8e7-c685e9c512ec)) (fp_line (start -7 5) (end -7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 852f6ed7-e578-4f31-9800-c44621da3cb1)) (fp_line (start -7 7) (end -5 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 92a54e0b-7aa1-4f62-8f5c-7dd947649c9e)) (fp_line (start -5 -7) (end -7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8f02064b-c991-41c5-a747-5158ce4f2ddf)) (fp_line (start 5 -7) (end 7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a50b9b42-678b-47c7-b062-1f419116b795)) (fp_line (start 5 7) (end 7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 59203258-8faa-4001-88d4-dc9c6428acd6)) (fp_line (start 7 -7) (end 7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 957c70b6-9da5-4c00-8103-e789daced34c)) (fp_line (start 7 7) (end 7 5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ba0a3343-f530-4476-a060-3d23f67bda0c)) (fp_rect (start -3.2 -6.3) (end 1.8 -4.05) (stroke (width 0.1) (type default)) (fill none) (layer "Cmts.User") (tstamp 6ad16729-e3a2-4093-b87d-429c0e6f6198)) (pad "" np_thru_hole circle (at 0 0 180) (size 5.1 5.1) (drill 5.1) (layers "F&B.Cu" "*.Mask") (tstamp 5c5d59cf-e588-40dc-956e-52cd5192586d)) (pad "1" thru_hole circle (at -4.4 4.7 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 068d758f-d2e5-47d9-8773-3595b3d9ee06)) (pad "2" thru_hole circle (at 2.6 5.75 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 5590dd3e-314b-4ff2-9fcf-23b33e405d62)) (fp_line (start 16.66875 9.525) (end -16.66875 9.525) (layer Dwgs.User) (width 0.15) (tstamp ba292f0e-f98f-43d8-a673-2fc3c9710f41)) (fp_line (start 16.66875 -9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 86bc6f92-3dbf-489f-842f-c8575f703333)) (fp_line (start 16.66875 9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp f4627ef7-37b1-4a5d-8947-93274cf8d8f8)) (fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 700da42c-edc2-4cce-8fdc-db71cda9bd95)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "Gateron-KS33-Solderable-1U" (version 20221018) (generator pcbnew) (layer "F.Cu") (attr through_hole) (fp_text reference "REF**" (at 0 -3.5) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f2671b1c-b5fd-4cc1-b48c-165d1fbd5387)) (fp_text value "1U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7e9b4421-fc58-4b81-a584-7f6858b3211f)) (fp_line (start -7 -7) (end -7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cbd645c9-d070-49be-b8e7-c685e9c512ec)) (fp_line (start -7 5) (end -7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 852f6ed7-e578-4f31-9800-c44621da3cb1)) (fp_line (start -7 7) (end -5 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 92a54e0b-7aa1-4f62-8f5c-7dd947649c9e)) (fp_line (start -5 -7) (end -7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8f02064b-c991-41c5-a747-5158ce4f2ddf)) (fp_line (start 5 -7) (end 7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a50b9b42-678b-47c7-b062-1f419116b795)) (fp_line (start 5 7) (end 7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 59203258-8faa-4001-88d4-dc9c6428acd6)) (fp_line (start 7 -7) (end 7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 957c70b6-9da5-4c00-8103-e789daced34c)) (fp_line (start 7 7) (end 7 5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ba0a3343-f530-4476-a060-3d23f67bda0c)) (fp_rect (start -3.2 -6.3) (end 1.8 -4.05) (stroke (width 0.1) (type default)) (fill none) (layer "Cmts.User") (tstamp 6ad16729-e3a2-4093-b87d-429c0e6f6198)) (pad "" np_thru_hole circle (at 0 0 180) (size 5.1 5.1) (drill 5.1) (layers "F&B.Cu" "*.Mask") (tstamp 5c5d59cf-e588-40dc-956e-52cd5192586d)) (pad "1" thru_hole circle (at -4.4 4.7 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 068d758f-d2e5-47d9-8773-3595b3d9ee06)) (pad "2" thru_hole circle (at 2.6 5.75 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 5590dd3e-314b-4ff2-9fcf-23b33e405d62)) (fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15) (tstamp 800318f2-7411-4c00-831b-5fd226764470)) (fp_line (start 9.525 -9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 4c58403f-d67d-4f3b-af8b-88c68ea2cecc)) (fp_line (start 9.525 9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp e962313b-2019-4263-b2ba-7d206a54099a)) (fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 6e4c2de2-0128-46ed-a351-fb2db226c1b8)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "Gateron-KS33-Solderable-2.25U" (version 20221018) (generator pcbnew) (layer "F.Cu") (attr through_hole) (fp_text reference "REF**" (at 0 -3.5) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f2671b1c-b5fd-4cc1-b48c-165d1fbd5387)) (fp_text value "2.25U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7e9b4421-fc58-4b81-a584-7f6858b3211f)) (fp_line (start -7 -7) (end -7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cbd645c9-d070-49be-b8e7-c685e9c512ec)) (fp_line (start -7 5) (end -7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 852f6ed7-e578-4f31-9800-c44621da3cb1)) (fp_line (start -7 7) (end -5 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 92a54e0b-7aa1-4f62-8f5c-7dd947649c9e)) (fp_line (start -5 -7) (end -7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8f02064b-c991-41c5-a747-5158ce4f2ddf)) (fp_line (start 5 -7) (end 7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a50b9b42-678b-47c7-b062-1f419116b795)) (fp_line (start 5 7) (end 7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 59203258-8faa-4001-88d4-dc9c6428acd6)) (fp_line (start 7 -7) (end 7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 957c70b6-9da5-4c00-8103-e789daced34c)) (fp_line (start 7 7) (end 7 5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ba0a3343-f530-4476-a060-3d23f67bda0c)) (fp_rect (start -3.2 -6.3) (end 1.8 -4.05) (stroke (width 0.1) (type default)) (fill none) (layer "Cmts.User") (tstamp 6ad16729-e3a2-4093-b87d-429c0e6f6198)) (pad "" np_thru_hole circle (at 0 0 180) (size 5.1 5.1) (drill 5.1) (layers "F&B.Cu" "*.Mask") (tstamp 5c5d59cf-e588-40dc-956e-52cd5192586d)) (pad "1" thru_hole circle (at -4.4 4.7 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 068d758f-d2e5-47d9-8773-3595b3d9ee06)) (pad "2" thru_hole circle (at 2.6 5.75 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 5590dd3e-314b-4ff2-9fcf-23b33e405d62)) (fp_line (start 21.431250000000002 9.525) (end -21.431250000000002 9.525) (layer Dwgs.User) (width 0.15) (tstamp c229cdf6-e83d-461c-959f-9e9f1ec0fefb)) (fp_line (start 21.431250000000002 -9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 53f9c3ec-2511-48c1-8814-dddf20b08be9)) (fp_line (start 21.431250000000002 9.525) (end 21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp c300322d-6b53-49d2-b8ff-99733d06f25e)) (fp_line (start -21.431250000000002 9.525) (end -21.431250000000002 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 36728da1-d454-4aaa-a09b-ea2feb43921b)))
|
||||
|
|
@ -1 +0,0 @@
|
|||
(footprint "Gateron-KS33-Solderable-2.75U" (version 20221018) (generator pcbnew) (layer "F.Cu") (attr through_hole) (fp_text reference "REF**" (at 0 -3.5) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp f2671b1c-b5fd-4cc1-b48c-165d1fbd5387)) (fp_text value "2.75U" (at 0 -7.9375) (layer "Dwgs.User") (effects (font (size 0.8 0.8) (thickness 0.15))) (tstamp 7e9b4421-fc58-4b81-a584-7f6858b3211f)) (fp_line (start -7 -7) (end -7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cbd645c9-d070-49be-b8e7-c685e9c512ec)) (fp_line (start -7 5) (end -7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 852f6ed7-e578-4f31-9800-c44621da3cb1)) (fp_line (start -7 7) (end -5 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 92a54e0b-7aa1-4f62-8f5c-7dd947649c9e)) (fp_line (start -5 -7) (end -7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8f02064b-c991-41c5-a747-5158ce4f2ddf)) (fp_line (start 5 -7) (end 7 -7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a50b9b42-678b-47c7-b062-1f419116b795)) (fp_line (start 5 7) (end 7 7) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 59203258-8faa-4001-88d4-dc9c6428acd6)) (fp_line (start 7 -7) (end 7 -5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 957c70b6-9da5-4c00-8103-e789daced34c)) (fp_line (start 7 7) (end 7 5) (stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ba0a3343-f530-4476-a060-3d23f67bda0c)) (fp_rect (start -3.2 -6.3) (end 1.8 -4.05) (stroke (width 0.1) (type default)) (fill none) (layer "Cmts.User") (tstamp 6ad16729-e3a2-4093-b87d-429c0e6f6198)) (pad "" np_thru_hole circle (at 0 0 180) (size 5.1 5.1) (drill 5.1) (layers "F&B.Cu" "*.Mask") (tstamp 5c5d59cf-e588-40dc-956e-52cd5192586d)) (pad "1" thru_hole circle (at -4.4 4.7 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 068d758f-d2e5-47d9-8773-3595b3d9ee06)) (pad "2" thru_hole circle (at 2.6 5.75 180) (size 2.3 2.3) (drill 1.45) (layers "*.Cu" "B.Mask") (tstamp 5590dd3e-314b-4ff2-9fcf-23b33e405d62)) (fp_line (start 26.19375 9.525) (end -26.19375 9.525) (layer Dwgs.User) (width 0.15) (tstamp 1747d853-77a6-47c1-8bcf-dbc04c3d4bee)) (fp_line (start 26.19375 -9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 532be019-490c-41e3-8748-c53ac02f1889)) (fp_line (start 26.19375 9.525) (end 26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 11f77810-3878-4085-928c-34d0f277c4a6)) (fp_line (start -26.19375 9.525) (end -26.19375 -9.525) (layer Dwgs.User) (width 0.15) (tstamp 873b93de-288f-47f3-8ef6-bee26742168f)))
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue