Merge branch 'main' of https://git.cmtec.se/cm/cmdr-joystick
This commit is contained in:
commit
2d787c02ec
65
README.md
65
README.md
@ -1,13 +1,13 @@
|
||||
# CMDR Joystick 24
|
||||
# CMDR Joystick 25
|
||||
|
||||
RC Joystick with 2 hall effect gimbals, 2 hat switches and 24 buttons for use both with simulators and ELRS Rx equipped quads.
|
||||
RC Joystick with 2 hall effect gimbals, 2 hat switches and 25 buttons for use both with simulators and ELRS Rx equipped quads.
|
||||
|
||||
## Layout
|
||||
|
||||
```cpp
|
||||
USB Joystick Layer 0
|
||||
--------------------------------------------------------------
|
||||
| FnL | B1 | | B5 | FnR |
|
||||
| FnL | B1 | | B25 | | B5 | FnR |
|
||||
--------------------------------------------------------------
|
||||
| | B2 | B3 | MoL | | MoR | B7 | B6 | |
|
||||
| |
|
||||
@ -21,7 +21,7 @@ USB Joystick Layer 0
|
||||
|
||||
USB Joystick Layer 1 (FnL)
|
||||
--------------------------------------------------------------
|
||||
| FnL | B9 | | B5 | FnR |
|
||||
| FnL | B9 | | B25 | | B5 | FnR |
|
||||
--------------------------------------------------------------
|
||||
| | B10 | B11 | MoL | | MoR | B7 | B6 | |
|
||||
| |
|
||||
@ -35,7 +35,7 @@ USB Joystick Layer 1 (FnL)
|
||||
|
||||
USB Joystick Layer 2 (FnR)
|
||||
--------------------------------------------------------------
|
||||
| FnL | B1 | | B13 | FnR |
|
||||
| FnL | B1 | | B25 | | B13 | FnR |
|
||||
--------------------------------------------------------------
|
||||
| | B2 | B3 | MoL | | MoR | B15 | B14 | |
|
||||
| |
|
||||
@ -49,7 +49,7 @@ USB Joystick Layer 2 (FnR)
|
||||
|
||||
USB Joystick Layer 3 (FnL + FnR)
|
||||
--------------------------------------------------------------
|
||||
| FnL | B9 | | B13 | FnR |
|
||||
| FnL | B9 | | B25 | | B13 | FnR |
|
||||
--------------------------------------------------------------
|
||||
| | B10 | B11 | MoL | | MoR | B15 | B14 | |
|
||||
| |
|
||||
@ -63,16 +63,16 @@ USB Joystick Layer 3 (FnL + FnR)
|
||||
|
||||
ELRS Layer
|
||||
--------------------------------------------------------------
|
||||
| CH7 | CH8 | | CH9 | CH10|
|
||||
| CH7 OFF | CH7 ON | | -- | | CH8 ON | CH8 OFF|
|
||||
--------------------------------------------------------------
|
||||
| | CH11| - | CH5 | | CH6 | - | CH12| |
|
||||
| | CH9 ON | CH9 OFF | CH5 | | CH10 OFF | CH10 ON | CH12| |
|
||||
| |
|
||||
| | - | | - | |
|
||||
| | - | | - | |
|
||||
| | CH11 ON | | CH12 ON | |
|
||||
| | CH11 OFF | | CH12 OFF | |
|
||||
| X(CH1)/Y(CH2) X(CH3)/Y(CH4) |
|
||||
| | - | | - | |
|
||||
| | - | - | - || - | - | - | |
|
||||
| | - | | - | |
|
||||
| | LTU | | RTU | |
|
||||
| | LTL | LTC | LTR || RTL | RTC | RTR | |
|
||||
| | LTD | | RTD | |
|
||||
--------------------------------------------------------------
|
||||
|
||||
```
|
||||
@ -81,31 +81,36 @@ ELRS Layer
|
||||
|
||||
- Ergonomic design (low profile)
|
||||
- Hall effect gimbals
|
||||
- Supports both USB HID joystick and ELRS Tx module
|
||||
- Total 6x axis, 4x hat switches and 24x buttons (using Fn mode) implemented in USB HID mode
|
||||
- Supports both USB HID joystick and ELRS Tx
|
||||
- Total 6x axis, 4x hat switches and 25x buttons (using Fn mode) implemented in USB HID mode
|
||||
- 12 Channels implemented in ELRS mode (4x axis, 8x buttons)
|
||||
- Low latency (1.6ms ELRS, 10ms USB)
|
||||
|
||||
## Build environment
|
||||
## Hardware
|
||||
|
||||
- 2x FrSky M7 or M10 gimbals
|
||||
- 6x Kailh choc low profile switches
|
||||
- 6x Cherry MX switches
|
||||
- 2x Miniature Toggle Switch (M6 shaft, 7mm wide body)
|
||||
- 2x Alpine RKJXM1015004 hat switches
|
||||
- 1x Bottom case (3D printed)
|
||||
- 1x Top plate (3D printed)
|
||||
- 2x Hat swith top (3D printed)
|
||||
|
||||
##### 1x PCB
|
||||
|
||||
 
|
||||
|
||||
* Gerber files: [zip](/eCAD/cmdr-joystick/cmdr-joystick_rev_a_gerber.zip)
|
||||
* Schematics: [pdf](/eCAD/cmdr-joystick/cmdr-joystick_rev_a_schematics.pdf)
|
||||
|
||||
## Software Build environment
|
||||
Rust
|
||||
|
||||
- Cargo (rust embedded)
|
||||
- Flashing via Cargo
|
||||
- Pressing boot button on teensy
|
||||
- Press and hold "top lower right button" when powering the unit
|
||||
|
||||
## Hardware
|
||||
|
||||
- 1x rp2040zero MCU board
|
||||
- 2x FrSky M7 or M10 gimbals
|
||||
- 6x Kailh choc low profile switches
|
||||
- 6x Cherry MX switches
|
||||
- 2x Miniature Toggle Switch (M6 shaft, 7mm wide body)
|
||||
- 2x Alpine RKJXM1015004 hat switches
|
||||
- 1x PCB (prototype board)
|
||||
- 1x Bottom case (3D printed)
|
||||
- 1x Top plate (3D printed)
|
||||
- 2x Hat swith top (3D printed)
|
||||
|
||||
## Calibration
|
||||
|
||||
No calibration needed
|
||||
|
||||
2
eCAD/cmdr-joystick/cmdr-joystick.bak
Normal file
2
eCAD/cmdr-joystick/cmdr-joystick.bak
Normal file
@ -0,0 +1,2 @@
|
||||
(kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor)
|
||||
)
|
||||
12434
eCAD/cmdr-joystick/cmdr-joystick.kicad_pcb
Normal file
12434
eCAD/cmdr-joystick/cmdr-joystick.kicad_pcb
Normal file
File diff suppressed because it is too large
Load Diff
77
eCAD/cmdr-joystick/cmdr-joystick.kicad_prl
Normal file
77
eCAD/cmdr-joystick/cmdr-joystick.kicad_prl
Normal file
@ -0,0 +1,77 @@
|
||||
{
|
||||
"board": {
|
||||
"active_layer": 37,
|
||||
"active_layer_preset": "All Layers",
|
||||
"auto_track_width": false,
|
||||
"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
|
||||
},
|
||||
"meta": {
|
||||
"filename": "cmdr-joystick.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
||||
537
eCAD/cmdr-joystick/cmdr-joystick.kicad_pro
Normal file
537
eCAD/cmdr-joystick/cmdr-joystick.kicad_pro
Normal file
@ -0,0 +1,537 @@
|
||||
{
|
||||
"board": {
|
||||
"3dviewports": [],
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.09999999999999999,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"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,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"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.15,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.762,
|
||||
"height": 1.524,
|
||||
"width": 1.524
|
||||
},
|
||||
"silk_line_width": 0.15,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.15,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"min_clearance": 0.508
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"connection_width": "warning",
|
||||
"copper_edge_clearance": "error",
|
||||
"copper_sliver": "warning",
|
||||
"courtyards_overlap": "error",
|
||||
"diff_pair_gap_out_of_range": "error",
|
||||
"diff_pair_uncoupled_length_too_long": "error",
|
||||
"drill_out_of_range": "error",
|
||||
"duplicate_footprints": "warning",
|
||||
"extra_footprint": "warning",
|
||||
"footprint": "error",
|
||||
"footprint_type_mismatch": "ignore",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"isolated_copper": "warning",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"lib_footprint_issues": "warning",
|
||||
"lib_footprint_mismatch": "warning",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "warning",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_edge_clearance": "warning",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"solder_mask_bridge": "error",
|
||||
"starved_thermal": "error",
|
||||
"text_height": "warning",
|
||||
"text_thickness": "warning",
|
||||
"through_hole_pad_without_hole": "error",
|
||||
"too_many_vias": "error",
|
||||
"track_dangling": "warning",
|
||||
"track_width": "error",
|
||||
"tracks_crossing": "error",
|
||||
"unconnected_items": "error",
|
||||
"unresolved_variable": "error",
|
||||
"via_dangling": "warning",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rules": {
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_connection": 0.0,
|
||||
"min_copper_edge_clearance": 0.0,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_resolved_spokes": 2,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_text_height": 0.7999999999999999,
|
||||
"min_text_thickness": 0.08,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.0,
|
||||
"min_via_annular_width": 0.09999999999999999,
|
||||
"min_via_diameter": 0.5,
|
||||
"solder_mask_clearance": 0.0,
|
||||
"solder_mask_min_width": 0.0,
|
||||
"solder_mask_to_copper_clearance": 0.0,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"teardrop_options": [
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 5,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_onpadsmd": true,
|
||||
"td_onroundshapesonly": false,
|
||||
"td_ontrackend": false,
|
||||
"td_onviapad": true
|
||||
}
|
||||
],
|
||||
"teardrop_parameters": [
|
||||
{
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_target_name": "td_round_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_target_name": "td_rect_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_target_name": "td_track_end",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
}
|
||||
],
|
||||
"track_widths": [
|
||||
0.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false
|
||||
},
|
||||
"layer_presets": [],
|
||||
"viewports": []
|
||||
},
|
||||
"boards": [],
|
||||
"cvpcb": {
|
||||
"equivalence_files": []
|
||||
},
|
||||
"erc": {
|
||||
"erc_exclusions": [],
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"pin_map": [
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
1,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
0,
|
||||
2,
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
2,
|
||||
0,
|
||||
0,
|
||||
2
|
||||
],
|
||||
[
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2,
|
||||
2
|
||||
]
|
||||
],
|
||||
"rule_severities": {
|
||||
"bus_definition_conflict": "error",
|
||||
"bus_entry_needed": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"conflicting_netclasses": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"endpoint_off_grid": "warning",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "warning",
|
||||
"missing_bidi_pin": "warning",
|
||||
"missing_input_pin": "warning",
|
||||
"missing_power_pin": "error",
|
||||
"missing_unit": "warning",
|
||||
"multiple_net_names": "warning",
|
||||
"net_not_bus_member": "warning",
|
||||
"no_connect_connected": "warning",
|
||||
"no_connect_dangling": "warning",
|
||||
"pin_not_connected": "error",
|
||||
"pin_not_driven": "error",
|
||||
"pin_to_pin": "warning",
|
||||
"power_pin_not_driven": "error",
|
||||
"similar_labels": "warning",
|
||||
"simulation_model_issue": "error",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "cmdr-joystick.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "Default",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.25,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6
|
||||
},
|
||||
{
|
||||
"bus_width": 12,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "+3.3V",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.5,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6
|
||||
},
|
||||
{
|
||||
"bus_width": 12,
|
||||
"clearance": 0.2,
|
||||
"diff_pair_gap": 0.25,
|
||||
"diff_pair_via_gap": 0.25,
|
||||
"diff_pair_width": 0.2,
|
||||
"line_style": 0,
|
||||
"microvia_diameter": 0.3,
|
||||
"microvia_drill": 0.1,
|
||||
"name": "GND",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 0.5,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 3
|
||||
},
|
||||
"net_colors": null,
|
||||
"netclass_assignments": null,
|
||||
"netclass_patterns": [
|
||||
{
|
||||
"netclass": "+3.3V",
|
||||
"pattern": "+3.3V"
|
||||
},
|
||||
{
|
||||
"netclass": "GND",
|
||||
"pattern": "GND"
|
||||
},
|
||||
{
|
||||
"netclass": "+3.3V",
|
||||
"pattern": "+5V"
|
||||
}
|
||||
]
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "cmdr-joystick.step",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"dashed_lines_dash_length_ratio": 12.0,
|
||||
"dashed_lines_gap_length_ratio": 3.0,
|
||||
"default_line_thickness": 6.0,
|
||||
"default_text_size": 50.0,
|
||||
"field_names": [],
|
||||
"intersheets_ref_own_page": false,
|
||||
"intersheets_ref_prefix": "",
|
||||
"intersheets_ref_short": false,
|
||||
"intersheets_ref_show": false,
|
||||
"intersheets_ref_suffix": "",
|
||||
"junction_size_choice": 3,
|
||||
"label_size_ratio": 0.375,
|
||||
"pin_symbol_size": 25.0,
|
||||
"text_offset_ratio": 0.15
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "",
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_current_sheet_as_root": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"spice_model_current_sheet_as_root": true,
|
||||
"spice_save_all_currents": false,
|
||||
"spice_save_all_voltages": false,
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"5b501981-46e2-4084-afad-38073ca78ebd",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
4108
eCAD/cmdr-joystick/cmdr-joystick.kicad_sch
Normal file
4108
eCAD/cmdr-joystick/cmdr-joystick.kicad_sch
Normal file
@ -0,0 +1,4108 @@
|
||||
(kicad_sch (version 20230121) (generator eeschema)
|
||||
|
||||
(uuid 5b501981-46e2-4084-afad-38073ca78ebd)
|
||||
|
||||
(paper "A4")
|
||||
|
||||
(lib_symbols
|
||||
(symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (at 0 5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_01x03" (at 0 -5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "connector" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Conn_01x03_1_1"
|
||||
(rectangle (start -1.27 -2.413) (end 0 -2.667)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 0.127) (end 0 -0.127)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 2.667) (end 0 2.413)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type background))
|
||||
)
|
||||
(pin passive line (at -5.08 2.54 0) (length 3.81)
|
||||
(name "Pin_1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 0 0) (length 3.81)
|
||||
(name "Pin_2" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -2.54 0) (length 3.81)
|
||||
(name "Pin_3" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (at 0 5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_01x04" (at 0 -7.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "connector" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Conn_01x04_1_1"
|
||||
(rectangle (start -1.27 -4.953) (end 0 -5.207)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 -2.413) (end 0 -2.667)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 0.127) (end 0 -0.127)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 2.667) (end 0 2.413)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 3.81) (end 1.27 -6.35)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type background))
|
||||
)
|
||||
(pin passive line (at -5.08 2.54 0) (length 3.81)
|
||||
(name "Pin_1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 0 0) (length 3.81)
|
||||
(name "Pin_2" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -2.54 0) (length 3.81)
|
||||
(name "Pin_3" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -5.08 0) (length 3.81)
|
||||
(name "Pin_4" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Connector_Generic:Conn_01x06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (at 0 7.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_01x06" (at 0 -10.16 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "connector" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Conn_01x06_1_1"
|
||||
(rectangle (start -1.27 -7.493) (end 0 -7.747)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 -4.953) (end 0 -5.207)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 -2.413) (end 0 -2.667)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 0.127) (end 0 -0.127)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 2.667) (end 0 2.413)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 5.207) (end 0 4.953)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 6.35) (end 1.27 -8.89)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type background))
|
||||
)
|
||||
(pin passive line (at -5.08 5.08 0) (length 3.81)
|
||||
(name "Pin_1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 2.54 0) (length 3.81)
|
||||
(name "Pin_2" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 0 0) (length 3.81)
|
||||
(name "Pin_3" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -2.54 0) (length 3.81)
|
||||
(name "Pin_4" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -5.08 0) (length 3.81)
|
||||
(name "Pin_5" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -7.62 0) (length 3.81)
|
||||
(name "Pin_6" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (at 1.27 7.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_02x05_Odd_Even" (at 1.27 -7.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "connector" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Conn_02x05_Odd_Even_1_1"
|
||||
(rectangle (start -1.27 -4.953) (end 0 -5.207)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 -2.413) (end 0 -2.667)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 0.127) (end 0 -0.127)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 2.667) (end 0 2.413)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 5.207) (end 0 4.953)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start -1.27 6.35) (end 3.81 -6.35)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type background))
|
||||
)
|
||||
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 3.81 2.667) (end 2.54 2.413)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 3.81 5.207) (end 2.54 4.953)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(pin passive line (at -5.08 5.08 0) (length 3.81)
|
||||
(name "Pin_1" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 -5.08 180) (length 3.81)
|
||||
(name "Pin_10" (effects (font (size 1.27 1.27))))
|
||||
(number "10" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 5.08 180) (length 3.81)
|
||||
(name "Pin_2" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 2.54 0) (length 3.81)
|
||||
(name "Pin_3" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 2.54 180) (length 3.81)
|
||||
(name "Pin_4" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 0 0) (length 3.81)
|
||||
(name "Pin_5" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 0 180) (length 3.81)
|
||||
(name "Pin_6" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -2.54 0) (length 3.81)
|
||||
(name "Pin_7" (effects (font (size 1.27 1.27))))
|
||||
(number "7" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 7.62 -2.54 180) (length 3.81)
|
||||
(name "Pin_8" (effects (font (size 1.27 1.27))))
|
||||
(number "8" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at -5.08 -5.08 0) (length 3.81)
|
||||
(name "Pin_9" (effects (font (size 1.27 1.27))))
|
||||
(number "9" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "C" (at 0.635 2.54 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "C" (at 0.635 -2.54 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "" (at 0.9652 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "cap capacitor" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "C_*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "C_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy -2.032 -0.762)
|
||||
(xy 2.032 -0.762)
|
||||
)
|
||||
(stroke (width 0.508) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -2.032 0.762)
|
||||
(xy 2.032 0.762)
|
||||
)
|
||||
(stroke (width 0.508) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "C_1_1"
|
||||
(pin passive line (at 0 3.81 270) (length 2.794)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 0 -3.81 90) (length 2.794)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "R" (at 2.032 0 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "R" (at 0 0 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at -1.778 0 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "R res resistor" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Resistor" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "R_*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "R_0_1"
|
||||
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "R_1_1"
|
||||
(pin passive line (at 0 3.81 270) (length 1.27)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 0 -3.81 90) (length 1.27)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Diode:1N4148W" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "D" (at 0 2.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 0 -2.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 0 -4.445 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "ki_keywords" "diode" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "75V 0.15A Fast Switching Diode, SOD-123" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "D*SOD?123*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "1N4148W_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 1.27)
|
||||
(xy -1.27 -1.27)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 1.27 0)
|
||||
(xy -1.27 0)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 1.27 1.27)
|
||||
(xy 1.27 -1.27)
|
||||
(xy -1.27 0)
|
||||
(xy 1.27 1.27)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "1N4148W_1_1"
|
||||
(pin passive line (at -3.81 0 0) (length 2.54)
|
||||
(name "K" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 3.81 0 180) (length 2.54)
|
||||
(name "A" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "H" (at 0 5.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 0 3.175 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "mounting hole" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Mounting Hole without connection" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "MountingHole*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "MountingHole_0_1"
|
||||
(circle (center 0 0) (radius 1.27)
|
||||
(stroke (width 1.27) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Memory_EEPROM:M24C02-FMN" (in_bom yes) (on_board yes)
|
||||
(property "Reference" "U" (at -6.35 6.35 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "M24C02-FMN" (at 7.62 6.35 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 0 8.89 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/b0/d8/50/40/5a/85/49/6f/DM00071904.pdf/files/DM00071904.pdf/jcr:content/translations/en.DM00071904.pdf" (at 1.27 -12.7 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "Nonvolatile Non-Volatile Memory ROM ST" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "2Kb (256x8) I2C Serial EEPROM, 1.6-5.5V, SOIC-8" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "M24C02-FMN_0_1"
|
||||
(rectangle (start -7.62 5.08) (end 7.62 -5.08)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type background))
|
||||
)
|
||||
)
|
||||
(symbol "M24C02-FMN_1_1"
|
||||
(pin input line (at -10.16 2.54 0) (length 2.54)
|
||||
(name "E0" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin input line (at -10.16 0 0) (length 2.54)
|
||||
(name "E1" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin input line (at -10.16 -2.54 0) (length 2.54)
|
||||
(name "E2" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_in line (at 0 -7.62 90) (length 2.54)
|
||||
(name "VSS" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 10.16 2.54 180) (length 2.54)
|
||||
(name "SDA" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin input line (at 10.16 0 180) (length 2.54)
|
||||
(name "SCL" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin input line (at 10.16 -2.54 180) (length 2.54)
|
||||
(name "~{WC}" (effects (font (size 1.27 1.27))))
|
||||
(number "7" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_in line (at 0 7.62 270) (length 2.54)
|
||||
(name "VCC" (effects (font (size 1.27 1.27))))
|
||||
(number "8" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Transistor_FET:2N7002E" (pin_names hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "Q" (at 5.08 1.905 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "2N7002E" (at 5.08 0 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "http://www.diodes.com/assets/Datasheets/ds30376.pdf" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "ki_keywords" "N-Channel MOSFET" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "0.24A Id, 60V Vds, N-Channel MOSFET, SOT-23" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "2N7002E_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.254 0)
|
||||
(xy -2.54 0)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.254 1.905)
|
||||
(xy 0.254 -1.905)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 -1.27)
|
||||
(xy 0.762 -2.286)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 0.508)
|
||||
(xy 0.762 -0.508)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 2.286)
|
||||
(xy 0.762 1.27)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.54 2.54)
|
||||
(xy 2.54 1.778)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.54 -2.54)
|
||||
(xy 2.54 0)
|
||||
(xy 0.762 0)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 -1.778)
|
||||
(xy 3.302 -1.778)
|
||||
(xy 3.302 1.778)
|
||||
(xy 0.762 1.778)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 1.016 0)
|
||||
(xy 2.032 0.381)
|
||||
(xy 2.032 -0.381)
|
||||
(xy 1.016 0)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type outline))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.794 0.508)
|
||||
(xy 2.921 0.381)
|
||||
(xy 3.683 0.381)
|
||||
(xy 3.81 0.254)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.302 0.381)
|
||||
(xy 2.921 -0.254)
|
||||
(xy 3.683 -0.254)
|
||||
(xy 3.302 0.381)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(circle (center 1.651 0) (radius 2.794)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(circle (center 2.54 -1.778) (radius 0.254)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type outline))
|
||||
)
|
||||
(circle (center 2.54 1.778) (radius 0.254)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type outline))
|
||||
)
|
||||
)
|
||||
(symbol "2N7002E_1_1"
|
||||
(pin input line (at -5.08 0 0) (length 2.54)
|
||||
(name "G" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 2.54 -5.08 90) (length 2.54)
|
||||
(name "S" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 2.54 5.08 270) (length 2.54)
|
||||
(name "D" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Transistor_FET:Si2371EDS" (pin_names hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "Q" (at 5.08 1.905 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Si2371EDS" (at 5.08 0 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "http://www.vishay.com/docs/63924/si2371eds.pdf" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "ki_keywords" "P-Channel MOSFET" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "-3.6A Id, -30V Vds, P-Channel MOSFET, SOT-23" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "Si2371EDS_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.254 0)
|
||||
(xy -2.54 0)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.254 1.905)
|
||||
(xy 0.254 -1.905)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 -1.27)
|
||||
(xy 0.762 -2.286)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 0.508)
|
||||
(xy 0.762 -0.508)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 2.286)
|
||||
(xy 0.762 1.27)
|
||||
)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.54 2.54)
|
||||
(xy 2.54 1.778)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.54 -2.54)
|
||||
(xy 2.54 0)
|
||||
(xy 0.762 0)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0.762 1.778)
|
||||
(xy 3.302 1.778)
|
||||
(xy 3.302 -1.778)
|
||||
(xy 0.762 -1.778)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.286 0)
|
||||
(xy 1.27 0.381)
|
||||
(xy 1.27 -0.381)
|
||||
(xy 2.286 0)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type outline))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 2.794 -0.508)
|
||||
(xy 2.921 -0.381)
|
||||
(xy 3.683 -0.381)
|
||||
(xy 3.81 -0.254)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 3.302 -0.381)
|
||||
(xy 2.921 0.254)
|
||||
(xy 3.683 0.254)
|
||||
(xy 3.302 -0.381)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(circle (center 1.651 0) (radius 2.794)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(circle (center 2.54 -1.778) (radius 0.254)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type outline))
|
||||
)
|
||||
(circle (center 2.54 1.778) (radius 0.254)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type outline))
|
||||
)
|
||||
)
|
||||
(symbol "Si2371EDS_1_1"
|
||||
(pin input line (at -5.08 0 0) (length 2.54)
|
||||
(name "G" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 2.54 -5.08 90) (length 2.54)
|
||||
(name "S" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 2.54 5.08 270) (length 2.54)
|
||||
(name "D" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "cmdr-joystick:rp2040zero_upside_down" (in_bom yes) (on_board yes)
|
||||
(property "Reference" "U" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "rp2040zero_upside_down_0_1"
|
||||
(rectangle (start -11.43 -5.08) (end 10.16 -49.53)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "rp2040zero_upside_down_1_1"
|
||||
(pin bidirectional line (at -13.97 -10.16 0) (length 2.54)
|
||||
(name "GP0" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -35.56 0) (length 2.54)
|
||||
(name "GP9" (effects (font (size 1.27 1.27))))
|
||||
(number "10" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -38.1 0) (length 2.54)
|
||||
(name "GP10" (effects (font (size 1.27 1.27))))
|
||||
(number "11" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -40.64 0) (length 2.54)
|
||||
(name "GP11" (effects (font (size 1.27 1.27))))
|
||||
(number "12" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -43.18 0) (length 2.54)
|
||||
(name "GP12" (effects (font (size 1.27 1.27))))
|
||||
(number "13" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -45.72 0) (length 2.54)
|
||||
(name "GP13" (effects (font (size 1.27 1.27))))
|
||||
(number "14" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -45.72 180) (length 2.54)
|
||||
(name "GP14" (effects (font (size 1.27 1.27))))
|
||||
(number "15" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -43.18 180) (length 2.54)
|
||||
(name "GP15" (effects (font (size 1.27 1.27))))
|
||||
(number "16" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -17.78 180) (length 2.54)
|
||||
(name "GP26" (effects (font (size 1.27 1.27))))
|
||||
(number "17" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -15.24 180) (length 2.54)
|
||||
(name "GP27" (effects (font (size 1.27 1.27))))
|
||||
(number "18" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -12.7 180) (length 2.54)
|
||||
(name "GP28" (effects (font (size 1.27 1.27))))
|
||||
(number "19" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -12.7 0) (length 2.54)
|
||||
(name "GP1" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
|
||||
(name "GP29" (effects (font (size 1.27 1.27))))
|
||||
(number "20" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_out line (at 2.54 -2.54 270) (length 2.54)
|
||||
(name "3V3" (effects (font (size 1.27 1.27))))
|
||||
(number "21" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_out line (at 0 -52.07 90) (length 2.54)
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "22" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_in line (at -2.54 -2.54 270) (length 2.54)
|
||||
(name "5V" (effects (font (size 1.27 1.27))))
|
||||
(number "23" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -15.24 0) (length 2.54)
|
||||
(name "GP2" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -17.78 0) (length 2.54)
|
||||
(name "GP3" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -20.32 0) (length 2.54)
|
||||
(name "GP4" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -22.86 0) (length 2.54)
|
||||
(name "GP5" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -25.4 0) (length 2.54)
|
||||
(name "GP6" (effects (font (size 1.27 1.27))))
|
||||
(number "7" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -27.94 0) (length 2.54)
|
||||
(name "GP7" (effects (font (size 1.27 1.27))))
|
||||
(number "8" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -30.48 0) (length 2.54)
|
||||
(name "GP8" (effects (font (size 1.27 1.27))))
|
||||
(number "9" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+3.3V" (at 0 3.556 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "global power" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "+3.3V_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy -0.762 1.27)
|
||||
(xy 0 2.54)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 2.54)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 2.54)
|
||||
(xy 0.762 1.27)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "+3.3V_1_1"
|
||||
(pin power_in line (at 0 0 90) (length 0) hide
|
||||
(name "+3.3V" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+5V" (at 0 3.556 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "global power" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "+5V_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy -0.762 1.27)
|
||||
(xy 0 2.54)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 2.54)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 2.54)
|
||||
(xy 0.762 1.27)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "+5V_1_1"
|
||||
(pin power_in line (at 0 0 90) (length 0) hide
|
||||
(name "+5V" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "#PWR" (at 0 -6.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 0 -3.81 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "global power" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "GND_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy 0 0)
|
||||
(xy 0 -1.27)
|
||||
(xy 1.27 -1.27)
|
||||
(xy 0 -2.54)
|
||||
(xy -1.27 -1.27)
|
||||
(xy 0 -1.27)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "GND_1_1"
|
||||
(pin power_in line (at 0 0 270) (length 0) hide
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(junction (at 97.79 71.12) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 05f8c259-eda6-4790-8bc6-fdc48dc9b746)
|
||||
)
|
||||
(junction (at 41.91 78.74) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 0db12070-ac1a-4a7c-90ce-772756a40d1e)
|
||||
)
|
||||
(junction (at 41.91 76.2) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 1512551d-6844-4d7d-8bb8-0a827905e9ed)
|
||||
)
|
||||
(junction (at 95.25 68.58) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 16b17393-3222-47f8-9d1f-435ea270e181)
|
||||
)
|
||||
(junction (at 41.91 71.12) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 1caf1450-4265-4caa-bb1e-4cab36835df4)
|
||||
)
|
||||
(junction (at 205.74 63.5) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 1cdf20f5-6b52-4e4a-a671-fd33782df6f4)
|
||||
)
|
||||
(junction (at 95.25 104.14) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 20722a3e-4a4c-427d-a3e2-bda9c7ad88f0)
|
||||
)
|
||||
(junction (at 41.91 99.06) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 21da9817-f8a2-4fc2-928b-38087e7ba5c0)
|
||||
)
|
||||
(junction (at 90.17 71.12) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 26b40bb5-3217-417a-a22a-065258b16cc9)
|
||||
)
|
||||
(junction (at 176.53 57.15) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 2b219cce-83e8-4b5b-85cc-88cfa832e88a)
|
||||
)
|
||||
(junction (at 154.94 106.68) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 2c39d545-c77f-41a3-8218-21111eccb94e)
|
||||
)
|
||||
(junction (at 97.79 138.43) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 2f0d1e6f-b1f1-43f1-ae7a-2b87b814d4eb)
|
||||
)
|
||||
(junction (at 41.91 106.68) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 3042fc8c-65c0-4cf5-b3ca-285983d14051)
|
||||
)
|
||||
(junction (at 177.8 71.12) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 33edd194-3c6c-4b68-b93c-c93b7e3a7501)
|
||||
)
|
||||
(junction (at 154.94 132.08) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 3e5afa00-8d39-4f78-9a7b-1d2716c9eef7)
|
||||
)
|
||||
(junction (at 41.91 43.18) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 46d45c3e-40ad-40ca-a7ef-a918153602ed)
|
||||
)
|
||||
(junction (at 228.6 106.68) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 49a0046b-cecd-4607-8af7-d10a581a5688)
|
||||
)
|
||||
(junction (at 92.71 133.35) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 53a81656-c4ab-4ea7-a63a-6d9b1e0e1943)
|
||||
)
|
||||
(junction (at 208.28 66.04) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 55527e33-7d5e-46f6-8373-7a9b5bcb9953)
|
||||
)
|
||||
(junction (at 140.97 119.38) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 5667c2aa-4fec-4dac-b897-e74eefb24158)
|
||||
)
|
||||
(junction (at 205.74 74.93) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 58cc6de1-772c-427a-b379-bf6dbe6c1bc6)
|
||||
)
|
||||
(junction (at 90.17 63.5) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 5b1e52ec-e5c1-4338-b386-b5c2d81ad7ed)
|
||||
)
|
||||
(junction (at 41.91 50.8) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 63ab2011-fe07-4540-88d0-ba6c0cf345a5)
|
||||
)
|
||||
(junction (at 100.33 73.66) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 66432f3c-3564-4dd4-9c89-dd2b095d178a)
|
||||
)
|
||||
(junction (at 208.28 43.18) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 6e910353-1ed2-434f-92cb-b96184b1c62f)
|
||||
)
|
||||
(junction (at 220.98 120.65) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 80b9b240-83f2-4205-8a8b-dd8408d7c939)
|
||||
)
|
||||
(junction (at 92.71 73.66) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 824d6fc2-f9ae-408e-b010-3acf5417021d)
|
||||
)
|
||||
(junction (at 100.33 109.22) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 8d13d8c7-b4cc-49cf-82c7-9c777ba052a0)
|
||||
)
|
||||
(junction (at 97.79 106.68) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 915ff310-4957-4ea6-bd4b-ed1b89681dce)
|
||||
)
|
||||
(junction (at 92.71 101.6) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 94e181db-a605-4e41-aa59-1119cffdb199)
|
||||
)
|
||||
(junction (at 90.17 99.06) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 9d76ca49-d78e-47ca-a9c2-f491abc5b0fa)
|
||||
)
|
||||
(junction (at 97.79 78.74) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 9e36884d-6be8-4bb7-a61f-190190e4aea7)
|
||||
)
|
||||
(junction (at 41.91 48.26) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 9e460aab-fe75-4635-813c-e1feca5a7d3a)
|
||||
)
|
||||
(junction (at 100.33 140.97) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 9e94379b-1058-4ef3-bd13-686a294fa666)
|
||||
)
|
||||
(junction (at 100.33 81.28) (diameter 0) (color 0 0 0 0)
|
||||
(uuid ab75d085-c021-4c43-9778-5ff89e957e9e)
|
||||
)
|
||||
(junction (at 41.91 45.72) (diameter 0) (color 0 0 0 0)
|
||||
(uuid b5d9e78a-98a7-4812-a6a1-6cc6c875bf8c)
|
||||
)
|
||||
(junction (at 92.71 66.04) (diameter 0) (color 0 0 0 0)
|
||||
(uuid b77ee733-b0ea-4468-af81-4eeef3e05d6c)
|
||||
)
|
||||
(junction (at 95.25 135.89) (diameter 0) (color 0 0 0 0)
|
||||
(uuid c27f5b1a-9e96-4b4c-94eb-b71258aebaa6)
|
||||
)
|
||||
(junction (at 41.91 73.66) (diameter 0) (color 0 0 0 0)
|
||||
(uuid c669ad27-3440-40c2-8334-a96f217fd675)
|
||||
)
|
||||
(junction (at 205.74 52.07) (diameter 0) (color 0 0 0 0)
|
||||
(uuid cad1e7ca-25c8-4e74-8614-976c6844da3e)
|
||||
)
|
||||
(junction (at 41.91 104.14) (diameter 0) (color 0 0 0 0)
|
||||
(uuid d78e92c9-567e-44b5-8f3e-b8d2d9271037)
|
||||
)
|
||||
(junction (at 95.25 76.2) (diameter 0) (color 0 0 0 0)
|
||||
(uuid d843ba3a-e02f-47d3-a1ea-7e82fc22d5c9)
|
||||
)
|
||||
(junction (at 242.57 106.68) (diameter 0) (color 0 0 0 0)
|
||||
(uuid e6ef1014-577c-4097-b97f-f296719589b7)
|
||||
)
|
||||
(junction (at 90.17 130.81) (diameter 0) (color 0 0 0 0)
|
||||
(uuid ea3714cf-4865-4814-94cd-3205945498ac)
|
||||
)
|
||||
(junction (at 140.97 121.92) (diameter 0) (color 0 0 0 0)
|
||||
(uuid ecc16e34-1e87-4e4e-90b2-e71489bff62b)
|
||||
)
|
||||
(junction (at 203.2 113.03) (diameter 0) (color 0 0 0 0)
|
||||
(uuid f50580f1-f91a-4f11-b90a-8c5e986020e5)
|
||||
)
|
||||
(junction (at 140.97 124.46) (diameter 0) (color 0 0 0 0)
|
||||
(uuid f629169f-b204-4041-b61f-6589c38c3636)
|
||||
)
|
||||
(junction (at 41.91 101.6) (diameter 0) (color 0 0 0 0)
|
||||
(uuid f87413c7-8a92-4f0a-af04-088017c4a712)
|
||||
)
|
||||
(junction (at 175.26 73.66) (diameter 0) (color 0 0 0 0)
|
||||
(uuid fb558183-4b8d-4980-b9c9-aa13da48dbfa)
|
||||
)
|
||||
(junction (at 208.28 54.61) (diameter 0) (color 0 0 0 0)
|
||||
(uuid ffdbef83-3a87-4f4b-8b58-11053dc68f4f)
|
||||
)
|
||||
|
||||
(no_connect (at 165.1 124.46) (uuid 00ab5998-bff9-45da-8c86-2a50db2c2b90))
|
||||
(no_connect (at 140.97 45.72) (uuid baa7f766-2871-41cf-81d3-67fcad28f98c))
|
||||
|
||||
(wire (pts (xy 218.44 132.08) (xy 224.79 132.08))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 006b6c87-6c3e-4018-8f74-cf6c06b089c3)
|
||||
)
|
||||
(wire (pts (xy 167.64 71.12) (xy 177.8 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 00c6e400-267b-451a-b5b9-578f5a00faa4)
|
||||
)
|
||||
(wire (pts (xy 194.31 72.39) (xy 210.82 72.39))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 01c4400c-24b2-496d-a8cc-572f19b92791)
|
||||
)
|
||||
(wire (pts (xy 220.98 118.11) (xy 220.98 120.65))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 0556fc4f-0612-4973-83a7-0fd359deab0e)
|
||||
)
|
||||
(wire (pts (xy 175.26 119.38) (xy 175.26 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 07c9a294-55fd-44c6-a4ee-13aa12217f81)
|
||||
)
|
||||
(wire (pts (xy 220.98 120.65) (xy 220.98 121.92))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 0a2e0e7d-49cb-47c4-9100-46b6f4a4f63a)
|
||||
)
|
||||
(wire (pts (xy 43.18 109.22) (xy 41.91 109.22))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 0bea92ca-d94c-4087-9f4d-93e02842e3f6)
|
||||
)
|
||||
(wire (pts (xy 97.79 71.12) (xy 140.97 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 0bffa783-2b0b-4f95-9e51-9a15e27b869f)
|
||||
)
|
||||
(wire (pts (xy 194.31 45.72) (xy 194.31 72.39))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 0cb4a7e3-0cae-4eb7-b804-2148be8ce880)
|
||||
)
|
||||
(wire (pts (xy 95.25 48.26) (xy 95.25 68.58))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 0ded7b45-3a77-42b7-bea6-065ae269600e)
|
||||
)
|
||||
(wire (pts (xy 200.66 113.03) (xy 203.2 113.03))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 11ec5907-6781-4137-95db-e23d89c08d7c)
|
||||
)
|
||||
(wire (pts (xy 41.91 78.74) (xy 43.18 78.74))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 12ec2400-eb18-4e1a-b993-93c23956c615)
|
||||
)
|
||||
(wire (pts (xy 92.71 101.6) (xy 92.71 133.35))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 154ba9f3-d416-402d-8a76-aee28cfda0c1)
|
||||
)
|
||||
(wire (pts (xy 55.88 104.14) (xy 67.31 104.14))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 1579f2ff-c822-4e2e-b3ea-203312bdeea6)
|
||||
)
|
||||
(wire (pts (xy 74.93 53.34) (xy 100.33 53.34))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 174186dd-383b-40e2-a98a-27eb33a59b32)
|
||||
)
|
||||
(wire (pts (xy 90.17 99.06) (xy 90.17 130.81))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 1829b2d7-834e-44c0-b249-bbb44ceecb28)
|
||||
)
|
||||
(wire (pts (xy 43.18 53.34) (xy 41.91 53.34))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 197df8f6-1e91-49fd-90e4-0b13d5455363)
|
||||
)
|
||||
(wire (pts (xy 213.36 120.65) (xy 220.98 120.65))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 1dd93b3c-9798-4dba-aa76-7cfe2eaf8f5d)
|
||||
)
|
||||
(wire (pts (xy 140.97 53.34) (xy 118.11 53.34))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 1eba5f9a-75a1-45da-a470-289a6a303504)
|
||||
)
|
||||
(wire (pts (xy 41.91 104.14) (xy 41.91 101.6))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 1f0c1f3c-75cb-4e21-8240-51fdfb7da451)
|
||||
)
|
||||
(wire (pts (xy 100.33 81.28) (xy 100.33 109.22))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 1f50e310-239c-4691-9307-5291f2ad70a3)
|
||||
)
|
||||
(wire (pts (xy 83.82 161.29) (xy 100.33 161.29))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 207d11be-4d72-457b-8147-18596d81be3a)
|
||||
)
|
||||
(wire (pts (xy 242.57 129.54) (xy 243.84 129.54))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 214137a9-5588-4303-af4b-067a4cc47675)
|
||||
)
|
||||
(wire (pts (xy 208.28 66.04) (xy 208.28 77.47))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 21d1b321-a6e0-4a6f-8fd4-51065a94db1a)
|
||||
)
|
||||
(wire (pts (xy 125.73 50.8) (xy 140.97 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 229e54c6-ac15-44f1-ba96-2f5cec21b121)
|
||||
)
|
||||
(wire (pts (xy 55.88 109.22) (xy 67.31 109.22))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 241ba6c8-01c7-4b6d-9e2e-c62f4ece6510)
|
||||
)
|
||||
(wire (pts (xy 41.91 106.68) (xy 41.91 104.14))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 247dfbd7-7d08-4413-8379-dacbf37314b3)
|
||||
)
|
||||
(wire (pts (xy 240.03 137.16) (xy 240.03 127))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 25cbdbef-0bcf-45ae-99c0-76cecd41ecd1)
|
||||
)
|
||||
(wire (pts (xy 63.5 140.97) (xy 76.2 140.97))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 26671f58-51e9-4f16-b2b7-966f36bd5ccd)
|
||||
)
|
||||
(wire (pts (xy 242.57 118.11) (xy 242.57 129.54))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 26a507cc-7d8a-4a24-9960-cb1580da9ad1)
|
||||
)
|
||||
(wire (pts (xy 90.17 71.12) (xy 90.17 99.06))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 276ac9ec-ca3f-4ccc-970e-5137f354a728)
|
||||
)
|
||||
(wire (pts (xy 205.74 74.93) (xy 210.82 74.93))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 28120a17-8912-47bf-88fd-f8ee0040449f)
|
||||
)
|
||||
(wire (pts (xy 95.25 135.89) (xy 95.25 156.21))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 2bb2374b-e28a-4fe1-bbac-12be861e0d5a)
|
||||
)
|
||||
(wire (pts (xy 140.97 132.08) (xy 140.97 124.46))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 2d816173-ce8c-480d-92c1-97fd4c8b523c)
|
||||
)
|
||||
(wire (pts (xy 74.93 106.68) (xy 97.79 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 2e781c5e-e6ee-41b3-9a4f-c570e4921189)
|
||||
)
|
||||
(wire (pts (xy 41.91 48.26) (xy 41.91 45.72))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 31a9df14-6ff2-461d-a5f1-1bd3ba4911f9)
|
||||
)
|
||||
(wire (pts (xy 92.71 73.66) (xy 74.93 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 326b0fa1-a6de-4196-9551-611302b0ee04)
|
||||
)
|
||||
(wire (pts (xy 74.93 48.26) (xy 95.25 48.26))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 335966db-c764-4afd-80d1-f77865dec0c8)
|
||||
)
|
||||
(wire (pts (xy 140.97 124.46) (xy 140.97 121.92))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 345bd43b-ec73-47f8-9a34-9320fbec08ce)
|
||||
)
|
||||
(wire (pts (xy 205.74 63.5) (xy 205.74 74.93))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 34af12cf-0522-4c12-852f-82257d605b93)
|
||||
)
|
||||
(wire (pts (xy 100.33 73.66) (xy 140.97 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 35aa9831-496e-487d-a4ac-152b4f472922)
|
||||
)
|
||||
(wire (pts (xy 55.88 48.26) (xy 67.31 48.26))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 364fda32-34d1-4b1c-ad42-a0c6b4d17f8a)
|
||||
)
|
||||
(wire (pts (xy 205.74 52.07) (xy 205.74 63.5))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 370eed9f-eb54-4434-b9a7-ae72d61cdadb)
|
||||
)
|
||||
(wire (pts (xy 41.91 81.28) (xy 43.18 81.28))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 37d62db0-e71e-4ced-9b7e-c9cedbc9966e)
|
||||
)
|
||||
(wire (pts (xy 144.78 119.38) (xy 140.97 119.38))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 3873a3bc-6f8b-4674-b1b5-f971706ad1c4)
|
||||
)
|
||||
(wire (pts (xy 90.17 130.81) (xy 90.17 151.13))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 38c49dda-c53e-4858-b27e-f71d81020a3f)
|
||||
)
|
||||
(wire (pts (xy 41.91 76.2) (xy 41.91 78.74))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 3db9f7a3-82a0-4ca2-b2eb-32e88200fff7)
|
||||
)
|
||||
(wire (pts (xy 95.25 104.14) (xy 95.25 135.89))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 3df53bff-75ef-45d9-87e5-14e636851fe3)
|
||||
)
|
||||
(wire (pts (xy 41.91 99.06) (xy 41.91 101.6))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 3df7ec83-fa34-48bc-b844-40a8891f37e3)
|
||||
)
|
||||
(wire (pts (xy 41.91 88.9) (xy 120.65 88.9))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 3f91b1e4-6444-4eba-adc2-3cd475574e2b)
|
||||
)
|
||||
(wire (pts (xy 41.91 48.26) (xy 43.18 48.26))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4075d46f-f5b2-49b2-ae83-d6ff2d10a828)
|
||||
)
|
||||
(wire (pts (xy 196.85 60.96) (xy 196.85 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 414a279a-15be-414a-8059-a385600b13f5)
|
||||
)
|
||||
(wire (pts (xy 55.88 53.34) (xy 67.31 53.34))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 443508a4-1ea7-4f0b-8576-df4cdb389e90)
|
||||
)
|
||||
(wire (pts (xy 63.5 161.29) (xy 76.2 161.29))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 47125bf3-20b3-4f69-a167-7f586e4f0e51)
|
||||
)
|
||||
(wire (pts (xy 43.18 71.12) (xy 41.91 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 493b9526-83dc-427c-bcf9-cd4cf57650bd)
|
||||
)
|
||||
(wire (pts (xy 43.18 106.68) (xy 41.91 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 49e1d8a2-4e40-4597-b66f-416d1ac664db)
|
||||
)
|
||||
(wire (pts (xy 95.25 68.58) (xy 140.97 68.58))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4a085023-2dc8-4aaa-b2ab-7394cec2fb85)
|
||||
)
|
||||
(wire (pts (xy 175.26 59.69) (xy 175.26 57.15))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4a1df7bc-d586-4737-843c-fa32292aed83)
|
||||
)
|
||||
(wire (pts (xy 242.57 102.87) (xy 242.57 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4acea5d1-0880-41c7-ab74-57e6fe240415)
|
||||
)
|
||||
(wire (pts (xy 208.28 54.61) (xy 208.28 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4b03bf56-4876-4d08-98f3-061e33652b5d)
|
||||
)
|
||||
(wire (pts (xy 165.1 119.38) (xy 175.26 119.38))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4b49031d-428a-44a3-aae6-40ccce7ba050)
|
||||
)
|
||||
(wire (pts (xy 205.74 74.93) (xy 205.74 81.28))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4ec8ca24-dd9d-4444-9c35-18f203382609)
|
||||
)
|
||||
(wire (pts (xy 55.88 78.74) (xy 67.31 78.74))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 511008af-9282-402b-914a-c6d0e45387fa)
|
||||
)
|
||||
(wire (pts (xy 92.71 66.04) (xy 140.97 66.04))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 53783b18-a86a-42ee-a15d-63881d26ae75)
|
||||
)
|
||||
(wire (pts (xy 63.5 133.35) (xy 76.2 133.35))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 546d84b7-3839-4c0c-9e06-c33eae799198)
|
||||
)
|
||||
(wire (pts (xy 83.82 133.35) (xy 92.71 133.35))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 54ddd97d-5d31-4190-833d-74fcd690f602)
|
||||
)
|
||||
(wire (pts (xy 41.91 50.8) (xy 43.18 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 55605a66-16c3-4e31-bd66-3f44fb8904e9)
|
||||
)
|
||||
(wire (pts (xy 120.65 88.9) (xy 120.65 48.26))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 595ea744-d5a6-429d-aff1-98f8dd0696e5)
|
||||
)
|
||||
(wire (pts (xy 100.33 53.34) (xy 100.33 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 5d0c3c5b-d27a-46cc-a089-ab2334b0e7b8)
|
||||
)
|
||||
(wire (pts (xy 90.17 151.13) (xy 83.82 151.13))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 5f149027-cb3a-4b91-960b-7c4e220c9cf9)
|
||||
)
|
||||
(wire (pts (xy 242.57 106.68) (xy 242.57 107.95))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 60cec21d-6fa6-4992-906c-68f466955f6a)
|
||||
)
|
||||
(wire (pts (xy 83.82 153.67) (xy 92.71 153.67))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 63898f56-3096-418d-8e2e-2ac09b94e1c2)
|
||||
)
|
||||
(wire (pts (xy 90.17 63.5) (xy 90.17 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 659862d7-e5d7-4e5e-83ec-75ce219905dd)
|
||||
)
|
||||
(wire (pts (xy 63.5 128.27) (xy 123.19 128.27))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 662f0397-ff38-470b-89de-7bf44537ae1c)
|
||||
)
|
||||
(wire (pts (xy 41.91 71.12) (xy 41.91 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 66ca4df1-e04d-461d-8e4b-8b1fc52e1d25)
|
||||
)
|
||||
(wire (pts (xy 97.79 106.68) (xy 97.79 138.43))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 687ef4c8-f0d0-482a-a38e-d4472923058e)
|
||||
)
|
||||
(wire (pts (xy 63.5 151.13) (xy 76.2 151.13))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 6a23c306-b276-4a6b-a155-3f95f9652e28)
|
||||
)
|
||||
(wire (pts (xy 83.82 138.43) (xy 97.79 138.43))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 6ad3ad8a-4a8f-4691-8c14-18027f5e5506)
|
||||
)
|
||||
(wire (pts (xy 205.74 52.07) (xy 210.82 52.07))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 6aedaa1a-2643-48d8-a127-690e42390eef)
|
||||
)
|
||||
(wire (pts (xy 167.64 40.64) (xy 199.39 40.64))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 6d15ee56-a121-436e-9d62-c5001f2fabae)
|
||||
)
|
||||
(wire (pts (xy 41.91 73.66) (xy 41.91 76.2))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 6e1c5c31-27d5-44c9-b212-83ee7fd7b3ed)
|
||||
)
|
||||
(wire (pts (xy 55.88 99.06) (xy 67.31 99.06))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 6f50cb42-0878-4793-8ce4-17550ee35446)
|
||||
)
|
||||
(wire (pts (xy 196.85 43.18) (xy 167.64 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 702e673e-de6b-4d4e-8a75-52a6a5861091)
|
||||
)
|
||||
(wire (pts (xy 74.93 45.72) (xy 92.71 45.72))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 722b8550-14af-4d9a-8435-df5ae7d07d41)
|
||||
)
|
||||
(wire (pts (xy 97.79 78.74) (xy 97.79 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 72f8aa20-3faf-4865-b6ac-8a8b2f08216c)
|
||||
)
|
||||
(wire (pts (xy 41.91 33.02) (xy 118.11 33.02))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 768d5ab4-9e31-40fa-bfea-04525d659905)
|
||||
)
|
||||
(wire (pts (xy 123.19 55.88) (xy 123.19 128.27))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 769cb7df-afa7-4849-b5eb-0031c53d5299)
|
||||
)
|
||||
(wire (pts (xy 92.71 73.66) (xy 92.71 101.6))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 78e5ef4e-2c2f-4016-b66b-8c39be876e50)
|
||||
)
|
||||
(wire (pts (xy 55.88 101.6) (xy 67.31 101.6))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 7ac97073-fe12-4ea6-a2c8-3bd01c6e4785)
|
||||
)
|
||||
(wire (pts (xy 177.8 67.31) (xy 177.8 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 7b51a80a-4b8f-4384-9199-43aeeb9707b7)
|
||||
)
|
||||
(wire (pts (xy 232.41 134.62) (xy 243.84 134.62))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 7eedf31c-e405-4fd2-8da3-0dd550d2b8c0)
|
||||
)
|
||||
(wire (pts (xy 138.43 38.1) (xy 140.97 38.1))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 80f2afea-757e-41c9-b12f-f38ffa6ad523)
|
||||
)
|
||||
(wire (pts (xy 140.97 106.68) (xy 140.97 109.22))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 820f95ae-43bd-45fa-8ad3-766b292296e1)
|
||||
)
|
||||
(wire (pts (xy 95.25 76.2) (xy 74.93 76.2))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 82292ddc-6b8b-4527-8c66-b9f98fb6c4eb)
|
||||
)
|
||||
(wire (pts (xy 154.94 106.68) (xy 140.97 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8297018b-d7f8-42f0-987b-f50e0a4c0daf)
|
||||
)
|
||||
(wire (pts (xy 92.71 66.04) (xy 92.71 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 831d5e1a-0cb1-4361-805d-20872b93f208)
|
||||
)
|
||||
(wire (pts (xy 90.17 63.5) (xy 140.97 63.5))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 84c11d26-a244-4939-a021-aba360e87872)
|
||||
)
|
||||
(wire (pts (xy 232.41 132.08) (xy 243.84 132.08))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8572af9e-47fa-44c7-9c6c-eff263e954d7)
|
||||
)
|
||||
(wire (pts (xy 138.43 43.18) (xy 140.97 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 86504cc8-3add-482e-a368-a267ca93f9c9)
|
||||
)
|
||||
(wire (pts (xy 210.82 66.04) (xy 208.28 66.04))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 888b3628-23a4-4ffc-8571-5a2c973427cf)
|
||||
)
|
||||
(wire (pts (xy 63.5 153.67) (xy 76.2 153.67))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 888fcbff-8854-48b0-9ea0-16b8929051e1)
|
||||
)
|
||||
(wire (pts (xy 138.43 40.64) (xy 140.97 40.64))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 89ec432b-bd9c-44c2-8e0d-bc23b4c68957)
|
||||
)
|
||||
(wire (pts (xy 90.17 99.06) (xy 74.93 99.06))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8a9f752a-c904-41ac-9929-9e3b5cb23a20)
|
||||
)
|
||||
(wire (pts (xy 55.88 45.72) (xy 67.31 45.72))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8aa2f3a3-e524-4958-8e47-fd913daef6ab)
|
||||
)
|
||||
(wire (pts (xy 74.93 104.14) (xy 95.25 104.14))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8aeb0334-184b-4232-8947-e336f207aacc)
|
||||
)
|
||||
(wire (pts (xy 41.91 45.72) (xy 41.91 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8b3384e3-9301-480e-8cad-6df2fb328fa1)
|
||||
)
|
||||
(wire (pts (xy 95.25 76.2) (xy 95.25 104.14))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8bbd6a26-af88-4c12-b83e-13e895a7af5f)
|
||||
)
|
||||
(wire (pts (xy 83.82 156.21) (xy 95.25 156.21))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8cf017ed-5a7c-4462-ba50-60332c060976)
|
||||
)
|
||||
(wire (pts (xy 218.44 134.62) (xy 224.79 134.62))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8d4336e5-e397-41c8-a77b-3708cce8e402)
|
||||
)
|
||||
(wire (pts (xy 41.91 43.18) (xy 41.91 33.02))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9055a0fa-39a5-4ee7-bf01-3dc09b9e5e64)
|
||||
)
|
||||
(wire (pts (xy 228.6 113.03) (xy 228.6 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 90ffe706-5546-4b72-9400-b75447e8dd0b)
|
||||
)
|
||||
(wire (pts (xy 220.98 106.68) (xy 228.6 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9142ade4-3825-4046-83c5-d8b9dbcc12ff)
|
||||
)
|
||||
(wire (pts (xy 210.82 77.47) (xy 208.28 77.47))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 92876795-ea9d-46a6-9fd0-390b718ff0b8)
|
||||
)
|
||||
(wire (pts (xy 63.5 135.89) (xy 76.2 135.89))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 928d9750-048b-4622-bca2-88c9f8fd3c81)
|
||||
)
|
||||
(wire (pts (xy 55.88 81.28) (xy 67.31 81.28))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 92a0e2a2-b13b-4954-abe7-11412fa59063)
|
||||
)
|
||||
(wire (pts (xy 154.94 132.08) (xy 140.97 132.08))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9344480c-e06d-424b-872a-f77757a8ea3d)
|
||||
)
|
||||
(wire (pts (xy 144.78 121.92) (xy 140.97 121.92))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 934b682e-bf7e-44b9-8138-28fdc4db95a0)
|
||||
)
|
||||
(wire (pts (xy 220.98 107.95) (xy 220.98 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 93dade2f-aa96-4193-9233-fe72b7ac4b06)
|
||||
)
|
||||
(wire (pts (xy 213.36 113.03) (xy 203.2 113.03))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 947e940e-a3d3-427b-b258-28cabb74eb5e)
|
||||
)
|
||||
(wire (pts (xy 43.18 99.06) (xy 41.91 99.06))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 97e0ddf1-38f0-447a-bba2-8f5b01242395)
|
||||
)
|
||||
(wire (pts (xy 203.2 113.03) (xy 203.2 120.65))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9978058d-c0d8-4c64-aee1-34438c5dca89)
|
||||
)
|
||||
(wire (pts (xy 63.5 130.81) (xy 76.2 130.81))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 99dea769-9272-48db-94a2-1f557cb90148)
|
||||
)
|
||||
(wire (pts (xy 63.5 156.21) (xy 76.2 156.21))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9a73390e-97b7-49e9-8ad0-55c3f732d638)
|
||||
)
|
||||
(wire (pts (xy 100.33 73.66) (xy 100.33 81.28))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9c5fc0f4-c42a-425f-b19a-99b812740290)
|
||||
)
|
||||
(wire (pts (xy 63.5 138.43) (xy 76.2 138.43))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9d64b488-6204-4aa8-a9ba-f1bb8c5f191d)
|
||||
)
|
||||
(wire (pts (xy 63.5 148.59) (xy 125.73 148.59))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9f95decb-f741-4568-ab86-4fbcdca75b97)
|
||||
)
|
||||
(wire (pts (xy 83.82 130.81) (xy 90.17 130.81))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid a4806678-0c70-4704-893e-8fc2685233d5)
|
||||
)
|
||||
(wire (pts (xy 74.93 78.74) (xy 97.79 78.74))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid a717515d-879b-4802-893c-57c2ff31ac0f)
|
||||
)
|
||||
(wire (pts (xy 43.18 43.18) (xy 41.91 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid a9dea350-de22-4a42-b8c3-7a2033189d70)
|
||||
)
|
||||
(wire (pts (xy 55.88 71.12) (xy 67.31 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid a9ecbed7-6c63-4e1d-8c4f-cd43603f09bd)
|
||||
)
|
||||
(wire (pts (xy 74.93 101.6) (xy 92.71 101.6))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid ac32b9e1-bef9-45b0-bf68-22104b502396)
|
||||
)
|
||||
(wire (pts (xy 74.93 50.8) (xy 97.79 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid ac5b8b87-fea0-44f3-a34a-1402b3108f45)
|
||||
)
|
||||
(wire (pts (xy 167.64 38.1) (xy 210.82 38.1))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid ae13b003-fe65-49c8-b94c-ea1d59f7ac89)
|
||||
)
|
||||
(wire (pts (xy 55.88 43.18) (xy 67.31 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid ae46eb6a-f49e-4781-90c9-94a8a2dbeafc)
|
||||
)
|
||||
(wire (pts (xy 41.91 101.6) (xy 43.18 101.6))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid af5ff40a-cc73-448e-9fe6-837e5309367c)
|
||||
)
|
||||
(wire (pts (xy 83.82 135.89) (xy 95.25 135.89))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid afb5f8aa-8c63-420b-b8ff-9eea6c1c7bb6)
|
||||
)
|
||||
(wire (pts (xy 199.39 49.53) (xy 210.82 49.53))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid afcb5685-b017-406b-90ba-f8142246af4f)
|
||||
)
|
||||
(wire (pts (xy 157.48 26.67) (xy 157.48 30.48))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid afe29c38-e40e-4b08-9a4c-def82de4d751)
|
||||
)
|
||||
(wire (pts (xy 118.11 33.02) (xy 118.11 53.34))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b025b63f-ffb6-4bc9-b176-a064929abb06)
|
||||
)
|
||||
(wire (pts (xy 144.78 124.46) (xy 140.97 124.46))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b1160168-bff5-4720-9761-edfdfb758f27)
|
||||
)
|
||||
(wire (pts (xy 203.2 120.65) (xy 205.74 120.65))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b204e586-7acc-4e0e-91b2-49e5918b5b68)
|
||||
)
|
||||
(wire (pts (xy 123.19 55.88) (xy 140.97 55.88))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b22f081b-6bdf-4260-9030-7f8322556d23)
|
||||
)
|
||||
(wire (pts (xy 240.03 127) (xy 243.84 127))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b290186a-46fd-4ff2-8061-aa12fcd561b2)
|
||||
)
|
||||
(wire (pts (xy 234.95 113.03) (xy 228.6 113.03))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b31227bf-4366-4ff7-9382-5f993ddc06fe)
|
||||
)
|
||||
(wire (pts (xy 175.26 57.15) (xy 176.53 57.15))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b379355d-d504-44f2-b25a-5d5f0725108d)
|
||||
)
|
||||
(wire (pts (xy 210.82 60.96) (xy 196.85 60.96))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b4b92a6d-3621-4a19-99a6-ad56e19c0df4)
|
||||
)
|
||||
(wire (pts (xy 165.1 121.92) (xy 177.8 121.92))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b731d333-851f-4360-9ab9-a39a8d6bc7de)
|
||||
)
|
||||
(wire (pts (xy 208.28 43.18) (xy 208.28 26.67))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b810e069-3dfb-4cd9-bbbf-3f3dc901c597)
|
||||
)
|
||||
(wire (pts (xy 208.28 66.04) (xy 208.28 54.61))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b831b7b6-2b48-48e7-b42b-03ead24953a0)
|
||||
)
|
||||
(wire (pts (xy 41.91 78.74) (xy 41.91 81.28))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b99c0e3e-f57c-44f5-ab53-0ffe62bfc9ee)
|
||||
)
|
||||
(wire (pts (xy 154.94 114.3) (xy 154.94 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid bb4ab115-e8e5-4143-bbf1-6fa6f1c98e78)
|
||||
)
|
||||
(wire (pts (xy 97.79 50.8) (xy 97.79 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid bc5b825a-e755-4413-ae8f-a3ef88e8ff15)
|
||||
)
|
||||
(wire (pts (xy 100.33 109.22) (xy 100.33 140.97))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid bc9f054e-7813-4a15-af55-38c30b9592aa)
|
||||
)
|
||||
(wire (pts (xy 41.91 45.72) (xy 43.18 45.72))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid be22bad9-8f8f-4c42-a349-7f95e5170814)
|
||||
)
|
||||
(wire (pts (xy 55.88 106.68) (xy 67.31 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid be8be54c-6d93-4d82-94ef-b0411a376e10)
|
||||
)
|
||||
(wire (pts (xy 140.97 119.38) (xy 140.97 121.92))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid bea7a5d4-cd36-481d-8a4d-b657c495c2d4)
|
||||
)
|
||||
(wire (pts (xy 41.91 109.22) (xy 41.91 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid bf57d0d7-7d29-43a5-9e87-131a6326357d)
|
||||
)
|
||||
(wire (pts (xy 55.88 73.66) (xy 67.31 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c024ee46-c5fb-45a2-8933-bdb7f12dcfab)
|
||||
)
|
||||
(wire (pts (xy 74.93 81.28) (xy 100.33 81.28))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c09d3e0c-c70e-4f1c-b5b8-024632be0029)
|
||||
)
|
||||
(wire (pts (xy 92.71 133.35) (xy 92.71 153.67))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c231be23-f9dc-4b82-a2f6-06015f1c6ab1)
|
||||
)
|
||||
(wire (pts (xy 41.91 71.12) (xy 41.91 58.42))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c2990719-2dd4-4c1a-aee2-01c1f08e6333)
|
||||
)
|
||||
(wire (pts (xy 90.17 71.12) (xy 74.93 71.12))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c29ec434-c89d-4a73-8bf8-3ec9c475503b)
|
||||
)
|
||||
(wire (pts (xy 83.82 140.97) (xy 100.33 140.97))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c337afa3-0235-452e-aa96-eb18f9666400)
|
||||
)
|
||||
(wire (pts (xy 154.94 101.6) (xy 154.94 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c3952dff-9fc8-4933-b726-2578525882e1)
|
||||
)
|
||||
(wire (pts (xy 152.4 26.67) (xy 152.4 30.48))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c430949f-bd96-487a-90cd-cb82570d7c9f)
|
||||
)
|
||||
(wire (pts (xy 238.76 106.68) (xy 242.57 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c583a2bd-ca32-4bb7-97df-ccaa60cc038a)
|
||||
)
|
||||
(wire (pts (xy 41.91 73.66) (xy 43.18 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c726319f-c11f-49de-addf-3f7b838ca93e)
|
||||
)
|
||||
(wire (pts (xy 177.8 57.15) (xy 176.53 57.15))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c990b640-9d32-425c-8e63-60bfe60f462d)
|
||||
)
|
||||
(wire (pts (xy 43.18 104.14) (xy 41.91 104.14))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid ca664a2a-fe8d-4f51-9d19-ebae5e099dd9)
|
||||
)
|
||||
(wire (pts (xy 176.53 57.15) (xy 176.53 55.88))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid cb997d00-8a65-4dfd-bbba-cd99b4b008c5)
|
||||
)
|
||||
(wire (pts (xy 210.82 54.61) (xy 208.28 54.61))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid cd1bf63a-366e-4ecf-901e-3ce95024228d)
|
||||
)
|
||||
(wire (pts (xy 205.74 63.5) (xy 210.82 63.5))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid cd996ce5-6d63-4f96-ac9f-fbea709193be)
|
||||
)
|
||||
(wire (pts (xy 90.17 43.18) (xy 74.93 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid cf305f47-648e-474b-a477-c69181578cca)
|
||||
)
|
||||
(wire (pts (xy 90.17 43.18) (xy 90.17 63.5))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid cfa460f9-5480-48a4-a91b-26e81df09ce8)
|
||||
)
|
||||
(wire (pts (xy 41.91 50.8) (xy 41.91 48.26))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d013716e-a931-481c-89e5-cc1c74001c93)
|
||||
)
|
||||
(wire (pts (xy 205.74 40.64) (xy 205.74 52.07))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d550eb76-592c-406c-bcd2-e4b7aa4526d6)
|
||||
)
|
||||
(wire (pts (xy 154.94 80.01) (xy 154.94 83.82))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d5cb351b-a3ac-4e9d-a0ee-60455b17acd0)
|
||||
)
|
||||
(wire (pts (xy 41.91 99.06) (xy 41.91 88.9))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d730cbd3-34a3-4590-8832-2b96fd85fd1a)
|
||||
)
|
||||
(wire (pts (xy 228.6 106.68) (xy 231.14 106.68))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d74837ba-ffb9-4aa1-8b13-a2a4efeb1021)
|
||||
)
|
||||
(wire (pts (xy 177.8 59.69) (xy 177.8 57.15))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d76d6f4c-7510-4193-ac3e-b8978c9bab33)
|
||||
)
|
||||
(wire (pts (xy 97.79 138.43) (xy 97.79 158.75))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d81439dd-bdab-4d55-ac90-370ec2d4aaf9)
|
||||
)
|
||||
(wire (pts (xy 167.64 45.72) (xy 194.31 45.72))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d81758a1-8672-4afc-b539-4bbb80063173)
|
||||
)
|
||||
(wire (pts (xy 210.82 40.64) (xy 205.74 40.64))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid d9571824-2e8b-4e60-8327-ff0cbf14b406)
|
||||
)
|
||||
(wire (pts (xy 63.5 158.75) (xy 76.2 158.75))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid da0492cd-87e8-40e4-95d2-dc3deea67b58)
|
||||
)
|
||||
(wire (pts (xy 175.26 73.66) (xy 167.64 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid db408d62-c1e4-434e-8159-5ff13b33cf80)
|
||||
)
|
||||
(wire (pts (xy 154.94 132.08) (xy 154.94 135.89))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid db7e161c-2c05-41b9-9261-46cdf33f3b22)
|
||||
)
|
||||
(wire (pts (xy 120.65 48.26) (xy 140.97 48.26))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid dc2fba9f-c104-4a49-956e-568106099220)
|
||||
)
|
||||
(wire (pts (xy 83.82 158.75) (xy 97.79 158.75))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid dd6fda7f-639d-4c9b-9fb8-ede57e737dfc)
|
||||
)
|
||||
(wire (pts (xy 100.33 140.97) (xy 100.33 161.29))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid dd8182e7-bee3-460a-89d5-8842e75ba44c)
|
||||
)
|
||||
(wire (pts (xy 154.94 129.54) (xy 154.94 132.08))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid e482f03e-5e47-4ac5-8294-31883b434de4)
|
||||
)
|
||||
(wire (pts (xy 210.82 43.18) (xy 208.28 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid e80b84dd-c0c2-43b3-b0c0-74f2d83b6462)
|
||||
)
|
||||
(wire (pts (xy 97.79 71.12) (xy 97.79 78.74))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid eb6d07d9-eceb-4abd-8ad2-16177cbd5290)
|
||||
)
|
||||
(wire (pts (xy 125.73 148.59) (xy 125.73 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid ec389bc0-71ec-4a77-a71d-6f438be93688)
|
||||
)
|
||||
(wire (pts (xy 92.71 45.72) (xy 92.71 66.04))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid efd1e05f-2b09-4803-87c8-f2bbc42702ff)
|
||||
)
|
||||
(wire (pts (xy 175.26 67.31) (xy 175.26 73.66))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid effb8adf-0e30-4cf5-8f5a-5e24e9423bf1)
|
||||
)
|
||||
(wire (pts (xy 41.91 53.34) (xy 41.91 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid f0f775fb-b64f-439a-92af-f03abe35ddee)
|
||||
)
|
||||
(wire (pts (xy 74.93 109.22) (xy 100.33 109.22))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid f327ed75-4ca6-485a-b6b8-aee359149f64)
|
||||
)
|
||||
(wire (pts (xy 140.97 116.84) (xy 140.97 119.38))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid f4359916-d0ef-4676-8390-710a85cd4b7b)
|
||||
)
|
||||
(wire (pts (xy 95.25 76.2) (xy 95.25 68.58))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid f4680d75-f3f2-45d0-96a0-f9ddf6f2c8e5)
|
||||
)
|
||||
(wire (pts (xy 55.88 50.8) (xy 67.31 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid f6abe72a-3e78-4ab1-83cb-4ace30629d35)
|
||||
)
|
||||
(wire (pts (xy 55.88 76.2) (xy 67.31 76.2))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid f6e887c9-0dfd-432c-8683-bea506465792)
|
||||
)
|
||||
(wire (pts (xy 41.91 58.42) (xy 140.97 58.42))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid f826cdb1-fed9-4ef9-a21a-09bec69fd3ec)
|
||||
)
|
||||
(wire (pts (xy 199.39 40.64) (xy 199.39 49.53))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid fa248df5-ccb1-44d8-9817-813ffc225fa9)
|
||||
)
|
||||
(wire (pts (xy 177.8 71.12) (xy 177.8 121.92))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid fbb60ee0-4ad5-4049-8c3c-b2a062c495a4)
|
||||
)
|
||||
(wire (pts (xy 41.91 76.2) (xy 43.18 76.2))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid fef1ec51-1355-49b9-9ba4-ac3e3fc7562e)
|
||||
)
|
||||
|
||||
(text "Gimbal Y2 (Right)" (at 223.52 76.2 0)
|
||||
(effects (font (size 2.27 2.27)) (justify left bottom))
|
||||
(uuid 0666d517-3399-4e5a-a88e-28cb046bab53)
|
||||
)
|
||||
(text "Right \nHat Switch\n20-24" (at 50.8 160.02 0)
|
||||
(effects (font (size 2.27 2.27)) (justify right bottom))
|
||||
(uuid 28c6deef-0288-400d-b950-adf2dba1adf7)
|
||||
)
|
||||
(text "ELRS TX\n" (at 254 132.08 0)
|
||||
(effects (font (size 2.27 2.27)) (justify left bottom))
|
||||
(uuid 666e68ae-3562-4b09-b825-c9f5445176d4)
|
||||
)
|
||||
(text "Right\nTop\nButtons\n10-14\n" (at 38.1 110.49 0)
|
||||
(effects (font (size 2.27 2.27)) (justify right bottom))
|
||||
(uuid 76352af5-c5ca-48fd-bebd-b8161cb04ff3)
|
||||
)
|
||||
(text "Left \nHat Switch\n15-19" (at 50.8 139.7 0)
|
||||
(effects (font (size 2.27 2.27)) (justify right bottom))
|
||||
(uuid 921cb360-d960-4007-bfc3-e8983d17359f)
|
||||
)
|
||||
(text "Gimbal X2 (Right)" (at 223.52 64.77 0)
|
||||
(effects (font (size 2.27 2.27)) (justify left bottom))
|
||||
(uuid 9ef99c88-97e7-430c-98f1-8b504d8de253)
|
||||
)
|
||||
(text "Left\nTop\nButtons\n5-9" (at 36.83 82.55 0)
|
||||
(effects (font (size 2.27 2.27)) (justify right bottom))
|
||||
(uuid 9febdcbd-7a0f-4f31-b915-6903ca937f26)
|
||||
)
|
||||
(text "Bottom\nChassis\nButtons\n0-4" (at 36.83 54.61 0)
|
||||
(effects (font (size 2.27 2.27)) (justify right bottom))
|
||||
(uuid c7b70dbb-f435-4a57-aa9c-8cf50da328cb)
|
||||
)
|
||||
(text "Gimbal X1 (Left)" (at 223.52 41.91 0)
|
||||
(effects (font (size 2.27 2.27)) (justify left bottom))
|
||||
(uuid d87b3a29-cc14-4431-b108-be87ff886dfb)
|
||||
)
|
||||
(text "Gimbal Y1 (Left)" (at 223.52 53.34 0)
|
||||
(effects (font (size 2.27 2.27)) (justify left bottom))
|
||||
(uuid ed3a0309-c84e-411e-aaa8-eac48814b746)
|
||||
)
|
||||
|
||||
(label "COL_B" (at 102.87 66.04 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 0d61b585-25c0-4638-ace1-6a5bcaef579a)
|
||||
)
|
||||
(label "ROW_E" (at 102.87 148.59 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 0f7d66af-5095-4b13-a83a-fcce310d79bc)
|
||||
)
|
||||
(label "14" (at 57.15 109.22 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 1043700f-a2be-4e67-acb0-544cf8cf622d)
|
||||
)
|
||||
(label "20" (at 64.77 151.13 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 13539542-a326-4da1-a8f9-460dcd8288b6)
|
||||
)
|
||||
(label "13" (at 57.15 106.68 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 142ad960-8ff1-4ff7-bc1d-ef1301f97676)
|
||||
)
|
||||
(label "ROW_A" (at 102.87 33.02 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 16299cb0-838b-45d7-a869-bb38b1f960e9)
|
||||
)
|
||||
(label "5" (at 57.15 71.12 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 26487cce-2749-4824-9c07-6d23e54b0f3c)
|
||||
)
|
||||
(label "12" (at 57.15 104.14 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 2cfc3c4b-1882-4416-8552-752703da6232)
|
||||
)
|
||||
(label "ROW_C" (at 102.87 88.9 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 42ca3c1b-bbde-4182-bffb-22b88412990a)
|
||||
)
|
||||
(label "SCL" (at 168.91 71.12 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 694df3d1-4099-4989-8d32-f5ef03f2a22b)
|
||||
)
|
||||
(label "ROW_B" (at 102.87 58.42 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 70015495-bbea-4586-8dfb-554f179da703)
|
||||
)
|
||||
(label "COL_E" (at 102.87 73.66 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 766f499b-13a3-44bb-9d24-5d3ec9910171)
|
||||
)
|
||||
(label "16" (at 64.77 133.35 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 7c639d83-e015-4699-82aa-ad4f853c25db)
|
||||
)
|
||||
(label "COL_D" (at 102.87 71.12 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 7fb0cd8d-f307-4edd-b773-11a61324e6a9)
|
||||
)
|
||||
(label "1" (at 57.15 45.72 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 82a29381-4d55-4d6f-ae63-6c7259728552)
|
||||
)
|
||||
(label "24" (at 64.77 161.29 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 8461981d-35a1-43b7-80c3-0b7a9710472c)
|
||||
)
|
||||
(label "6" (at 57.15 73.66 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 8cfeb9ee-bf03-4a52-8f89-d23e0ac034eb)
|
||||
)
|
||||
(label "2" (at 57.15 48.26 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 8df601d9-d455-4f08-86fb-d85b9dd9aa77)
|
||||
)
|
||||
(label "17" (at 64.77 135.89 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 8f30f7d9-2350-4342-a120-ab81e8271f32)
|
||||
)
|
||||
(label "9" (at 57.15 81.28 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 93f373f7-fc71-494f-8d5d-15c38d4693af)
|
||||
)
|
||||
(label "COL_C" (at 102.87 68.58 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid 983d6c6f-b6f5-4bd3-ae62-26cb1e259dfb)
|
||||
)
|
||||
(label "3" (at 57.15 50.8 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid a3f29ec4-a96f-451d-aa8a-3d9cbd0678c1)
|
||||
)
|
||||
(label "15" (at 64.77 130.81 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid a62949b1-4474-4ed4-8759-09439e5b4e57)
|
||||
)
|
||||
(label "21" (at 64.77 153.67 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid af844ca2-9c24-4317-a84f-a5b8fe7dd953)
|
||||
)
|
||||
(label "ROW_D" (at 102.87 128.27 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid b1454d60-83a4-46cc-848e-4f91b42a4307)
|
||||
)
|
||||
(label "23" (at 64.77 158.75 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid b4773de9-5e94-490c-88c0-d4f3c45d1f16)
|
||||
)
|
||||
(label "18" (at 64.77 138.43 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid bb843c91-2a51-41f1-b9b5-35c508fa8c2b)
|
||||
)
|
||||
(label "4" (at 57.15 53.34 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid c02c8555-a950-4d73-9c96-3dbe375ff404)
|
||||
)
|
||||
(label "19" (at 64.77 140.97 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid c9212c26-622b-4c29-8f62-091c492164c5)
|
||||
)
|
||||
(label "7" (at 57.15 76.2 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid cfc8e49d-0b49-4787-a772-8e8f38501799)
|
||||
)
|
||||
(label "COL_A" (at 102.87 63.5 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid d2d96747-3535-47a1-a53e-26dc350de9f9)
|
||||
)
|
||||
(label "SDA" (at 168.91 73.66 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid e6a9a6f0-f03a-484a-8833-816118269f39)
|
||||
)
|
||||
(label "11" (at 57.15 101.6 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid e935ad71-0ade-4f0e-832e-02562525da82)
|
||||
)
|
||||
(label "10" (at 57.15 99.06 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid e9eef233-6e93-4022-8385-f7fc72e9110d)
|
||||
)
|
||||
(label "22" (at 64.77 156.21 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid f0e481b5-0b65-4a94-a428-b53973bcde19)
|
||||
)
|
||||
(label "8" (at 57.15 78.74 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid f9efb758-59f6-47c5-b3f4-15d8367f0aa6)
|
||||
)
|
||||
(label "0" (at 57.15 43.18 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left bottom))
|
||||
(uuid fbd44916-d627-41f9-bfe0-fa3a393ed2b4)
|
||||
)
|
||||
|
||||
(global_label "ELRS_TX" (shape output) (at 138.43 38.1 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 1eabbbe7-a1bd-4143-80f4-64ed407c2db4)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.6435 38.1 0)
|
||||
(effects (font (size 1.27 1.27)) (justify right) hide)
|
||||
)
|
||||
)
|
||||
(global_label "ELRS_EN" (shape output) (at 138.43 43.18 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 2ea40f3e-301a-433a-8b0f-02bb695b6685)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.3411 43.18 0)
|
||||
(effects (font (size 1.27 1.27)) (justify right) hide)
|
||||
)
|
||||
)
|
||||
(global_label "ELRS_RX" (shape output) (at 218.44 132.08 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 747387a5-56a5-4b4e-a57a-c32c8819734f)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 207.3511 132.08 0)
|
||||
(effects (font (size 1.27 1.27)) (justify right) hide)
|
||||
)
|
||||
)
|
||||
(global_label "ELRS_TX" (shape input) (at 218.44 134.62 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid 9b8b9a0f-fcc3-420a-8d89-908a4ddb7cfe)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 207.6535 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) (justify right) hide)
|
||||
)
|
||||
)
|
||||
(global_label "ELRS_EN" (shape input) (at 200.66 113.03 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid a04431a5-8293-40bf-80f4-1ddbc0e39727)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 189.5711 113.03 0)
|
||||
(effects (font (size 1.27 1.27)) (justify right) hide)
|
||||
)
|
||||
)
|
||||
(global_label "ELRS_RX" (shape input) (at 138.43 40.64 180) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
(uuid ba04dbdc-85ab-407c-9ff4-e2b7e4fcddf1)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 127.3411 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) (justify right) hide)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Transistor_FET:Si2371EDS") (at 240.03 113.03 0) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 03b848b2-56ab-493f-aea2-517b8fbab600)
|
||||
(property "Reference" "Q1" (at 246.38 111.76 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Si2371EDS" (at 246.38 114.3 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 245.11 111.125 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "http://www.vishay.com/docs/63924/si2371eds.pdf" (at 240.03 113.03 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(pin "1" (uuid 089309dc-48f9-47ef-9d65-a7b28adb046d))
|
||||
(pin "2" (uuid 8cb039f8-d123-427f-bf10-e05a2cefddc4))
|
||||
(pin "3" (uuid 53457687-5bef-4e57-89a9-2c75bb0870d2))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "Q1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 177.8 63.5 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 0a0cc368-cf20-4d1d-a4e0-42d9167c2175)
|
||||
(property "Reference" "R2" (at 180.34 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "4K7" (at 180.34 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 176.022 63.5 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 177.8 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid f9e448a9-00f4-4a8a-a9cf-9f07e3efbe80))
|
||||
(pin "2" (uuid dcb5717d-3107-4090-a6f3-5325ca5f3e11))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "R2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 220.98 121.92 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 0c9510f3-8f9b-44da-a352-4c4d12bbb4c5)
|
||||
(property "Reference" "#PWR011" (at 220.98 128.27 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 220.98 127 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 220.98 121.92 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 220.98 121.92 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 9a1c27ff-22d0-4aaf-9eb2-8ebfa0eeb9ae))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR011") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 234.95 106.68 90) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 0d68cac7-a4f1-48a7-98a2-d0e96edc5b71)
|
||||
(property "Reference" "R5" (at 234.95 101.6 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "10k" (at 234.95 104.14 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 234.95 108.458 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 234.95 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 7f245c23-3c41-4299-9932-7864b4346421))
|
||||
(pin "2" (uuid 75a7cc67-55fa-4eab-be8a-3112dc6413d2))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "R5") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 205.74 81.28 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 0e82bcc7-d0eb-45d6-8d50-32af95475206)
|
||||
(property "Reference" "#PWR07" (at 205.74 87.63 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 205.74 86.36 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 205.74 81.28 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 205.74 81.28 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 9cc064cf-e125-406e-86eb-97a7b538f519))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR07") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_01x03") (at 215.9 63.5 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 0ec07590-3947-4ef4-919e-82089c20b382)
|
||||
(property "Reference" "J8" (at 218.44 62.865 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x03" (at 218.44 65.405 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 215.9 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 215.9 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 162d6ef7-a5de-477c-8be6-f24695fa7f42))
|
||||
(pin "2" (uuid e0dc2eae-4cbf-48f0-a1a1-c0af56ff3517))
|
||||
(pin "3" (uuid 805efb08-56cb-4220-909c-6500a89d8587))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J8") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 140.97 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 11628e3d-135d-4e86-8633-d5843523bc2f)
|
||||
(property "Reference" "D20" (at 76.2 139.7 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 86.36 144.78 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 136.525 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 140.97 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 146.05 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 143.51 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 4dc2fd45-59ef-40ca-be2b-cbb7d8c2df42))
|
||||
(pin "2" (uuid 9507c34d-d0c6-466d-bb35-ba364426af22))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D20") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 161.29 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 117ce565-e09c-43da-baa3-ccc15316509e)
|
||||
(property "Reference" "D25" (at 76.2 160.02 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 153.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 156.845 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 161.29 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 156.21 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 158.75 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 2d03e1e6-e081-441b-a8f8-068c576fe470))
|
||||
(pin "2" (uuid 292025b0-df97-409b-8764-d875871109eb))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D25") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_01x06") (at 58.42 133.35 0) (mirror y) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 26e6363c-51a4-47dd-bdec-355c9b3485b8)
|
||||
(property "Reference" "J4" (at 55.88 133.985 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x06" (at 55.88 136.525 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (at 58.42 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 58.42 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid c62b9631-4f72-4d49-90eb-c1af141b6faf))
|
||||
(pin "2" (uuid 604f247e-bbf9-406f-9b27-dab2308f16a1))
|
||||
(pin "3" (uuid d295adfe-ee0d-466e-8d88-fc9c721dc3ed))
|
||||
(pin "4" (uuid 4a6540c0-a3af-43ba-8010-ec14d7720b54))
|
||||
(pin "5" (uuid 2c145f96-4a20-4ae2-b997-937d3bc38010))
|
||||
(pin "6" (uuid 93b7a379-c1d5-4e46-a251-565a25c0696c))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J4") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 154.94 135.89 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 2cec3d34-ea08-4c7d-a932-1b04c9622117)
|
||||
(property "Reference" "#PWR04" (at 154.94 142.24 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 154.94 140.97 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 154.94 135.89 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 154.94 135.89 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 5b08d4bf-6d76-4e99-8025-b0e257a57a03))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR04") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:C") (at 140.97 113.03 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 3b3fe7f5-d089-461c-a2b3-d8687a8166aa)
|
||||
(property "Reference" "C1" (at 144.78 111.76 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "100n" (at 144.78 114.3 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 141.9352 116.84 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 140.97 113.03 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 1872219e-030a-4ed2-85dd-fb516bae39b9))
|
||||
(pin "2" (uuid 653874e4-67f7-4975-a5a0-4343c8f176dd))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "C1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 48.26 76.2 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 4565c5f2-e5f9-4a04-ad77-7815e927dee1)
|
||||
(property "Reference" "J2" (at 49.53 66.04 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_02x05_Odd_Even" (at 49.53 68.58 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (at 48.26 76.2 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 48.26 76.2 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 1488cd0c-ea2d-4390-87e8-ac60f1affc7c))
|
||||
(pin "10" (uuid 911dfdd4-5373-4d00-915e-45f290dd4f4f))
|
||||
(pin "2" (uuid 0541886f-d59f-4379-a58c-bf899f569ee9))
|
||||
(pin "3" (uuid 4187d7c1-830a-438c-8109-f359cf35de68))
|
||||
(pin "4" (uuid 27f55448-ce80-4a27-8d26-67e590780350))
|
||||
(pin "5" (uuid d92ad454-6846-4d6b-84a2-e42219b1f33a))
|
||||
(pin "6" (uuid 258120bd-6c08-49ba-b63e-b3cc49f65e47))
|
||||
(pin "7" (uuid bcb604d4-83e5-4f04-8d06-9bf5ba49cd13))
|
||||
(pin "8" (uuid 63c1b30d-8042-48ab-83c7-fe798701420e))
|
||||
(pin "9" (uuid d3c7e373-8042-4b58-9c0a-2143c219eb9b))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 76.2 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 4730c2eb-c5a8-4486-9072-fae8dd82284e)
|
||||
(property "Reference" "D8" (at 67.31 74.93 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 68.58 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 71.755 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 76.2 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 73.66 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 9a572e8e-0459-4231-a31f-f159746c0675))
|
||||
(pin "2" (uuid 5d03e8b2-1f02-42e1-881a-13f0cba3b1b5))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D8") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 43.18 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 47897e6d-8845-4972-94c2-895158d5cf24)
|
||||
(property "Reference" "D1" (at 67.31 41.91 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 38.1 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 38.735 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 43.18 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 38.1 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid fbf820be-0340-4d50-afdc-03c6814a5249))
|
||||
(pin "2" (uuid 3726ec52-130d-4274-b400-c38865872b60))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_01x04") (at 248.92 129.54 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 483ee3ea-930f-4639-84f8-8c23cf265314)
|
||||
(property "Reference" "J10" (at 247.65 123.19 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x04" (at 251.46 132.715 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (at 248.92 129.54 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 248.92 129.54 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid a4c5ba9c-ed22-4e2b-86e4-5efba279fb28))
|
||||
(pin "2" (uuid 3f3c8591-c2f8-42ed-9c92-4e135e18134c))
|
||||
(pin "3" (uuid 8c40dc21-94fc-4c7c-a82a-dd208f458bd3))
|
||||
(pin "4" (uuid 9f724ddd-4be2-4a03-ba90-8286b1b7a159))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J10") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 134.62 187.96 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 48618493-1ae2-4992-8fa0-92a9c1769f06)
|
||||
(property "Reference" "H3" (at 137.16 187.325 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 137.16 189.865 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_2.5mm" (at 134.62 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 134.62 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "H3") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 48.26 48.26 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 525826e9-1434-48c1-a80a-31f6ae74fd02)
|
||||
(property "Reference" "J1" (at 49.53 38.1 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_02x05_Odd_Even" (at 49.53 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (at 48.26 48.26 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 48.26 48.26 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 86b6a87b-4994-4774-bce5-cbbfd709045d))
|
||||
(pin "10" (uuid ba5d5edd-4849-4143-874d-dcde9477951d))
|
||||
(pin "2" (uuid fe716798-2c7a-4be7-8b14-eae174bdebd1))
|
||||
(pin "3" (uuid 1e271fa0-e0ee-444e-a0e8-5fdab34e877a))
|
||||
(pin "4" (uuid 681b0807-2b43-4313-9362-d652061ba1cd))
|
||||
(pin "5" (uuid 620c26b2-4b4c-4514-8fe6-a3339bcc4064))
|
||||
(pin "6" (uuid 4a0ded44-ac16-4d1d-bb33-306738c05ee2))
|
||||
(pin "7" (uuid 280bd591-2d61-405a-abce-963c53a92451))
|
||||
(pin "8" (uuid 8aaa6de5-c33e-48f1-a4aa-f400918821b5))
|
||||
(pin "9" (uuid 7bfe012f-186c-42d3-b71c-e4695568fd43))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 138.43 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 55f2dfce-1101-4a38-b581-f3e244ad2911)
|
||||
(property "Reference" "D19" (at 76.2 137.16 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 130.81 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 133.985 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 138.43 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 135.89 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 1c8c2743-b3ad-42f2-bb2a-71d59e172097))
|
||||
(pin "2" (uuid 74f943f1-eb94-4007-b2af-556fea7c5878))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D19") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 209.55 120.65 270) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 565e532c-e240-4896-b879-483c93a6fce1)
|
||||
(property "Reference" "R6" (at 209.55 115.57 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "10k" (at 209.55 118.11 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 209.55 118.872 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 209.55 120.65 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid dbff2034-65ee-493c-88be-45626a596a12))
|
||||
(pin "2" (uuid 549e6a17-c060-421d-aaa0-3290b9503b9a))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "R6") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 99.06 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 5a5e40f9-7c58-4cc0-aa84-674489c930ad)
|
||||
(property "Reference" "D11" (at 67.31 97.79 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 93.98 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 94.615 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 99.06 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 93.98 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 96.52 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid cf94037d-c40e-4654-a6cf-7e3a03d835f0))
|
||||
(pin "2" (uuid c46622ad-c4d1-4ad4-9803-e2d870415b09))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D11") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 153.67 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 5fc25040-8b26-4277-ac6d-dce5b5212273)
|
||||
(property "Reference" "D22" (at 76.2 152.4 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 146.05 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 149.225 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 153.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 148.59 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 151.13 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid c959a7ac-0a07-48d4-93fd-0bef66b1628b))
|
||||
(pin "2" (uuid 4f8af9ea-a394-4b7e-ac32-cbe120b1e084))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D22") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 101.6 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 6420fbce-41ed-4799-b5de-edbc7edbdc7d)
|
||||
(property "Reference" "D12" (at 67.31 100.33 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 93.98 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 97.155 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 96.52 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 99.06 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid f7fd7b48-f4c9-49fa-84de-803f4f2c4130))
|
||||
(pin "2" (uuid ff439651-9817-447c-8dd0-98c137fa5ab2))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D12") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 130.81 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 6bfe133e-56fd-4b70-b6c1-cd3ebf134bcd)
|
||||
(property "Reference" "D16" (at 76.2 129.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 125.73 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 126.365 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 130.81 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 125.73 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 128.27 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 3663459a-bd5c-47fd-bbd1-75d91fe61b3a))
|
||||
(pin "2" (uuid 6c74f41d-a2c8-42d2-ada6-ac03fe96de77))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D16") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 81.28 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 707ff336-6467-4616-afc1-728cadb86d16)
|
||||
(property "Reference" "D10" (at 67.31 80.01 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 73.66 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 76.835 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 81.28 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 76.2 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 78.74 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid ba014596-0685-4ae1-88b0-47f3808dc117))
|
||||
(pin "2" (uuid b28148c7-5fc3-4fba-9fcd-0f5783770d98))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D10") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 135.89 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 74a985f0-f4a9-4e31-b7f1-320821d6d66e)
|
||||
(property "Reference" "D18" (at 76.2 134.62 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 128.27 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 131.445 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 135.89 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 130.81 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid f71a6594-aae3-4a19-972a-27a1b9702026))
|
||||
(pin "2" (uuid 64578d8f-d872-40d6-bac9-85ca2685dff8))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D18") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_01x03") (at 215.9 74.93 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 76c08555-e975-4f7d-91e5-0cd76cd8d92a)
|
||||
(property "Reference" "J9" (at 218.44 74.295 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x03" (at 218.44 76.835 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 215.9 74.93 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 215.9 74.93 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 5e120712-94c2-4fcd-a42a-de7edb41815e))
|
||||
(pin "2" (uuid 294f2131-8d7a-44e5-a1f2-7b2d553858ff))
|
||||
(pin "3" (uuid 33964e29-a132-4b1b-ad15-2192d950dc9e))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J9") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "cmdr-joystick:rp2040zero_upside_down") (at 154.94 27.94 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 795b74f0-3721-4c81-b298-919dc8937d52)
|
||||
(property "Reference" "U1" (at 156.8959 80.01 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "rp2040zero" (at 162.56 82.55 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "cmdr-joystick:rp2040zero_upside_down" (at 154.94 27.94 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 154.94 27.94 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid b35a1187-817d-45d6-a94f-7eb75c7ed83a))
|
||||
(pin "10" (uuid 4c3602c0-850a-43dd-a7ea-3d851d7dcf87))
|
||||
(pin "11" (uuid 10a0da9c-28b5-4f48-bfae-b3c4073d488e))
|
||||
(pin "12" (uuid e4379da0-94d9-4d47-b0c8-113bd31edb39))
|
||||
(pin "13" (uuid 70a8b18c-43ea-4c19-b57a-fecff32ca14e))
|
||||
(pin "14" (uuid 3c066e11-36df-4dac-bc3b-6bbef2872ba2))
|
||||
(pin "15" (uuid 5166e2cd-035f-49c8-8fcd-04a1c2cf0a16))
|
||||
(pin "16" (uuid 27df1a2b-b3c0-4779-91e9-7f72a4086a14))
|
||||
(pin "17" (uuid 4854e014-edf9-40b8-b62e-158e018dffae))
|
||||
(pin "18" (uuid 4bbb344b-0bee-4458-ad66-3fa4ed10cb9b))
|
||||
(pin "19" (uuid ffd1c0e9-9f70-4c7b-aa69-8d2fad93a047))
|
||||
(pin "2" (uuid b04142ce-1ec5-449b-b8c3-dc5539717e74))
|
||||
(pin "20" (uuid f71b8132-12d1-42ec-9df2-f76c1a5b17a7))
|
||||
(pin "21" (uuid e304e866-a243-4801-b316-1d3c56ad71df))
|
||||
(pin "22" (uuid 59968ec1-e4a6-4e24-bbe3-fd82d32fba7a))
|
||||
(pin "23" (uuid 3db3e853-8e1d-4741-ae29-79e4770cb2c9))
|
||||
(pin "3" (uuid 8a682c18-5156-48a1-9a9d-25daaea96275))
|
||||
(pin "4" (uuid d5675544-370e-4c83-9c85-94c2683a0ccc))
|
||||
(pin "5" (uuid 7646ff57-d596-4017-8054-85df55742e9b))
|
||||
(pin "6" (uuid eadfa234-af60-4c7c-badf-3cad777e25fa))
|
||||
(pin "7" (uuid 22431c04-59f8-4b90-9fd2-97fa8d35fcb4))
|
||||
(pin "8" (uuid 889a86b5-b8fd-4546-bcbe-8ea6c34cb00b))
|
||||
(pin "9" (uuid 1d688488-f3ce-4c08-9f7c-e99ed2e89b2c))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "U1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:+5V") (at 242.57 102.87 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 7e207896-a7c4-4d9a-900b-de8eb0e83c80)
|
||||
(property "Reference" "#PWR08" (at 242.57 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+5V" (at 242.57 99.06 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 242.57 102.87 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 242.57 102.87 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 3d64d31a-42ce-4013-b0fa-0ad8f6edbc1f))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR08") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 45.72 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 808cb32e-f73f-4cd1-afd4-916763cdc03e)
|
||||
(property "Reference" "D2" (at 67.31 44.45 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 38.1 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 41.275 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 45.72 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 43.18 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 0e6525d7-762f-4ab7-a610-e5cbd1f2ef7c))
|
||||
(pin "2" (uuid 3d9f2c1d-a706-4178-bfb2-a200e7787eec))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Transistor_FET:2N7002E") (at 218.44 113.03 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 83abb77d-9fac-4b73-b5ad-1182f7a0ac64)
|
||||
(property "Reference" "Q2" (at 223.52 114.3 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "2N7002E" (at 223.52 116.84 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 223.52 114.935 0)
|
||||
(effects (font (size 1.27 1.27) italic) (justify left) hide)
|
||||
)
|
||||
(property "Datasheet" "http://www.diodes.com/assets/Datasheets/ds30376.pdf" (at 218.44 113.03 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(pin "1" (uuid b78aca43-2f57-46f9-a293-895eec9dba80))
|
||||
(pin "2" (uuid 4b09c525-a4e0-47c5-ba0e-ab616a103908))
|
||||
(pin "3" (uuid a771697d-5ad9-40a5-a3f1-65de94b4dbf5))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "Q2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 175.26 63.5 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 85bdabf8-588b-469f-8554-ae257f2af1b0)
|
||||
(property "Reference" "R1" (at 170.18 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "4K7" (at 168.91 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 173.482 63.5 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 175.26 63.5 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 2b5fb791-790f-4cfd-b894-9e9c68671805))
|
||||
(pin "2" (uuid f14e84ce-5caa-4319-a2aa-9b01be07f756))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "R1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 148.59 187.96 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 86d2fcc0-453e-4f9f-985c-981c3b10467b)
|
||||
(property "Reference" "H4" (at 151.13 187.325 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 151.13 189.865 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_2.5mm" (at 148.59 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 148.59 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "H4") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 71.12 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 8b8f56e7-d9d1-4349-ba1d-f583971cec76)
|
||||
(property "Reference" "D6" (at 67.31 69.85 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 66.04 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 66.675 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 68.58 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 535f6edf-3c40-4ddc-8be8-b1d278fc3b45))
|
||||
(pin "2" (uuid 50eacef6-8730-4f5b-b3db-3f91ba9bce25))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D6") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 48.26 104.14 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 94411e0c-ad6f-4e33-ba87-14b70aad5582)
|
||||
(property "Reference" "J3" (at 49.53 93.98 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_02x05_Odd_Even" (at 49.53 96.52 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical" (at 48.26 104.14 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 48.26 104.14 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 15673eb1-44c6-4993-b649-ede5fcbb1199))
|
||||
(pin "10" (uuid 5e0a2d6a-cbad-4f6e-99fe-dda54bf31fb7))
|
||||
(pin "2" (uuid 11dea347-2531-4e71-b33e-d992523e7550))
|
||||
(pin "3" (uuid 375be0a1-1c56-43a0-91ca-e887780878a9))
|
||||
(pin "4" (uuid 63348e82-7206-4ef6-a51f-9c22b334ab7b))
|
||||
(pin "5" (uuid f7cfbc3c-38ae-4ca2-820d-4add9cf7a296))
|
||||
(pin "6" (uuid 4cbe7792-5acd-4d35-9bff-00d7a0854982))
|
||||
(pin "7" (uuid 337e35d7-ee8a-4b49-9e87-991f27f5f03d))
|
||||
(pin "8" (uuid 59848d2e-ac49-4234-920e-eef792cabebf))
|
||||
(pin "9" (uuid 1c1a8f81-1615-4894-b69d-4ce54308cac9))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J3") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_01x03") (at 215.9 40.64 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 98bcdf0a-42ab-45e4-9dac-341dc1a256b5)
|
||||
(property "Reference" "J6" (at 218.44 40.005 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x03" (at 218.44 42.545 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 215.9 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 215.9 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 7754ef6e-2e03-497a-9a72-aa51f57185df))
|
||||
(pin "2" (uuid 6d77583a-aa12-4825-96bd-16001b7926aa))
|
||||
(pin "3" (uuid 5950f81b-3c91-49a4-85a5-7104c17f4b47))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J6") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:+3.3V") (at 154.94 101.6 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 9cf1a50d-4b61-47bc-a0b0-ad326cf7e9d9)
|
||||
(property "Reference" "#PWR03" (at 154.94 105.41 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+3.3V" (at 154.94 97.79 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 154.94 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 154.94 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid cbadd591-b3e3-46d6-a8e3-9240e962e030))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR03") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 133.35 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid a2fb222e-7515-4b0e-87b0-af0389537135)
|
||||
(property "Reference" "D17" (at 76.2 132.08 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 125.73 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 128.905 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 133.35 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 128.27 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 130.81 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 5a994bf5-e9c6-4431-89fe-c836eb7ef35e))
|
||||
(pin "2" (uuid 4f95589e-6fe2-49de-87f8-c674a0ecb7fd))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D17") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 120.65 187.96 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid a546896a-8094-4a12-a31a-1ecf6356a53a)
|
||||
(property "Reference" "H2" (at 123.19 187.325 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 123.19 189.865 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_2.5mm" (at 120.65 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 120.65 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "H2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 151.13 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid abff9f60-9822-4481-8a29-a10838fc4eb6)
|
||||
(property "Reference" "D21" (at 76.2 149.86 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 146.05 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 146.685 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 151.13 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 156.21 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 153.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 2e6d848b-0fc2-4a30-9ce8-0564158ff814))
|
||||
(pin "2" (uuid 4ae1ec64-bbe8-430d-922e-c87bc5f949f7))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D21") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 73.66 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid ae8e0c8e-eaf7-499e-8199-dcd7dfe88b52)
|
||||
(property "Reference" "D7" (at 67.31 72.39 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 66.04 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 69.215 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 73.66 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 68.58 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 0aabe81f-65fd-4f8c-966b-228b0b9f3ba2))
|
||||
(pin "2" (uuid 88b1a738-a0f5-4086-a521-047569245b97))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D7") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 228.6 132.08 90) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid afd9d4d1-d6d6-46bf-ad13-e7f246898d4a)
|
||||
(property "Reference" "R3" (at 223.52 130.81 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "220" (at 233.68 130.81 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 228.6 133.858 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 228.6 132.08 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 063dc49d-6ada-40b0-8e0f-ec312fe256ef))
|
||||
(pin "2" (uuid f9eda55d-9a4b-4a42-82be-4376e33c1e0c))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "R3") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Memory_EEPROM:M24C02-FMN") (at 154.94 121.92 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid b025c4db-a991-45d4-8da2-1512c87a4f4b)
|
||||
(property "Reference" "U2" (at 156.8959 113.03 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "M24C02-FMN" (at 156.8959 115.57 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 154.94 113.03 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/b0/d8/50/40/5a/85/49/6f/DM00071904.pdf/files/DM00071904.pdf/jcr:content/translations/en.DM00071904.pdf" (at 156.21 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid da21bee0-e458-4b71-84a1-627a17c749f5))
|
||||
(pin "2" (uuid 7d1d18ac-8e43-41ed-9f14-66a96f281d7f))
|
||||
(pin "3" (uuid 2cd8cf4a-9eb4-40c1-998a-55040ce0fd5b))
|
||||
(pin "4" (uuid ef6b5a50-70b2-4e95-bac5-cf96ad62aed9))
|
||||
(pin "5" (uuid 5e80187d-a2d0-4194-acb6-1070ef2b8b92))
|
||||
(pin "6" (uuid c19d1225-8922-4dee-afae-60e471f1cb80))
|
||||
(pin "7" (uuid 597ff131-f4a2-4c9a-b897-334024ead910))
|
||||
(pin "8" (uuid 376374a0-cd72-48ef-8de5-343fbfac438b))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "U2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_01x06") (at 58.42 153.67 0) (mirror y) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid b1057dbb-7c43-4de7-97b8-278671667c1e)
|
||||
(property "Reference" "J5" (at 55.88 154.305 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x06" (at 55.88 156.845 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (at 58.42 153.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 58.42 153.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 099f9ae5-be61-4787-a6d4-ab7f03c037c8))
|
||||
(pin "2" (uuid 1542c7a5-8032-4856-b77d-ae62519327e4))
|
||||
(pin "3" (uuid abc0ddff-72c2-44cf-b044-30bd674a076a))
|
||||
(pin "4" (uuid fdeda07c-3049-4217-8876-72cc87170085))
|
||||
(pin "5" (uuid 194a7a58-0d4d-4452-b7fe-ba7da96dcb56))
|
||||
(pin "6" (uuid de261afa-bab2-4026-8e29-27f2b6fd5bec))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J5") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:+3.3V") (at 157.48 26.67 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid b94800de-b073-41e7-9c96-d0182e0982b2)
|
||||
(property "Reference" "#PWR05" (at 157.48 30.48 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+3.3V" (at 157.48 22.86 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 157.48 26.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 157.48 26.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 25b220a1-698d-4e34-afd3-333c6e7fd12e))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR05") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 109.22 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid c1f63e54-ef1b-4636-95a2-acca8fa49b1e)
|
||||
(property "Reference" "D15" (at 67.31 107.95 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 104.775 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 109.22 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 104.14 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid e01fbde6-0c1c-4bb1-9dcb-cf8e62a29452))
|
||||
(pin "2" (uuid abaece5b-c6af-494c-9646-8aacff8fdf10))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D15") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 106.68 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid c229ee4b-0a29-4ace-a2f4-d1ab9d142d96)
|
||||
(property "Reference" "D14" (at 67.31 105.41 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 99.06 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 102.235 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 106.68 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 104.14 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 233bca01-6cc9-41fc-8313-e1bf5f472085))
|
||||
(pin "2" (uuid 04c6cf5b-893f-4165-8eca-7e78cd82b95f))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D14") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 53.34 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid c6115766-8a8c-4793-b88d-270f5b973cfa)
|
||||
(property "Reference" "D5" (at 67.31 52.07 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 45.72 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 48.895 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 53.34 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 48.26 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 50.8 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 1a20f6eb-bca3-4f27-816e-a051d55d161e))
|
||||
(pin "2" (uuid 1e3da401-bafe-4273-a4c2-92a6eed9c90b))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D5") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 106.68 187.96 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid cbd6981b-f320-4d24-bf4b-3857b0157cf2)
|
||||
(property "Reference" "H1" (at 109.22 187.325 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 121.92 193.04 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_2.5mm" (at 106.68 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 106.68 187.96 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "H1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 240.03 137.16 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid d03ddfd3-0016-4f73-8f50-7511e6b09afa)
|
||||
(property "Reference" "#PWR010" (at 240.03 143.51 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 240.03 142.24 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 240.03 137.16 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 240.03 137.16 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 21ff5f13-b716-47a1-8417-26d36a1c1f5f))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR010") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 158.75 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid d47d8375-3ebf-4f91-8fea-1edd237b8501)
|
||||
(property "Reference" "D24" (at 76.2 157.48 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 151.13 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 154.305 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 158.75 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 153.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 156.21 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 05dcb2de-a40c-4184-9a9f-de22cd3bc866))
|
||||
(pin "2" (uuid be22c08e-cd08-4614-bc46-8e5a29f95ccb))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D24") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 154.94 83.82 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid dcb6227b-c5d8-4887-8202-487bc455aad3)
|
||||
(property "Reference" "#PWR02" (at 154.94 90.17 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 154.94 88.9 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 154.94 83.82 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 154.94 83.82 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 6262775a-8c48-4a04-97d3-97d257d285b3))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR02") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 50.8 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid ddf3dc6b-0229-4461-90f4-7e3b470e13cd)
|
||||
(property "Reference" "D4" (at 67.31 49.53 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 43.18 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 46.355 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 50.8 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 45.72 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 48.26 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 0c683688-e6d3-4d47-ae8d-6e8fbe61973c))
|
||||
(pin "2" (uuid de65c15a-a239-4e72-ad23-fa0cf907152b))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D4") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 78.74 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid ec94ae4a-be2a-4919-99ed-9c611e430b7d)
|
||||
(property "Reference" "D9" (at 67.31 77.47 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 74.295 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 78.74 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 73.66 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 76.2 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 97fbbcd3-7150-44dd-b413-fe23336b0f45))
|
||||
(pin "2" (uuid 07608317-32d6-40f9-8a22-0a3367075915))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D9") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 80.01 156.21 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid f0923a89-23cf-4eec-a448-23e8a770aec5)
|
||||
(property "Reference" "D23" (at 76.2 154.94 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 80.01 148.59 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 151.765 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 80.01 156.21 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 80.01 151.13 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 80.01 153.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 17af38bc-3a8b-4fc7-8750-ee32a4c77ec7))
|
||||
(pin "2" (uuid 456392b7-b27e-42f8-a808-597a86bc10db))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D23") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector_Generic:Conn_01x03") (at 215.9 52.07 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid f102c30f-f4a7-487e-a2d3-49d6b6c867a3)
|
||||
(property "Reference" "J7" (at 218.44 51.435 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x03" (at 218.44 53.975 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 215.9 52.07 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 215.9 52.07 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 681ee1b9-c0cf-4c9e-888d-1e01c82f6c3d))
|
||||
(pin "2" (uuid e9be020c-bd7e-4b06-b4f7-7bd056dce72e))
|
||||
(pin "3" (uuid 128744b2-6279-44ca-b569-8978fdfd8992))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "J7") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 104.14 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid f1818549-bcd9-4856-ae4d-d9d36f7e062b)
|
||||
(property "Reference" "D13" (at 67.31 102.87 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 96.52 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 99.695 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 104.14 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 99.06 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 101.6 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 8ef6c634-fbb4-4063-bcee-f2f9c52c2660))
|
||||
(pin "2" (uuid de033cbe-bb66-4239-a616-4d78baa4e078))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D13") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 228.6 134.62 90) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid f27d2be4-7b33-4779-a396-570c1c353b19)
|
||||
(property "Reference" "R4" (at 223.52 133.35 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "220" (at 233.68 133.35 90)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 228.6 136.398 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 228.6 134.62 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 4bced8c7-10ef-46ad-b382-70dc66ab0c51))
|
||||
(pin "2" (uuid cb67ab35-716c-4a21-8578-904e4eeb4d40))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "R4") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Diode:1N4148W") (at 71.12 48.26 180) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid f5c5a5cb-fd25-4932-89ba-69e3e384fa26)
|
||||
(property "Reference" "D3" (at 67.31 46.99 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "1N4148W" (at 71.12 40.64 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Footprint" "Diode_SMD:D_SOD-123" (at 71.12 43.815 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 71.12 48.26 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Device" "D" (at 71.12 43.18 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Sim.Pins" "1=K 2=A" (at 71.12 45.72 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 7f6a4c4e-350c-4e05-bd00-6b64273bf8b1))
|
||||
(pin "2" (uuid 31414ed4-9651-471c-833e-892ef29e8baa))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "D3") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:+5V") (at 152.4 26.67 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid f9a498be-0770-47dc-87fe-691c55e0d82c)
|
||||
(property "Reference" "#PWR01" (at 152.4 30.48 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+5V" (at 152.4 22.86 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 152.4 26.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 152.4 26.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 33e05c66-e4bb-44b9-8e52-14d5a5cbc253))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR01") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:+3.3V") (at 176.53 55.88 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid fdc4389b-d423-4a7f-b3bf-37ceabd74793)
|
||||
(property "Reference" "#PWR06" (at 176.53 59.69 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+3.3V" (at 176.53 52.07 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 176.53 55.88 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 176.53 55.88 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid ae0b58a7-5e91-41f6-af7e-03b38ea763b7))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR06") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:+3.3V") (at 208.28 26.67 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid ffce5c31-e4d1-423e-b845-9d998ed17c5c)
|
||||
(property "Reference" "#PWR09" (at 208.28 30.48 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "+3.3V" (at 208.28 22.86 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 208.28 26.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 208.28 26.67 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid b3672ce0-b871-4f14-99d2-8fed7ff7a4a7))
|
||||
(instances
|
||||
(project "cmdr-joystick"
|
||||
(path "/5b501981-46e2-4084-afad-38073ca78ebd"
|
||||
(reference "#PWR09") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(sheet_instances
|
||||
(path "/" (page "1"))
|
||||
)
|
||||
)
|
||||
116
eCAD/cmdr-joystick/cmdr-joystick.kicad_sym
Normal file
116
eCAD/cmdr-joystick/cmdr-joystick.kicad_sym
Normal file
@ -0,0 +1,116 @@
|
||||
(kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor)
|
||||
(symbol "rp2040zero_upside_down" (in_bom yes) (on_board yes)
|
||||
(property "Reference" "U" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "rp2040zero_upside_down_0_1"
|
||||
(rectangle (start -11.43 -5.08) (end 10.16 -49.53)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "rp2040zero_upside_down_1_1"
|
||||
(pin bidirectional line (at -13.97 -10.16 0) (length 2.54)
|
||||
(name "GP0" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -35.56 0) (length 2.54)
|
||||
(name "GP9" (effects (font (size 1.27 1.27))))
|
||||
(number "10" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -38.1 0) (length 2.54)
|
||||
(name "GP10" (effects (font (size 1.27 1.27))))
|
||||
(number "11" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -40.64 0) (length 2.54)
|
||||
(name "GP11" (effects (font (size 1.27 1.27))))
|
||||
(number "12" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -43.18 0) (length 2.54)
|
||||
(name "GP12" (effects (font (size 1.27 1.27))))
|
||||
(number "13" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -45.72 0) (length 2.54)
|
||||
(name "GP13" (effects (font (size 1.27 1.27))))
|
||||
(number "14" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -45.72 180) (length 2.54)
|
||||
(name "GP14" (effects (font (size 1.27 1.27))))
|
||||
(number "15" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -43.18 180) (length 2.54)
|
||||
(name "GP15" (effects (font (size 1.27 1.27))))
|
||||
(number "16" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -17.78 180) (length 2.54)
|
||||
(name "GP26" (effects (font (size 1.27 1.27))))
|
||||
(number "17" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -15.24 180) (length 2.54)
|
||||
(name "GP27" (effects (font (size 1.27 1.27))))
|
||||
(number "18" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -12.7 180) (length 2.54)
|
||||
(name "GP28" (effects (font (size 1.27 1.27))))
|
||||
(number "19" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -12.7 0) (length 2.54)
|
||||
(name "GP1" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
|
||||
(name "GP29" (effects (font (size 1.27 1.27))))
|
||||
(number "20" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_out line (at 2.54 -2.54 270) (length 2.54)
|
||||
(name "3V3" (effects (font (size 1.27 1.27))))
|
||||
(number "21" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_out line (at 0 -52.07 90) (length 2.54)
|
||||
(name "GND" (effects (font (size 1.27 1.27))))
|
||||
(number "22" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin power_in line (at -2.54 -2.54 270) (length 2.54)
|
||||
(name "5V" (effects (font (size 1.27 1.27))))
|
||||
(number "23" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -15.24 0) (length 2.54)
|
||||
(name "GP2" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -17.78 0) (length 2.54)
|
||||
(name "GP3" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -20.32 0) (length 2.54)
|
||||
(name "GP4" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -22.86 0) (length 2.54)
|
||||
(name "GP5" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -25.4 0) (length 2.54)
|
||||
(name "GP6" (effects (font (size 1.27 1.27))))
|
||||
(number "7" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -27.94 0) (length 2.54)
|
||||
(name "GP7" (effects (font (size 1.27 1.27))))
|
||||
(number "8" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin bidirectional line (at -13.97 -30.48 0) (length 2.54)
|
||||
(name "GP8" (effects (font (size 1.27 1.27))))
|
||||
(number "9" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
114
eCAD/cmdr-joystick/cmdr-joystick.pretty/cmtec_logo.kicad_mod
Normal file
114
eCAD/cmdr-joystick/cmdr-joystick.pretty/cmtec_logo.kicad_mod
Normal file
@ -0,0 +1,114 @@
|
||||
(footprint "cmtec_logo" (version 20221018) (generator pcbnew)
|
||||
(layer "F.Cu")
|
||||
(attr through_hole)
|
||||
(fp_text reference "G***" (at 0 0) (layer "F.SilkS") hide
|
||||
(effects (font (size 1.524 1.524) (thickness 0.3)))
|
||||
(tstamp 00000000-0000-0000-0000-000000000000)
|
||||
)
|
||||
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
|
||||
(effects (font (size 1.524 1.524) (thickness 0.3)))
|
||||
(tstamp 00000000-0000-0000-0000-000000000000)
|
||||
)
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 0 2.963334)
|
||||
(xy -1.495778 2.963334)
|
||||
(xy -1.495778 -2.963333)
|
||||
(xy 0 -2.963333)
|
||||
(xy 0 2.963334)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 2.229556 0.084667)
|
||||
(xy 0.733778 0.084667)
|
||||
(xy 0.733778 -2.963333)
|
||||
(xy 2.229556 -2.963333)
|
||||
(xy 2.229556 0.084667)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 4.459111 2.963334)
|
||||
(xy 2.963334 2.963334)
|
||||
(xy 2.963334 -2.963333)
|
||||
(xy 4.459111 -2.963333)
|
||||
(xy 4.459111 2.963334)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 5.870222 0.846667)
|
||||
(xy 5.362222 0.846667)
|
||||
(xy 5.362222 -0.846666)
|
||||
(xy 5.870222 -0.846666)
|
||||
(xy 5.870222 0.846667)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 6.632222 0.846667)
|
||||
(xy 6.096 0.846667)
|
||||
(xy 6.096 -0.846666)
|
||||
(xy 6.632222 -0.846666)
|
||||
(xy 6.632222 0.846667)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 7.394222 0.846667)
|
||||
(xy 6.886222 0.846667)
|
||||
(xy 6.886222 -0.846666)
|
||||
(xy 7.394222 -0.846666)
|
||||
(xy 7.394222 0.846667)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy -2.427111 -1.467555)
|
||||
(xy -5.870222 -1.467555)
|
||||
(xy -5.870222 1.467556)
|
||||
(xy -2.427111 1.467556)
|
||||
(xy -2.427111 2.963334)
|
||||
(xy -7.394222 2.963334)
|
||||
(xy -7.394222 -2.991555)
|
||||
(xy -2.427111 -2.991555)
|
||||
(xy -2.427111 -1.467555)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 5.870222 -1.778)
|
||||
(xy 6.886222 -1.778)
|
||||
(xy 6.886222 -2.935111)
|
||||
(xy 7.394222 -2.935111)
|
||||
(xy 7.394222 -1.241778)
|
||||
(xy 5.362222 -1.241778)
|
||||
(xy 5.362222 -2.935111)
|
||||
(xy 5.870222 -2.935111)
|
||||
(xy 5.870222 -1.778)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
(fp_poly
|
||||
(pts
|
||||
(xy 5.870222 1.890889)
|
||||
(xy 7.394222 1.890889)
|
||||
(xy 7.394222 2.398889)
|
||||
(xy 5.870222 2.398889)
|
||||
(xy 5.870222 2.991556)
|
||||
(xy 5.362222 2.991556)
|
||||
(xy 5.362222 1.298222)
|
||||
(xy 5.870222 1.298222)
|
||||
(xy 5.870222 1.890889)
|
||||
)
|
||||
|
||||
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000000000000))
|
||||
)
|
||||
@ -0,0 +1,39 @@
|
||||
(footprint "rp2040zero_upside_down" (version 20221018) (generator pcbnew)
|
||||
(layer "F.Cu")
|
||||
(attr through_hole)
|
||||
(fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
|
||||
(effects (font (size 1 1) (thickness 0.1)))
|
||||
(tstamp 5fc00236-eb70-4a2d-8f19-ad66a2a06a4b)
|
||||
)
|
||||
(fp_text value "rp2040zero_upside_down" (at 0 1 unlocked) (layer "F.Fab")
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
(tstamp 4e5ba918-719b-435f-b17f-f32da9b9f404)
|
||||
)
|
||||
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
(tstamp 3fad9493-ea2c-46d2-ab5c-43287b9d3d46)
|
||||
)
|
||||
(pad "1" thru_hole rect (at -7.62 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 8e84f5fe-9061-46b8-bde5-058af5ee6ff8))
|
||||
(pad "2" thru_hole circle (at -7.62 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 29f20045-843a-44f1-9f1f-dd12775fcd25))
|
||||
(pad "3" thru_hole circle (at -7.62 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp cfaa88ec-0ade-41c9-b6e0-88291f0414da))
|
||||
(pad "4" thru_hole circle (at -7.62 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 0f72d803-7451-4108-ae26-9d5f808689e2))
|
||||
(pad "5" thru_hole circle (at -7.62 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 91ac5dda-90ee-43ad-9d96-b4725c852b68))
|
||||
(pad "6" thru_hole circle (at -7.62 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 2fab1498-eae7-45f8-9ad3-74fa9feacef7))
|
||||
(pad "7" thru_hole circle (at -7.62 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 7c3b7aee-62df-4ec4-b53a-cfbaad6ccb31))
|
||||
(pad "8" thru_hole circle (at -7.62 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 117fdde3-c4f1-4ee7-b991-d5e567efa002))
|
||||
(pad "9" thru_hole circle (at -7.62 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 3266ca2d-c3c3-49b9-9740-8258ddfac569))
|
||||
(pad "10" thru_hole circle (at -5.08 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp b51fdbe0-b604-4840-b954-1521b332633e))
|
||||
(pad "11" thru_hole circle (at -2.54 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 1cf6acb3-8dca-4927-9491-fb194baed949))
|
||||
(pad "12" thru_hole circle (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 78d749b6-a13b-41fe-a723-f1d93b036450))
|
||||
(pad "13" thru_hole circle (at 2.54 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 80314db1-d46b-46fa-a3e3-8323bd28b1b2))
|
||||
(pad "14" thru_hole circle (at 5.08 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp fd371ab5-e4b0-4db9-a683-937a36d4d8dc))
|
||||
(pad "15" thru_hole circle (at 7.62 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp c0cd8a0f-14a2-4bcc-a78d-88f37c369f4f))
|
||||
(pad "16" thru_hole circle (at 7.62 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp c389a682-0580-4d79-9bb6-edfe83c59c17))
|
||||
(pad "17" thru_hole circle (at 7.62 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 947dc184-69fd-4911-a36d-8d9e90b224dc))
|
||||
(pad "18" thru_hole circle (at 7.62 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 3ac7b6b8-93c6-4eda-b7f2-400635afd0b8))
|
||||
(pad "19" thru_hole circle (at 7.62 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 4deb567b-5077-4fa7-8c64-c0bf9fe41c78))
|
||||
(pad "20" thru_hole circle (at 7.62 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 818d9761-152e-4918-bc41-63d663819b9e))
|
||||
(pad "21" thru_hole circle (at 7.62 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp c3e0a4ea-8682-4fab-95cc-f29f7c1376cf))
|
||||
(pad "22" thru_hole circle (at 7.62 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 7ea8192f-ef39-46f0-94bc-2d509a001900))
|
||||
(pad "23" thru_hole circle (at 7.62 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 46e1af9a-f933-471b-93a1-5ba4bd6f3bf4))
|
||||
)
|
||||
3
eCAD/cmdr-joystick/cmdr-joystick.step
Normal file
3
eCAD/cmdr-joystick/cmdr-joystick.step
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d39c074853a75a49029bd34e838c5e71cada5fee842ce9ebb00d1fdf0ec87f7e
|
||||
size 33546607
|
||||
BIN
eCAD/cmdr-joystick/cmdr-joystick_rev_a_board_bottom.png
Normal file
BIN
eCAD/cmdr-joystick/cmdr-joystick_rev_a_board_bottom.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 98 KiB |
BIN
eCAD/cmdr-joystick/cmdr-joystick_rev_a_board_top.png
Normal file
BIN
eCAD/cmdr-joystick/cmdr-joystick_rev_a_board_top.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 144 KiB |
3
eCAD/cmdr-joystick/cmdr-joystick_rev_a_gerber.zip
Normal file
3
eCAD/cmdr-joystick/cmdr-joystick_rev_a_gerber.zip
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9def7f9dfc48df4c9b5e585a649b88545c11fd054c1e03c76ac3225faaf14aea
|
||||
size 90476
|
||||
BIN
eCAD/cmdr-joystick/cmdr-joystick_rev_a_layout.png
Normal file
BIN
eCAD/cmdr-joystick/cmdr-joystick_rev_a_layout.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 343 KiB |
3
eCAD/cmdr-joystick/cmdr-joystick_rev_a_schematics.pdf
Normal file
3
eCAD/cmdr-joystick/cmdr-joystick_rev_a_schematics.pdf
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d21b9cdaa7e0e731425887d4427e157987977853e1794e2766d68b59a7fa6f6
|
||||
size 85824
|
||||
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d7b7ae1a4b7a18ac236f88e5e552767cb777e4604930a8a800017cae6af143db
|
||||
size 804503
|
||||
oid sha256:479422c6f42ae64ffb9374efba4107cc2be6e0b551d132e89174b4004cd9caae
|
||||
size 3970290
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f87c95f2f6637dbe49e41feeb8205ae7349cabca7208ff28ccbc833f6604b91d
|
||||
size 1219893
|
||||
oid sha256:568294f49724208573a9a561a9474fe39dd063a23f8d406b5ab2086cec7481f7
|
||||
size 1425280
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user