Compare commits
5 Commits
3621b727b9
...
755befece0
Author | SHA1 | Date |
---|---|---|
|
755befece0 | |
|
625e4d923b | |
|
47369351ab | |
|
9e4ad88d65 | |
|
eadb65f9bf |
|
@ -3,29 +3,29 @@
|
|||
# Format documentation: https://kicad.org/help/file-formats/
|
||||
|
||||
# Temporary files
|
||||
*.000
|
||||
*.bak
|
||||
*.bck
|
||||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*~
|
||||
_autosave-*
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
**/*.000
|
||||
**/*.bak
|
||||
**/*.bck
|
||||
**/*.kicad_pcb-bak
|
||||
**/*.kicad_sch-bak
|
||||
**/*-backups
|
||||
**/*.kicad_prl
|
||||
**/*.sch-bak
|
||||
**/*~
|
||||
_autosave-**/*
|
||||
**/*.tmp
|
||||
**/*-save.pro
|
||||
**/*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
**/*.net
|
||||
|
||||
# Autorouter files (exported from Pcbnew)
|
||||
*.dsn
|
||||
*.ses
|
||||
**/*.dsn
|
||||
**/*.ses
|
||||
|
||||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
**/*.xml
|
||||
**/*.csv
|
||||
|
||||
|
|
|
@ -0,0 +1,90 @@
|
|||
(version 1)
|
||||
|
||||
(rule "Minimum Trace Width (outer layer)"
|
||||
(constraint track_width (min 5mil))
|
||||
(layer outer)
|
||||
(condition "A.Type == 'track'"))
|
||||
|
||||
(rule "Minimum Trace Spacing (outer layer)"
|
||||
(constraint clearance (min 5mil))
|
||||
(layer outer)
|
||||
(condition "A.Type == 'track' && B.Type == A.Type"))
|
||||
|
||||
(rule "Minimum Trace Width and Spacing (inner layer)"
|
||||
(constraint track_width (min 3.5mil))
|
||||
(layer inner)
|
||||
(condition "A.Type == 'track'"))
|
||||
|
||||
(rule "Minimum Trace Spacing (inner layer)"
|
||||
(constraint clearance (min 3.5mil))
|
||||
(layer inner)
|
||||
(condition "A.Type == 'track' && B.Type == A.Type"))
|
||||
|
||||
(rule "Minimum Text"
|
||||
(constraint text_thickness (min 0.15mm))
|
||||
(constraint text_height (min 1mm))
|
||||
(layer "?.Silkscreen"))
|
||||
|
||||
(rule "Pad to Silkscreen"
|
||||
(constraint silk_clearance (min 0.15mm))
|
||||
(layer outer)
|
||||
(condition "A.Type == 'pad' && (B.Type == 'text' || B.Type == 'graphic')"))
|
||||
|
||||
(rule "Trace to Outline"
|
||||
(constraint edge_clearance (min 0.3mm))
|
||||
(condition "A.Type == 'track'"))
|
||||
|
||||
(rule "drill hole size (mechanical)"
|
||||
(constraint hole_size (min 0.2mm) (max 6.3mm)))
|
||||
|
||||
(rule "Minimum Via Hole Size"
|
||||
(constraint hole_size (min 0.2mm))
|
||||
(condition "A.Type == 'via'"))
|
||||
|
||||
(rule "Minimum Via Diameter"
|
||||
(constraint via_diameter (min 0.45mm))
|
||||
(condition "A.Type == 'via'"))
|
||||
|
||||
(rule "PTH Hole Size"
|
||||
(constraint hole_size (min 0.2mm) (max 6.35mm))
|
||||
(condition "A.isPlated()"))
|
||||
|
||||
(rule "Minimum Non-plated Hole Size"
|
||||
(constraint hole_size (min 0.5mm))
|
||||
(condition "A.Type == 'pad' && !A.isPlated()"))
|
||||
|
||||
(rule "Minimum Castellated Hole Size"
|
||||
(constraint hole_size (min 0.6mm))
|
||||
(condition "A.Type == 'pad' && A.Fabrication_Property == 'Castellated pad'"))
|
||||
|
||||
(rule "hole to hole clearance (different nets)"
|
||||
(constraint hole_to_hole (min 0.5mm))
|
||||
(condition "A.Net != B.Net"))
|
||||
|
||||
(rule "via to track clearance"
|
||||
(constraint hole_clearance (min 0.254mm))
|
||||
(condition "A.Type == 'via' && B.Type == 'track'"))
|
||||
|
||||
(rule "via to via clearance (same nets)"
|
||||
(constraint hole_to_hole (min 0.254mm))
|
||||
(condition "A.Type == 'via' && B.Type == A.Type && A.Net == B.Net"))
|
||||
|
||||
(rule "pad to pad clearance (with hole, different nets)"
|
||||
(constraint hole_to_hole (min 0.5mm))
|
||||
(condition "A.Type == 'pad' && B.Type == A.Type && A.Net != B.Net"))
|
||||
|
||||
(rule "pad to pad clearance (without hole, different nets)"
|
||||
(constraint clearance (min 0.127mm))
|
||||
(condition "A.Type == 'pad' && B.Type == A.Type && A.Net != B.Net"))
|
||||
|
||||
(rule "NPTH to Track clearance)"
|
||||
(constraint hole_clearance (min 0.254mm))
|
||||
(condition "A.Pad_Type == 'NPTH, mechanical' && B.Type == 'track'"))
|
||||
|
||||
(rule "PTH to Track clearance)"
|
||||
(constraint hole_clearance (min 0.33mm))
|
||||
(condition "A.isPlated() && B.Type == 'track'"))
|
||||
|
||||
(rule "Pad to Track clearance)"
|
||||
(constraint clearance (min 0.2mm))
|
||||
(condition "A.isPlated() && B.Type == 'track'"))
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,477 @@
|
|||
{
|
||||
"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.5
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [],
|
||||
"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": [],
|
||||
"via_dimensions": [],
|
||||
"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": "ignore",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "explorer-light.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": 1.0,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 3
|
||||
},
|
||||
"net_colors": null,
|
||||
"netclass_assignments": null,
|
||||
"netclass_patterns": []
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "explorer-light.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": [
|
||||
[
|
||||
"3dfe3b4b-cba1-47e7-b2eb-11895f041152",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
|
@ -0,0 +1,842 @@
|
|||
(kicad_sch (version 20230121) (generator eeschema)
|
||||
|
||||
(uuid 3dfe3b4b-cba1-47e7-b2eb-11895f041152)
|
||||
|
||||
(paper "A4")
|
||||
|
||||
(lib_symbols
|
||||
(symbol "Connector:Conn_01x02_Socket" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (at 0 2.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "Conn_01x02_Socket" (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_locked" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "ki_keywords" "connector" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Generic connector, single row, 01x02, script generated" (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_01x02_Socket_1_1"
|
||||
(arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 -2.54)
|
||||
(xy -0.508 -2.54)
|
||||
)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 0)
|
||||
(xy -0.508 0)
|
||||
)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(pin passive line (at -5.08 0 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))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "Connector:Conn_01x03_Socket" (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_Socket" (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_locked" "" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(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" (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_Socket_1_1"
|
||||
(arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 -2.54)
|
||||
(xy -0.508 -2.54)
|
||||
)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 0)
|
||||
(xy -0.508 0)
|
||||
)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.27 2.54)
|
||||
(xy -0.508 2.54)
|
||||
)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(arc (start 0 3.048) (mid -0.5058 2.54) (end 0 2.032)
|
||||
(stroke (width 0.1524) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(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 "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "D" (at 0 2.54 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "LED" (at 0 -2.54 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" "LED diode" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "Light emitting diode" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "LED_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))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -3.048 -0.762)
|
||||
(xy -4.572 -2.286)
|
||||
(xy -3.81 -2.286)
|
||||
(xy -4.572 -2.286)
|
||||
(xy -4.572 -1.524)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -1.778 -0.762)
|
||||
(xy -3.302 -2.286)
|
||||
(xy -2.54 -2.286)
|
||||
(xy -3.302 -2.286)
|
||||
(xy -3.302 -1.524)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
)
|
||||
(symbol "LED_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 "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 "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 "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))))
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol "power:VCC" (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" "VCC" (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 \"VCC\"" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "VCC_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 "VCC_1_1"
|
||||
(pin power_in line (at 0 0 90) (length 0) hide
|
||||
(name "VCC" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(junction (at 134.62 55.88) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 1721bfe6-86c7-46d9-bc00-331ed85fa771)
|
||||
)
|
||||
(junction (at 121.92 38.1) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 42887b97-2fe9-4601-9356-f17b2ed60256)
|
||||
)
|
||||
(junction (at 134.62 59.69) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 44021a0c-8d82-4cdc-9509-33345c4f2fc3)
|
||||
)
|
||||
(junction (at 134.62 38.1) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 523e954a-28af-4ae5-a133-ad753cc893cb)
|
||||
)
|
||||
(junction (at 134.62 41.91) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 98a0aa03-7edb-41a9-a141-d590f2575c0e)
|
||||
)
|
||||
(junction (at 121.92 49.53) (diameter 0) (color 0 0 0 0)
|
||||
(uuid a368fcca-4884-4594-b97c-9d97986a64cd)
|
||||
)
|
||||
(junction (at 114.3 49.53) (diameter 0) (color 0 0 0 0)
|
||||
(uuid b7332c20-8fbb-4c53-afb6-67af91902dd7)
|
||||
)
|
||||
(junction (at 121.92 59.69) (diameter 0) (color 0 0 0 0)
|
||||
(uuid e1cd14a8-ebe7-48db-95d9-3763dd93296f)
|
||||
)
|
||||
|
||||
(wire (pts (xy 134.62 41.91) (xy 139.7 41.91))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 179d7c2d-eb07-4a26-bee9-6f5fc362919e)
|
||||
)
|
||||
(wire (pts (xy 139.7 53.34) (xy 134.62 53.34))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 17bcdb7c-76c4-4372-9d5a-75e1283c1256)
|
||||
)
|
||||
(wire (pts (xy 114.3 48.26) (xy 114.3 49.53))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 1ec35e88-9616-4a48-a209-b49a376c86d2)
|
||||
)
|
||||
(wire (pts (xy 121.92 59.69) (xy 121.92 58.42))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 23a6cda7-3d00-47c8-b48a-d44803b8db4e)
|
||||
)
|
||||
(wire (pts (xy 134.62 38.1) (xy 134.62 41.91))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 29e66688-aa0d-406f-8617-960d4e589b23)
|
||||
)
|
||||
(wire (pts (xy 114.3 58.42) (xy 114.3 59.69))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 2ee2a3c4-bb5c-4f74-9a37-a31ab8264a16)
|
||||
)
|
||||
(wire (pts (xy 121.92 49.53) (xy 121.92 48.26))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 336ed5e5-e3d9-4606-ba08-2c7d02cbdacc)
|
||||
)
|
||||
(wire (pts (xy 121.92 38.1) (xy 134.62 38.1))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 367bf832-bba6-42e3-9c73-3bd20e7f85b4)
|
||||
)
|
||||
(wire (pts (xy 121.92 38.1) (xy 121.92 40.64))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 442a200b-b76b-47bb-884d-bb481c1e73bf)
|
||||
)
|
||||
(wire (pts (xy 139.7 44.45) (xy 139.7 45.72))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 5c0c16db-60f5-45e1-986c-fbfd3ce928eb)
|
||||
)
|
||||
(wire (pts (xy 134.62 59.69) (xy 134.62 64.77))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 65dcb6ef-7a3c-44ff-b6ff-5f713aa0d8e3)
|
||||
)
|
||||
(wire (pts (xy 114.3 38.1) (xy 121.92 38.1))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 686b98fc-33aa-439f-aab6-16b30f6dbfe8)
|
||||
)
|
||||
(wire (pts (xy 134.62 50.8) (xy 139.7 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 696df56c-18cb-4042-a309-bcb38fcece57)
|
||||
)
|
||||
(wire (pts (xy 114.3 38.1) (xy 114.3 40.64))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 93aac665-8ad1-45b9-a2fb-4d96112c5a52)
|
||||
)
|
||||
(wire (pts (xy 134.62 50.8) (xy 134.62 41.91))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 99ea62ef-1d2d-4ca6-8df2-a964003b069c)
|
||||
)
|
||||
(wire (pts (xy 134.62 55.88) (xy 134.62 59.69))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 9fb42ebc-52a1-4790-9276-5819e06b364c)
|
||||
)
|
||||
(wire (pts (xy 121.92 49.53) (xy 121.92 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid a7bfbc57-5168-4df7-bc67-b53ff30c805c)
|
||||
)
|
||||
(wire (pts (xy 134.62 35.56) (xy 134.62 38.1))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b4523d45-006f-4d23-b410-09e7cb0bc628)
|
||||
)
|
||||
(wire (pts (xy 121.92 59.69) (xy 134.62 59.69))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid b985df03-6b32-476f-b7f5-1b7ae53041e8)
|
||||
)
|
||||
(wire (pts (xy 114.3 49.53) (xy 121.92 49.53))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid bc6c3a13-62e3-44b8-be15-c78df5465b9b)
|
||||
)
|
||||
(wire (pts (xy 134.62 55.88) (xy 139.7 55.88))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c37ec9f9-5d3b-4ac1-9417-e3efe11fc4ae)
|
||||
)
|
||||
(wire (pts (xy 134.62 53.34) (xy 134.62 55.88))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid c5de3677-ba02-4a78-8f70-a8c47f96cd86)
|
||||
)
|
||||
(wire (pts (xy 114.3 49.53) (xy 114.3 50.8))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid dbec8d53-bc43-425d-a7ef-1d167788d792)
|
||||
)
|
||||
(wire (pts (xy 114.3 59.69) (xy 121.92 59.69))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid dc65ca25-4e62-4ab3-a46d-9098a4ad6809)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:VCC") (at 134.62 35.56 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 34e5c1e0-75d3-4dbf-91f0-2e9c03883d8c)
|
||||
(property "Reference" "#PWR01" (at 134.62 39.37 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "VCC" (at 134.62 30.48 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 134.62 35.56 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 134.62 35.56 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 3cd0f505-181e-4230-a8c6-e7807b0a89bd))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "#PWR01") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:Conn_01x02_Socket") (at 144.78 41.91 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 3ffb5eb6-819d-4b58-8c5d-3cb7e36180a6)
|
||||
(property "Reference" "J1" (at 146.05 41.91 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x02_Socket" (at 146.05 44.45 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Connector_TE-Connectivity:TE_826576-2_1x02_P3.96mm_Vertical" (at 144.78 41.91 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 144.78 41.91 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "2" (uuid 7908f8ae-7aed-4ed4-8227-59bc3fd45d26))
|
||||
(pin "1" (uuid 7ad63481-7a9d-4702-a53a-8e838976d8f3))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "J1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 134.62 64.77 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 4090d19c-74bd-432f-ad9a-a6cdd352eebd)
|
||||
(property "Reference" "#PWR02" (at 134.62 71.12 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 134.62 69.85 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 134.62 64.77 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 134.62 64.77 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 38ceff89-7634-49e1-916c-59daf7f02b92))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "#PWR02") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 266.7 16.51 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 581a75eb-6f12-4003-8038-05a8a2636885)
|
||||
(property "Reference" "H2" (at 269.24 15.24 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 269.24 17.78 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_3mm" (at 266.7 16.51 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 266.7 16.51 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "H2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "power:GND") (at 139.7 45.72 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 6da7a16e-bcef-4f66-97b1-7a135c714ad3)
|
||||
(property "Reference" "#PWR03" (at 139.7 52.07 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Value" "GND" (at 143.51 46.99 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 139.7 45.72 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "" (at 139.7 45.72 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid cfde4d02-ec27-4fa2-848c-085f0d6ff274))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "#PWR03") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:LED") (at 114.3 44.45 90) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 7f3bbad9-6d84-471f-a70b-a530eadcc00a)
|
||||
(property "Reference" "D2" (at 118.11 44.45 90)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
)
|
||||
(property "Value" "LED" (at 118.11 46.99 90)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
)
|
||||
(property "Footprint" "LED_THT:LED_D5.0mm" (at 114.3 44.45 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 114.3 44.45 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "2" (uuid cde369d3-357a-426d-b91c-21454102bd8f))
|
||||
(pin "1" (uuid 7b604a3c-b4a6-4133-a633-6b7ce78a4b47))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "D2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 248.92 16.51 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid 972618d6-658b-40b7-9a98-082529fe45f8)
|
||||
(property "Reference" "H1" (at 251.46 15.24 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 251.46 17.78 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_3mm" (at 248.92 16.51 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 248.92 16.51 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "H1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 121.92 54.61 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid b485b069-bf5d-4ace-b677-4522c009efda)
|
||||
(property "Reference" "R1" (at 124.46 53.34 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "R" (at 124.46 55.88 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal" (at 120.142 54.61 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 121.92 54.61 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid a067b556-fd23-4095-9a3b-dbc85eff4daa))
|
||||
(pin "2" (uuid 6c20a920-c4eb-4a66-99a8-f9c0855fc9ed))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "R1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:Conn_01x03_Socket") (at 144.78 53.34 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid b49d038e-9d6a-4dc0-980e-c09728dc3985)
|
||||
(property "Reference" "J2" (at 146.05 52.07 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "Conn_01x03_Socket" (at 146.05 54.61 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Connector_BarrelJack:BarrelJack_Horizontal" (at 144.78 53.34 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 144.78 53.34 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "3" (uuid 82cc175c-26b6-4f21-8515-62e84d35a561))
|
||||
(pin "2" (uuid 437156bf-ef82-483f-b5c4-b8ff2b843427))
|
||||
(pin "1" (uuid c78471da-660b-4dcb-8678-7181db73d7ef))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "J2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:R") (at 114.3 54.61 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid b8ad2463-90d1-4d5b-b851-64b9261aacb2)
|
||||
(property "Reference" "R2" (at 116.84 53.34 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "R" (at 116.84 55.88 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 112.522 54.61 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 114.3 54.61 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 699f6491-835e-4c82-926c-556ed72ed565))
|
||||
(pin "2" (uuid 972999ae-3893-48e7-9ca7-861a91f49c72))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "R2") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 248.92 21.59 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid edab5b00-e3ee-48eb-aa21-07cbdeb42747)
|
||||
(property "Reference" "H3" (at 251.46 20.32 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 251.46 22.86 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_3mm" (at 248.92 21.59 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 248.92 21.59 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "H3") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Mechanical:MountingHole") (at 266.7 21.59 0) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid f092861c-a33a-43a0-82ed-bddaa39c1c46)
|
||||
(property "Reference" "H4" (at 269.24 20.32 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Value" "MountingHole" (at 269.24 22.86 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "MountingHole:MountingHole_3mm" (at 266.7 21.59 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 266.7 21.59 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "H4") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Device:LED") (at 121.92 44.45 90) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
|
||||
(uuid f93ac324-a749-4e83-ae0e-43d7b3f297f8)
|
||||
(property "Reference" "D1" (at 125.73 44.7675 90)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
)
|
||||
(property "Value" "LED" (at 125.73 47.3075 90)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
)
|
||||
(property "Footprint" "LED_SMD:LED_2010_5025Metric_Pad1.52x2.65mm_HandSolder" (at 121.92 44.45 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 121.92 44.45 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "1" (uuid 253a6105-8969-4244-8af0-334ed1caf557))
|
||||
(pin "2" (uuid a512ef4e-dc9a-4cdd-bef5-d1c18a7f1cfd))
|
||||
(instances
|
||||
(project "explorer-light"
|
||||
(path "/3dfe3b4b-cba1-47e7-b2eb-11895f041152"
|
||||
(reference "D1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(sheet_instances
|
||||
(path "/" (page "1"))
|
||||
)
|
||||
)
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,46 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Profile,NP*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
%TA.AperFunction,Profile*%
|
||||
%ADD10C,0.100000*%
|
||||
%TD*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
X93014800Y-50552800D02*
|
||||
X133014800Y-50552800D01*
|
||||
X88950800Y-79616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X93014800Y-83680800I4064000J0D01*
|
||||
G01*
|
||||
X137078800Y-54616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X133014800Y-50552800I-4064000J0D01*
|
||||
G01*
|
||||
X133014800Y-83680800D02*
|
||||
G75*
|
||||
G03*
|
||||
X137078800Y-79616800I0J4064000D01*
|
||||
G01*
|
||||
X93014800Y-50552800D02*
|
||||
G75*
|
||||
G03*
|
||||
X88950800Y-54616800I0J-4064000D01*
|
||||
G01*
|
||||
X88950800Y-54616800D02*
|
||||
X88950800Y-79616800D01*
|
||||
X93014800Y-83680800D02*
|
||||
X133014800Y-83680800D01*
|
||||
X137078800Y-79616800D02*
|
||||
X137078800Y-54616800D01*
|
||||
M02*
|
|
@ -0,0 +1,84 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Soldermask,Bot*%
|
||||
%TF.FilePolarity,Negative*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10R,3.500000X3.500000*%
|
||||
%ADD11RoundRect,0.750000X1.000000X-0.750000X1.000000X0.750000X-1.000000X0.750000X-1.000000X-0.750000X0*%
|
||||
%ADD12RoundRect,0.875000X0.875000X-0.875000X0.875000X0.875000X-0.875000X0.875000X-0.875000X-0.875000X0*%
|
||||
%ADD13C,3.000000*%
|
||||
%ADD14RoundRect,0.250001X-0.949999X-0.949999X0.949999X-0.949999X0.949999X0.949999X-0.949999X0.949999X0*%
|
||||
%ADD15C,2.400000*%
|
||||
%ADD16R,1.800000X1.800000*%
|
||||
%ADD17C,1.800000*%
|
||||
%ADD18C,1.600000*%
|
||||
%ADD19O,1.600000X1.600000*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,J2*%
|
||||
X103014800Y-75116800D03*
|
||||
D11*
|
||||
X103014800Y-81116800D03*
|
||||
D12*
|
||||
X107714800Y-78116800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H1*%
|
||||
X93014800Y-54616800D03*
|
||||
%TD*%
|
||||
D14*
|
||||
%TO.C,J1*%
|
||||
X123014800Y-78116800D03*
|
||||
D15*
|
||||
X126974800Y-78116800D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,D2*%
|
||||
X113014800Y-65866800D03*
|
||||
D17*
|
||||
X113014800Y-68406800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H3*%
|
||||
X93014800Y-79616800D03*
|
||||
%TD*%
|
||||
%TO.C,H4*%
|
||||
X133014800Y-79616800D03*
|
||||
%TD*%
|
||||
D18*
|
||||
%TO.C,R1*%
|
||||
X100314800Y-59366800D03*
|
||||
D19*
|
||||
X125714800Y-59366800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H2*%
|
||||
X133014800Y-54616800D03*
|
||||
%TD*%
|
||||
M02*
|
|
@ -0,0 +1,96 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Soldermask,Top*%
|
||||
%TF.FilePolarity,Negative*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10R,3.500000X3.500000*%
|
||||
%ADD11RoundRect,0.750000X1.000000X-0.750000X1.000000X0.750000X-1.000000X0.750000X-1.000000X-0.750000X0*%
|
||||
%ADD12RoundRect,0.875000X0.875000X-0.875000X0.875000X0.875000X-0.875000X0.875000X-0.875000X-0.875000X0*%
|
||||
%ADD13C,3.000000*%
|
||||
%ADD14RoundRect,0.250001X-0.949999X-0.949999X0.949999X-0.949999X0.949999X0.949999X-0.949999X0.949999X0*%
|
||||
%ADD15C,2.400000*%
|
||||
%ADD16R,1.800000X1.800000*%
|
||||
%ADD17C,1.800000*%
|
||||
%ADD18RoundRect,0.249999X-0.512501X-1.075001X0.512501X-1.075001X0.512501X1.075001X-0.512501X1.075001X0*%
|
||||
%ADD19C,1.600000*%
|
||||
%ADD20O,1.600000X1.600000*%
|
||||
%ADD21RoundRect,0.250000X-0.450000X0.350000X-0.450000X-0.350000X0.450000X-0.350000X0.450000X0.350000X0*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,J2*%
|
||||
X103014800Y-75116800D03*
|
||||
D11*
|
||||
X103014800Y-81116800D03*
|
||||
D12*
|
||||
X107714800Y-78116800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H1*%
|
||||
X93014800Y-54616800D03*
|
||||
%TD*%
|
||||
D14*
|
||||
%TO.C,J1*%
|
||||
X123014800Y-78116800D03*
|
||||
D15*
|
||||
X126974800Y-78116800D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,D2*%
|
||||
X113014800Y-65866800D03*
|
||||
D17*
|
||||
X113014800Y-68406800D03*
|
||||
%TD*%
|
||||
D18*
|
||||
%TO.C,D1*%
|
||||
X110677300Y-67116800D03*
|
||||
X115352300Y-67116800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H3*%
|
||||
X93014800Y-79616800D03*
|
||||
%TD*%
|
||||
%TO.C,H4*%
|
||||
X133014800Y-79616800D03*
|
||||
%TD*%
|
||||
D19*
|
||||
%TO.C,R1*%
|
||||
X100314800Y-59366800D03*
|
||||
D20*
|
||||
X125714800Y-59366800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H2*%
|
||||
X133014800Y-54616800D03*
|
||||
%TD*%
|
||||
D21*
|
||||
%TO.C,R2*%
|
||||
X106014800Y-66116800D03*
|
||||
X106014800Y-68116800D03*
|
||||
%TD*%
|
||||
M02*
|
Binary file not shown.
|
@ -0,0 +1,19 @@
|
|||
M48
|
||||
; DRILL file {KiCad 7.0.10} date Sat 02 Mar 2024 05:11:43 PM CET
|
||||
; FORMAT={-:-/ absolute / inch / decimal}
|
||||
; #@! TF.CreationDate,2024-03-02T17:11:43+01:00
|
||||
; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.10
|
||||
; #@! TF.FileFunction,NonPlated,1,2,NPTH
|
||||
FMAT,2
|
||||
INCH
|
||||
; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill
|
||||
T1C0.1181
|
||||
%
|
||||
G90
|
||||
G05
|
||||
T1
|
||||
X3.662Y-2.1503
|
||||
X3.662Y-3.1345
|
||||
X5.2368Y-2.1503
|
||||
X5.2368Y-3.1345
|
||||
M30
|
Binary file not shown.
|
@ -0,0 +1,49 @@
|
|||
M48
|
||||
; DRILL file {KiCad 7.0.10} date Sat 02 Mar 2024 05:11:43 PM CET
|
||||
; FORMAT={-:-/ absolute / inch / decimal}
|
||||
; #@! TF.CreationDate,2024-03-02T17:11:43+01:00
|
||||
; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.10
|
||||
; #@! TF.FileFunction,Plated,1,2,PTH
|
||||
FMAT,2
|
||||
INCH
|
||||
; #@! TA.AperFunction,Plated,PTH,ViaDrill
|
||||
T1C0.0157
|
||||
; #@! TA.AperFunction,Plated,PTH,ComponentDrill
|
||||
T2C0.0315
|
||||
; #@! TA.AperFunction,Plated,PTH,ComponentDrill
|
||||
T3C0.0354
|
||||
; #@! TA.AperFunction,Plated,PTH,ComponentDrill
|
||||
T4C0.0394
|
||||
; #@! TA.AperFunction,Plated,PTH,ComponentDrill
|
||||
T5C0.0551
|
||||
%
|
||||
G90
|
||||
G05
|
||||
T1
|
||||
X4.3549Y-2.481
|
||||
T2
|
||||
X3.9494Y-2.3373
|
||||
X4.9494Y-2.3373
|
||||
T3
|
||||
X4.4494Y-2.5932
|
||||
X4.4494Y-2.6932
|
||||
T5
|
||||
X4.8431Y-3.0755
|
||||
X4.999Y-3.0755
|
||||
T4
|
||||
G00X4.0163Y-2.9574
|
||||
M15
|
||||
G01X4.0951Y-2.9574
|
||||
M16
|
||||
G05
|
||||
G00X4.0163Y-3.1936
|
||||
M15
|
||||
G01X4.0951Y-3.1936
|
||||
M16
|
||||
G05
|
||||
G00X4.2407Y-3.1148
|
||||
M15
|
||||
G01X4.2407Y-3.0361
|
||||
M16
|
||||
G05
|
||||
M30
|
|
@ -0,0 +1,15 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Paste,Bot*%
|
||||
%TF.FilePolarity,Positive*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 APERTURE END LIST*
|
||||
M02*
|
|
@ -0,0 +1,45 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Paste,Top*%
|
||||
%TF.FilePolarity,Positive*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10RoundRect,0.249999X-0.512501X-1.075001X0.512501X-1.075001X0.512501X1.075001X-0.512501X1.075001X0*%
|
||||
%ADD11RoundRect,0.250000X-0.450000X0.350000X-0.450000X-0.350000X0.450000X-0.350000X0.450000X0.350000X0*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,D1*%
|
||||
X110677300Y-67116800D03*
|
||||
X115352300Y-67116800D03*
|
||||
%TD*%
|
||||
D11*
|
||||
%TO.C,R2*%
|
||||
X106014800Y-66116800D03*
|
||||
X106014800Y-68116800D03*
|
||||
%TD*%
|
||||
M02*
|
|
@ -0,0 +1,86 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Legend,Bot*%
|
||||
%TF.FilePolarity,Positive*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10R,3.500000X3.500000*%
|
||||
%ADD11RoundRect,0.750000X1.000000X-0.750000X1.000000X0.750000X-1.000000X0.750000X-1.000000X-0.750000X0*%
|
||||
%ADD12RoundRect,0.875000X0.875000X-0.875000X0.875000X0.875000X-0.875000X0.875000X-0.875000X-0.875000X0*%
|
||||
%ADD13C,3.000000*%
|
||||
%ADD14RoundRect,0.250001X-0.949999X-0.949999X0.949999X-0.949999X0.949999X0.949999X-0.949999X0.949999X0*%
|
||||
%ADD15C,2.400000*%
|
||||
%ADD16R,1.800000X1.800000*%
|
||||
%ADD17C,1.800000*%
|
||||
%ADD18C,1.600000*%
|
||||
%ADD19O,1.600000X1.600000*%
|
||||
G04 APERTURE END LIST*
|
||||
%LPC*%
|
||||
D10*
|
||||
%TO.C,J2*%
|
||||
X103014800Y-75116800D03*
|
||||
D11*
|
||||
X103014800Y-81116800D03*
|
||||
D12*
|
||||
X107714800Y-78116800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H1*%
|
||||
X93014800Y-54616800D03*
|
||||
%TD*%
|
||||
D14*
|
||||
%TO.C,J1*%
|
||||
X123014800Y-78116800D03*
|
||||
D15*
|
||||
X126974800Y-78116800D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,D2*%
|
||||
X113014800Y-65866800D03*
|
||||
D17*
|
||||
X113014800Y-68406800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H3*%
|
||||
X93014800Y-79616800D03*
|
||||
%TD*%
|
||||
%TO.C,H4*%
|
||||
X133014800Y-79616800D03*
|
||||
%TD*%
|
||||
D18*
|
||||
%TO.C,R1*%
|
||||
X100314800Y-59366800D03*
|
||||
D19*
|
||||
X125714800Y-59366800D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,H2*%
|
||||
X133014800Y-54616800D03*
|
||||
%TD*%
|
||||
%LPD*%
|
||||
M02*
|
|
@ -0,0 +1,369 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Legend,Top*%
|
||||
%TF.FilePolarity,Positive*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10C,0.150000*%
|
||||
%ADD11C,0.120000*%
|
||||
%ADD12R,3.500000X3.500000*%
|
||||
%ADD13RoundRect,0.750000X1.000000X-0.750000X1.000000X0.750000X-1.000000X0.750000X-1.000000X-0.750000X0*%
|
||||
%ADD14RoundRect,0.875000X0.875000X-0.875000X0.875000X0.875000X-0.875000X0.875000X-0.875000X-0.875000X0*%
|
||||
%ADD15C,3.000000*%
|
||||
%ADD16RoundRect,0.250001X-0.949999X-0.949999X0.949999X-0.949999X0.949999X0.949999X-0.949999X0.949999X0*%
|
||||
%ADD17C,2.400000*%
|
||||
%ADD18R,1.800000X1.800000*%
|
||||
%ADD19C,1.800000*%
|
||||
%ADD20RoundRect,0.249999X-0.512501X-1.075001X0.512501X-1.075001X0.512501X1.075001X-0.512501X1.075001X0*%
|
||||
%ADD21C,1.600000*%
|
||||
%ADD22O,1.600000X1.600000*%
|
||||
%ADD23RoundRect,0.250000X-0.450000X0.350000X-0.450000X-0.350000X0.450000X-0.350000X0.450000X0.350000X0*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
X108219619Y-83900133D02*
|
||||
X108933904Y-83900133D01*
|
||||
X108933904Y-83900133D02*
|
||||
X109076761Y-83947752D01*
|
||||
X109076761Y-83947752D02*
|
||||
X109172000Y-84042990D01*
|
||||
X109172000Y-84042990D02*
|
||||
X109219619Y-84185847D01*
|
||||
X109219619Y-84185847D02*
|
||||
X109219619Y-84281085D01*
|
||||
X108314857Y-83471561D02*
|
||||
X108267238Y-83423942D01*
|
||||
X108267238Y-83423942D02*
|
||||
X108219619Y-83328704D01*
|
||||
X108219619Y-83328704D02*
|
||||
X108219619Y-83090609D01*
|
||||
X108219619Y-83090609D02*
|
||||
X108267238Y-82995371D01*
|
||||
X108267238Y-82995371D02*
|
||||
X108314857Y-82947752D01*
|
||||
X108314857Y-82947752D02*
|
||||
X108410095Y-82900133D01*
|
||||
X108410095Y-82900133D02*
|
||||
X108505333Y-82900133D01*
|
||||
X108505333Y-82900133D02*
|
||||
X108648190Y-82947752D01*
|
||||
X108648190Y-82947752D02*
|
||||
X109219619Y-83519180D01*
|
||||
X109219619Y-83519180D02*
|
||||
X109219619Y-82900133D01*
|
||||
X117429619Y-67874894D02*
|
||||
X116429619Y-67874894D01*
|
||||
X116429619Y-67874894D02*
|
||||
X116429619Y-67636799D01*
|
||||
X116429619Y-67636799D02*
|
||||
X116477238Y-67493942D01*
|
||||
X116477238Y-67493942D02*
|
||||
X116572476Y-67398704D01*
|
||||
X116572476Y-67398704D02*
|
||||
X116667714Y-67351085D01*
|
||||
X116667714Y-67351085D02*
|
||||
X116858190Y-67303466D01*
|
||||
X116858190Y-67303466D02*
|
||||
X117001047Y-67303466D01*
|
||||
X117001047Y-67303466D02*
|
||||
X117191523Y-67351085D01*
|
||||
X117191523Y-67351085D02*
|
||||
X117286761Y-67398704D01*
|
||||
X117286761Y-67398704D02*
|
||||
X117382000Y-67493942D01*
|
||||
X117382000Y-67493942D02*
|
||||
X117429619Y-67636799D01*
|
||||
X117429619Y-67636799D02*
|
||||
X117429619Y-67874894D01*
|
||||
X116524857Y-66922513D02*
|
||||
X116477238Y-66874894D01*
|
||||
X116477238Y-66874894D02*
|
||||
X116429619Y-66779656D01*
|
||||
X116429619Y-66779656D02*
|
||||
X116429619Y-66541561D01*
|
||||
X116429619Y-66541561D02*
|
||||
X116477238Y-66446323D01*
|
||||
X116477238Y-66446323D02*
|
||||
X116524857Y-66398704D01*
|
||||
X116524857Y-66398704D02*
|
||||
X116620095Y-66351085D01*
|
||||
X116620095Y-66351085D02*
|
||||
X116715333Y-66351085D01*
|
||||
X116715333Y-66351085D02*
|
||||
X116858190Y-66398704D01*
|
||||
X116858190Y-66398704D02*
|
||||
X117429619Y-66970132D01*
|
||||
X117429619Y-66970132D02*
|
||||
X117429619Y-66351085D01*
|
||||
X112276705Y-71571619D02*
|
||||
X112276705Y-70571619D01*
|
||||
X112276705Y-70571619D02*
|
||||
X112514800Y-70571619D01*
|
||||
X112514800Y-70571619D02*
|
||||
X112657657Y-70619238D01*
|
||||
X112657657Y-70619238D02*
|
||||
X112752895Y-70714476D01*
|
||||
X112752895Y-70714476D02*
|
||||
X112800514Y-70809714D01*
|
||||
X112800514Y-70809714D02*
|
||||
X112848133Y-71000190D01*
|
||||
X112848133Y-71000190D02*
|
||||
X112848133Y-71143047D01*
|
||||
X112848133Y-71143047D02*
|
||||
X112800514Y-71333523D01*
|
||||
X112800514Y-71333523D02*
|
||||
X112752895Y-71428761D01*
|
||||
X112752895Y-71428761D02*
|
||||
X112657657Y-71524000D01*
|
||||
X112657657Y-71524000D02*
|
||||
X112514800Y-71571619D01*
|
||||
X112514800Y-71571619D02*
|
||||
X112276705Y-71571619D01*
|
||||
X113800514Y-71571619D02*
|
||||
X113229086Y-71571619D01*
|
||||
X113514800Y-71571619D02*
|
||||
X113514800Y-70571619D01*
|
||||
X113514800Y-70571619D02*
|
||||
X113419562Y-70714476D01*
|
||||
X113419562Y-70714476D02*
|
||||
X113324324Y-70809714D01*
|
||||
X113324324Y-70809714D02*
|
||||
X113229086Y-70857333D01*
|
||||
X112848133Y-57101619D02*
|
||||
X112514800Y-56625428D01*
|
||||
X112276705Y-57101619D02*
|
||||
X112276705Y-56101619D01*
|
||||
X112276705Y-56101619D02*
|
||||
X112657657Y-56101619D01*
|
||||
X112657657Y-56101619D02*
|
||||
X112752895Y-56149238D01*
|
||||
X112752895Y-56149238D02*
|
||||
X112800514Y-56196857D01*
|
||||
X112800514Y-56196857D02*
|
||||
X112848133Y-56292095D01*
|
||||
X112848133Y-56292095D02*
|
||||
X112848133Y-56434952D01*
|
||||
X112848133Y-56434952D02*
|
||||
X112800514Y-56530190D01*
|
||||
X112800514Y-56530190D02*
|
||||
X112752895Y-56577809D01*
|
||||
X112752895Y-56577809D02*
|
||||
X112657657Y-56625428D01*
|
||||
X112657657Y-56625428D02*
|
||||
X112276705Y-56625428D01*
|
||||
X113800514Y-57101619D02*
|
||||
X113229086Y-57101619D01*
|
||||
X113514800Y-57101619D02*
|
||||
X113514800Y-56101619D01*
|
||||
X113514800Y-56101619D02*
|
||||
X113419562Y-56244476D01*
|
||||
X113419562Y-56244476D02*
|
||||
X113324324Y-56339714D01*
|
||||
X113324324Y-56339714D02*
|
||||
X113229086Y-56387333D01*
|
||||
X108119619Y-67283466D02*
|
||||
X107643428Y-67616799D01*
|
||||
X108119619Y-67854894D02*
|
||||
X107119619Y-67854894D01*
|
||||
X107119619Y-67854894D02*
|
||||
X107119619Y-67473942D01*
|
||||
X107119619Y-67473942D02*
|
||||
X107167238Y-67378704D01*
|
||||
X107167238Y-67378704D02*
|
||||
X107214857Y-67331085D01*
|
||||
X107214857Y-67331085D02*
|
||||
X107310095Y-67283466D01*
|
||||
X107310095Y-67283466D02*
|
||||
X107452952Y-67283466D01*
|
||||
X107452952Y-67283466D02*
|
||||
X107548190Y-67331085D01*
|
||||
X107548190Y-67331085D02*
|
||||
X107595809Y-67378704D01*
|
||||
X107595809Y-67378704D02*
|
||||
X107643428Y-67473942D01*
|
||||
X107643428Y-67473942D02*
|
||||
X107643428Y-67854894D01*
|
||||
X107214857Y-66902513D02*
|
||||
X107167238Y-66854894D01*
|
||||
X107167238Y-66854894D02*
|
||||
X107119619Y-66759656D01*
|
||||
X107119619Y-66759656D02*
|
||||
X107119619Y-66521561D01*
|
||||
X107119619Y-66521561D02*
|
||||
X107167238Y-66426323D01*
|
||||
X107167238Y-66426323D02*
|
||||
X107214857Y-66378704D01*
|
||||
X107214857Y-66378704D02*
|
||||
X107310095Y-66331085D01*
|
||||
X107310095Y-66331085D02*
|
||||
X107405333Y-66331085D01*
|
||||
X107405333Y-66331085D02*
|
||||
X107548190Y-66378704D01*
|
||||
X107548190Y-66378704D02*
|
||||
X108119619Y-66950132D01*
|
||||
X108119619Y-66950132D02*
|
||||
X108119619Y-66331085D01*
|
||||
D11*
|
||||
%TO.C,J2*%
|
||||
X98414800Y-88916800D02*
|
||||
X98414800Y-74216800D01*
|
||||
X107614800Y-88916800D02*
|
||||
X98414800Y-88916800D01*
|
||||
X107614800Y-80116800D02*
|
||||
X107614800Y-88916800D01*
|
||||
X98214800Y-75066800D02*
|
||||
X98214800Y-74016800D01*
|
||||
X98414800Y-74216800D02*
|
||||
X101014800Y-74216800D01*
|
||||
X104914800Y-74216800D02*
|
||||
X107614800Y-74216800D01*
|
||||
X107614800Y-74216800D02*
|
||||
X107614800Y-76116800D01*
|
||||
X99264800Y-74016800D02*
|
||||
X98214800Y-74016800D01*
|
||||
%TO.C,J1*%
|
||||
X121234800Y-74806800D02*
|
||||
X121234800Y-81426800D01*
|
||||
X121234800Y-81426800D02*
|
||||
X124994800Y-81426800D01*
|
||||
X122514800Y-82816800D02*
|
||||
X123014800Y-81816800D01*
|
||||
X123014800Y-81816800D02*
|
||||
X123514800Y-82816800D01*
|
||||
X123514800Y-82816800D02*
|
||||
X122514800Y-82816800D01*
|
||||
X124994800Y-74806800D02*
|
||||
X121234800Y-74806800D01*
|
||||
X124994800Y-74806800D02*
|
||||
X128754800Y-74806800D01*
|
||||
X128754800Y-74806800D02*
|
||||
X128754800Y-81426800D01*
|
||||
X128754800Y-81426800D02*
|
||||
X124994800Y-81426800D01*
|
||||
%TO.C,D2*%
|
||||
X114559800Y-64576800D02*
|
||||
X111469800Y-64576800D01*
|
||||
X113014338Y-70126799D02*
|
||||
G75*
|
||||
G03*
|
||||
X114559630Y-64576801I462J2989999D01*
|
||||
G01*
|
||||
X111469970Y-64576800D02*
|
||||
G75*
|
||||
G03*
|
||||
X113015262Y-70126800I1544830J-2560000D01*
|
||||
G01*
|
||||
X115514800Y-67136800D02*
|
||||
G75*
|
||||
G03*
|
||||
X110514800Y-67136800I-2500000J0D01*
|
||||
G01*
|
||||
X110514800Y-67136800D02*
|
||||
G75*
|
||||
G03*
|
||||
X115514800Y-67136800I2500000J0D01*
|
||||
G01*
|
||||
%TO.C,D1*%
|
||||
X109654800Y-65531800D02*
|
||||
X109654800Y-68701800D01*
|
||||
X109654800Y-68701800D02*
|
||||
X115514800Y-68701800D01*
|
||||
X115514800Y-65531800D02*
|
||||
X109654800Y-65531800D01*
|
||||
%TO.C,R1*%
|
||||
X101354800Y-59366800D02*
|
||||
X108394800Y-59366800D01*
|
||||
X108394800Y-57646800D02*
|
||||
X108394800Y-61086800D01*
|
||||
X108394800Y-61086800D02*
|
||||
X117634800Y-61086800D01*
|
||||
X117634800Y-57646800D02*
|
||||
X108394800Y-57646800D01*
|
||||
X117634800Y-61086800D02*
|
||||
X117634800Y-57646800D01*
|
||||
X124674800Y-59366800D02*
|
||||
X117634800Y-59366800D01*
|
||||
%TO.C,R2*%
|
||||
X106749800Y-66889736D02*
|
||||
X106749800Y-67343864D01*
|
||||
X105279800Y-66889736D02*
|
||||
X105279800Y-67343864D01*
|
||||
%TD*%
|
||||
%LPC*%
|
||||
D12*
|
||||
%TO.C,J2*%
|
||||
X103014800Y-75116800D03*
|
||||
D13*
|
||||
X103014800Y-81116800D03*
|
||||
D14*
|
||||
X107714800Y-78116800D03*
|
||||
%TD*%
|
||||
D15*
|
||||
%TO.C,H1*%
|
||||
X93014800Y-54616800D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,J1*%
|
||||
X123014800Y-78116800D03*
|
||||
D17*
|
||||
X126974800Y-78116800D03*
|
||||
%TD*%
|
||||
D18*
|
||||
%TO.C,D2*%
|
||||
X113014800Y-65866800D03*
|
||||
D19*
|
||||
X113014800Y-68406800D03*
|
||||
%TD*%
|
||||
D20*
|
||||
%TO.C,D1*%
|
||||
X110677300Y-67116800D03*
|
||||
X115352300Y-67116800D03*
|
||||
%TD*%
|
||||
D15*
|
||||
%TO.C,H3*%
|
||||
X93014800Y-79616800D03*
|
||||
%TD*%
|
||||
%TO.C,H4*%
|
||||
X133014800Y-79616800D03*
|
||||
%TD*%
|
||||
D21*
|
||||
%TO.C,R1*%
|
||||
X100314800Y-59366800D03*
|
||||
D22*
|
||||
X125714800Y-59366800D03*
|
||||
%TD*%
|
||||
D15*
|
||||
%TO.C,H2*%
|
||||
X133014800Y-54616800D03*
|
||||
%TD*%
|
||||
D23*
|
||||
%TO.C,R2*%
|
||||
X106014800Y-66116800D03*
|
||||
X106014800Y-68116800D03*
|
||||
%TD*%
|
||||
%LPD*%
|
||||
M02*
|
|
@ -0,0 +1,61 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:11:43+01:00*%
|
||||
%TF.ProjectId,explorer-light,6578706c-6f72-4657-922d-6c696768742e,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Other,Comment*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:11:43*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
%ADD10C,0.150000*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,H1*%
|
||||
X96014800Y-54616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X90014800Y-54616800I-3000000J0D01*
|
||||
G01*
|
||||
X90014800Y-54616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X96014800Y-54616800I3000000J0D01*
|
||||
G01*
|
||||
%TO.C,H3*%
|
||||
X96014800Y-79616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X90014800Y-79616800I-3000000J0D01*
|
||||
G01*
|
||||
X90014800Y-79616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X96014800Y-79616800I3000000J0D01*
|
||||
G01*
|
||||
%TO.C,H4*%
|
||||
X136014800Y-79616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X130014800Y-79616800I-3000000J0D01*
|
||||
G01*
|
||||
X130014800Y-79616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X136014800Y-79616800I3000000J0D01*
|
||||
G01*
|
||||
%TO.C,H2*%
|
||||
X136014800Y-54616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X130014800Y-54616800I-3000000J0D01*
|
||||
G01*
|
||||
X130014800Y-54616800D02*
|
||||
G75*
|
||||
G03*
|
||||
X136014800Y-54616800I3000000J0D01*
|
||||
G01*
|
||||
%TD*%
|
||||
M02*
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 104 KiB |
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 112 KiB |
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 176 KiB |
|
@ -0,0 +1,90 @@
|
|||
(version 1)
|
||||
|
||||
(rule "Minimum Trace Width (outer layer)"
|
||||
(constraint track_width (min 5mil))
|
||||
(layer outer)
|
||||
(condition "A.Type == 'track'"))
|
||||
|
||||
(rule "Minimum Trace Spacing (outer layer)"
|
||||
(constraint clearance (min 5mil))
|
||||
(layer outer)
|
||||
(condition "A.Type == 'track' && B.Type == A.Type"))
|
||||
|
||||
(rule "Minimum Trace Width and Spacing (inner layer)"
|
||||
(constraint track_width (min 3.5mil))
|
||||
(layer inner)
|
||||
(condition "A.Type == 'track'"))
|
||||
|
||||
(rule "Minimum Trace Spacing (inner layer)"
|
||||
(constraint clearance (min 3.5mil))
|
||||
(layer inner)
|
||||
(condition "A.Type == 'track' && B.Type == A.Type"))
|
||||
|
||||
(rule "Minimum Text"
|
||||
(constraint text_thickness (min 0.15mm))
|
||||
(constraint text_height (min 1mm))
|
||||
(layer "?.Silkscreen"))
|
||||
|
||||
(rule "Pad to Silkscreen"
|
||||
(constraint silk_clearance (min 0.15mm))
|
||||
(layer outer)
|
||||
(condition "A.Type == 'pad' && (B.Type == 'text' || B.Type == 'graphic')"))
|
||||
|
||||
(rule "Trace to Outline"
|
||||
(constraint edge_clearance (min 0.3mm))
|
||||
(condition "A.Type == 'track'"))
|
||||
|
||||
(rule "drill hole size (mechanical)"
|
||||
(constraint hole_size (min 0.2mm) (max 6.3mm)))
|
||||
|
||||
(rule "Minimum Via Hole Size"
|
||||
(constraint hole_size (min 0.2mm))
|
||||
(condition "A.Type == 'via'"))
|
||||
|
||||
(rule "Minimum Via Diameter"
|
||||
(constraint via_diameter (min 0.45mm))
|
||||
(condition "A.Type == 'via'"))
|
||||
|
||||
(rule "PTH Hole Size"
|
||||
(constraint hole_size (min 0.2mm) (max 6.35mm))
|
||||
(condition "A.isPlated()"))
|
||||
|
||||
(rule "Minimum Non-plated Hole Size"
|
||||
(constraint hole_size (min 0.5mm))
|
||||
(condition "A.Type == 'pad' && !A.isPlated()"))
|
||||
|
||||
(rule "Minimum Castellated Hole Size"
|
||||
(constraint hole_size (min 0.6mm))
|
||||
(condition "A.Type == 'pad' && A.Fabrication_Property == 'Castellated pad'"))
|
||||
|
||||
(rule "hole to hole clearance (different nets)"
|
||||
(constraint hole_to_hole (min 0.5mm))
|
||||
(condition "A.Net != B.Net"))
|
||||
|
||||
(rule "via to track clearance"
|
||||
(constraint hole_clearance (min 0.254mm))
|
||||
(condition "A.Type == 'via' && B.Type == 'track'"))
|
||||
|
||||
(rule "via to via clearance (same nets)"
|
||||
(constraint hole_to_hole (min 0.254mm))
|
||||
(condition "A.Type == 'via' && B.Type == A.Type && A.Net == B.Net"))
|
||||
|
||||
(rule "pad to pad clearance (with hole, different nets)"
|
||||
(constraint hole_to_hole (min 0.5mm))
|
||||
(condition "A.Type == 'pad' && B.Type == A.Type && A.Net != B.Net"))
|
||||
|
||||
(rule "pad to pad clearance (without hole, different nets)"
|
||||
(constraint clearance (min 0.127mm))
|
||||
(condition "A.Type == 'pad' && B.Type == A.Type && A.Net != B.Net"))
|
||||
|
||||
(rule "NPTH to Track clearance)"
|
||||
(constraint hole_clearance (min 0.254mm))
|
||||
(condition "A.Pad_Type == 'NPTH, mechanical' && B.Type == 'track'"))
|
||||
|
||||
(rule "PTH to Track clearance)"
|
||||
(constraint hole_clearance (min 0.33mm))
|
||||
(condition "A.isPlated() && B.Type == 'track'"))
|
||||
|
||||
(rule "Pad to Track clearance)"
|
||||
(constraint clearance (min 0.2mm))
|
||||
(condition "A.isPlated() && B.Type == 'track'"))
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,635 @@
|
|||
{
|
||||
"board": {
|
||||
"3dviewports": [],
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"apply_defaults_to_fp_fields": false,
|
||||
"apply_defaults_to_fp_shapes": false,
|
||||
"apply_defaults_to_fp_text": false,
|
||||
"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.5
|
||||
}
|
||||
},
|
||||
"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_symbol_mismatch": "warning",
|
||||
"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_onpadsmd": false,
|
||||
"td_onroundshapesonly": false,
|
||||
"td_ontrackend": true,
|
||||
"td_onviapad": false
|
||||
}
|
||||
],
|
||||
"teardrop_parameters": [
|
||||
{
|
||||
"td_allow_use_two_tracks": false,
|
||||
"td_curve_segcount": 5,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_round_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_allow_use_two_tracks": false,
|
||||
"td_curve_segcount": 5,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_rect_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_allow_use_two_tracks": false,
|
||||
"td_curve_segcount": 5,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 3.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_track_end",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
}
|
||||
],
|
||||
"track_widths": [
|
||||
0.0,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4,
|
||||
0.8
|
||||
],
|
||||
"tuning_pattern_settings": {
|
||||
"diff_pair_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 1.0
|
||||
},
|
||||
"diff_pair_skew_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 0.6
|
||||
},
|
||||
"single_track_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 0.6
|
||||
}
|
||||
},
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false
|
||||
},
|
||||
"ipc2581": {
|
||||
"dist": "",
|
||||
"distpn": "",
|
||||
"internal_id": "",
|
||||
"mfg": "",
|
||||
"mpn": ""
|
||||
},
|
||||
"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": "ignore",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "explorer.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.35,
|
||||
"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": "power",
|
||||
"pcb_color": "rgba(0, 0, 0, 0.000)",
|
||||
"schematic_color": "rgba(0, 0, 0, 0.000)",
|
||||
"track_width": 1.0,
|
||||
"via_diameter": 0.8,
|
||||
"via_drill": 0.4,
|
||||
"wire_width": 6
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 3
|
||||
},
|
||||
"net_colors": null,
|
||||
"netclass_assignments": null,
|
||||
"netclass_patterns": [
|
||||
{
|
||||
"netclass": "power",
|
||||
"pattern": "VCC"
|
||||
},
|
||||
{
|
||||
"netclass": "power",
|
||||
"pattern": "GND"
|
||||
},
|
||||
{
|
||||
"netclass": "power",
|
||||
"pattern": "/PWR"
|
||||
},
|
||||
{
|
||||
"netclass": "power",
|
||||
"pattern": "/AUDIO_OUT*"
|
||||
}
|
||||
]
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "",
|
||||
"plot": "",
|
||||
"pos_files": "",
|
||||
"specctra_dsn": "",
|
||||
"step": "explorer.step",
|
||||
"svg": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"bom_fmt_presets": [],
|
||||
"bom_fmt_settings": {
|
||||
"field_delimiter": ",",
|
||||
"keep_line_breaks": false,
|
||||
"keep_tabs": false,
|
||||
"name": "CSV",
|
||||
"ref_delimiter": ",",
|
||||
"ref_range_delimiter": "",
|
||||
"string_delimiter": "\""
|
||||
},
|
||||
"bom_presets": [],
|
||||
"bom_settings": {
|
||||
"exclude_dnp": false,
|
||||
"fields_ordered": [
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Reference",
|
||||
"name": "Reference",
|
||||
"show": true
|
||||
},
|
||||
{
|
||||
"group_by": true,
|
||||
"label": "Value",
|
||||
"name": "Value",
|
||||
"show": true
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Datasheet",
|
||||
"name": "Datasheet",
|
||||
"show": true
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Footprint",
|
||||
"name": "Footprint",
|
||||
"show": true
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Qty",
|
||||
"name": "${QUANTITY}",
|
||||
"show": true
|
||||
},
|
||||
{
|
||||
"group_by": true,
|
||||
"label": "DNP",
|
||||
"name": "${DNP}",
|
||||
"show": true
|
||||
}
|
||||
],
|
||||
"filter_string": "",
|
||||
"group_symbols": true,
|
||||
"name": "Grouped By Value",
|
||||
"sort_asc": true,
|
||||
"sort_field": "Reference"
|
||||
},
|
||||
"connection_grid_size": 50.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,
|
||||
"operating_point_overlay_i_precision": 3,
|
||||
"operating_point_overlay_i_range": "~A",
|
||||
"operating_point_overlay_v_precision": 3,
|
||||
"operating_point_overlay_v_range": "~V",
|
||||
"overbar_offset_ratio": 1.23,
|
||||
"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_dissipations": false,
|
||||
"spice_save_all_voltages": false,
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"61edfc4e-9e88-449c-a307-4a5853120bfd",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,50 @@
|
|||
11346263390295
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CLIFF_FC681465S_SMT_Horizontal
|
||||
Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf
|
||||
Power Jack SMT
|
||||
0
|
||||
4
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-036AH-SMT_Horizontal
|
||||
Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf
|
||||
Power Jack SMT
|
||||
0
|
||||
3
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-063AH_Horizontal
|
||||
Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf
|
||||
barrel jack cui dc power
|
||||
0
|
||||
4
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles
|
||||
Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf
|
||||
barrel jack cui dc power
|
||||
0
|
||||
4
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-102AH_Horizontal
|
||||
Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf
|
||||
Power Jack
|
||||
0
|
||||
3
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_Horizontal
|
||||
DC Barrel Jack
|
||||
Power Jack
|
||||
0
|
||||
3
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_Wuerth_6941xx301002
|
||||
Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf
|
||||
connector barrel jack
|
||||
0
|
||||
3
|
||||
3
|
|
@ -0,0 +1,50 @@
|
|||
11346263390295
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CLIFF_FC681465S_SMT_Horizontal
|
||||
Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf
|
||||
Power Jack SMT
|
||||
0
|
||||
4
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-036AH-SMT_Horizontal
|
||||
Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf
|
||||
Power Jack SMT
|
||||
0
|
||||
3
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-063AH_Horizontal
|
||||
Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf
|
||||
barrel jack cui dc power
|
||||
0
|
||||
4
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles
|
||||
Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf
|
||||
barrel jack cui dc power
|
||||
0
|
||||
4
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_CUI_PJ-102AH_Horizontal
|
||||
Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf
|
||||
Power Jack
|
||||
0
|
||||
3
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_Horizontal
|
||||
DC Barrel Jack
|
||||
Power Jack
|
||||
0
|
||||
3
|
||||
3
|
||||
Connector_BarrelJack
|
||||
BarrelJack_Wuerth_6941xx301002
|
||||
Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf
|
||||
connector barrel jack
|
||||
0
|
||||
3
|
||||
3
|
|
@ -0,0 +1,5 @@
|
|||
(fp_lib_table
|
||||
(version 7)
|
||||
(lib (name "ATTINY412-SSF")(type "KiCad")(uri "${KIPRJMOD}/kicad-libs/LIB_ATTINY412-SSF/ATTINY412-SSF/KiCad")(options "")(descr ""))
|
||||
(lib (name "LM386M-1_NOPB")(type "KiCad")(uri "${KIPRJMOD}/kicad-libs/LIB_LM386M-1_NOPB/LM386M-1_NOPB/KiCad")(options "")(descr ""))
|
||||
)
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,46 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:10:40+01:00*%
|
||||
%TF.ProjectId,explorer,6578706c-6f72-4657-922e-6b696361645f,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Profile,NP*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:10:40*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
%TA.AperFunction,Profile*%
|
||||
%ADD10C,0.100000*%
|
||||
%TD*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
X52900000Y77100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X48900000Y73100000I0J-4000000D01*
|
||||
G01*
|
||||
X92900000Y44100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X96900000Y48100000I0J4000000D01*
|
||||
G01*
|
||||
X48900000Y48100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X52900000Y44100000I4000000J0D01*
|
||||
G01*
|
||||
X52900000Y77100000D02*
|
||||
X92900000Y77100000D01*
|
||||
X92900000Y44100000D02*
|
||||
X52900000Y44100000D01*
|
||||
X48900000Y73100000D02*
|
||||
X48900000Y48100000D01*
|
||||
X96900000Y73100000D02*
|
||||
X96900000Y48100000D01*
|
||||
X96900000Y73100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X92900000Y77100000I-4000000J0D01*
|
||||
G01*
|
||||
M02*
|
|
@ -0,0 +1,84 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:10:40+01:00*%
|
||||
%TF.ProjectId,explorer,6578706c-6f72-4657-922e-6b696361645f,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Soldermask,Bot*%
|
||||
%TF.FilePolarity,Negative*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:10:40*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10C,3.200000*%
|
||||
%ADD11R,3.500000X3.500000*%
|
||||
%ADD12RoundRect,0.750000X1.000000X-0.750000X1.000000X0.750000X-1.000000X0.750000X-1.000000X-0.750000X0*%
|
||||
%ADD13RoundRect,0.875000X0.875000X-0.875000X0.875000X0.875000X-0.875000X0.875000X-0.875000X-0.875000X0*%
|
||||
%ADD14R,1.700000X1.700000*%
|
||||
%ADD15O,1.700000X1.700000*%
|
||||
%ADD16RoundRect,0.250001X-0.949999X-0.949999X0.949999X-0.949999X0.949999X0.949999X-0.949999X0.949999X0*%
|
||||
%ADD17C,2.400000*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,H3*%
|
||||
X92900000Y48100000D03*
|
||||
%TD*%
|
||||
D11*
|
||||
%TO.C,J2*%
|
||||
X62900000Y52600000D03*
|
||||
D12*
|
||||
X62900000Y46600000D03*
|
||||
D13*
|
||||
X67600000Y49600000D03*
|
||||
%TD*%
|
||||
D10*
|
||||
%TO.C,H2*%
|
||||
X92900000Y73100000D03*
|
||||
%TD*%
|
||||
D14*
|
||||
%TO.C,JSPK1*%
|
||||
X93500000Y59376000D03*
|
||||
D15*
|
||||
X93500000Y61916000D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,J1*%
|
||||
X82900000Y49600000D03*
|
||||
D17*
|
||||
X86860000Y49600000D03*
|
||||
%TD*%
|
||||
D10*
|
||||
%TO.C,H4*%
|
||||
X52900000Y48100000D03*
|
||||
%TD*%
|
||||
D14*
|
||||
%TO.C,JPROG1*%
|
||||
X59504000Y74751000D03*
|
||||
D15*
|
||||
X59504000Y72211000D03*
|
||||
X59504000Y69671000D03*
|
||||
%TD*%
|
||||
D10*
|
||||
%TO.C,H1*%
|
||||
X52900000Y73100000D03*
|
||||
%TD*%
|
||||
M02*
|
|
@ -0,0 +1,196 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:10:40+01:00*%
|
||||
%TF.ProjectId,explorer,6578706c-6f72-4657-922e-6b696361645f,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Soldermask,Top*%
|
||||
%TF.FilePolarity,Negative*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:10:40*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10C,3.200000*%
|
||||
%ADD11RoundRect,0.250000X0.450000X-0.350000X0.450000X0.350000X-0.450000X0.350000X-0.450000X-0.350000X0*%
|
||||
%ADD12RoundRect,0.250000X0.475000X-0.337500X0.475000X0.337500X-0.475000X0.337500X-0.475000X-0.337500X0*%
|
||||
%ADD13R,3.500000X3.500000*%
|
||||
%ADD14RoundRect,0.750000X1.000000X-0.750000X1.000000X0.750000X-1.000000X0.750000X-1.000000X-0.750000X0*%
|
||||
%ADD15RoundRect,0.875000X0.875000X-0.875000X0.875000X0.875000X-0.875000X0.875000X-0.875000X-0.875000X0*%
|
||||
%ADD16RoundRect,0.250000X-1.950000X-1.000000X1.950000X-1.000000X1.950000X1.000000X-1.950000X1.000000X0*%
|
||||
%ADD17R,0.650000X1.525000*%
|
||||
%ADD18R,1.300000X2.000000*%
|
||||
%ADD19R,2.000000X2.000000*%
|
||||
%ADD20RoundRect,0.250000X-0.350000X-0.450000X0.350000X-0.450000X0.350000X0.450000X-0.350000X0.450000X0*%
|
||||
%ADD21R,1.700000X1.700000*%
|
||||
%ADD22O,1.700000X1.700000*%
|
||||
%ADD23RoundRect,0.250001X-0.949999X-0.949999X0.949999X-0.949999X0.949999X0.949999X-0.949999X0.949999X0*%
|
||||
%ADD24C,2.400000*%
|
||||
%ADD25RoundRect,0.250000X0.337500X0.475000X-0.337500X0.475000X-0.337500X-0.475000X0.337500X-0.475000X0*%
|
||||
%ADD26RoundRect,0.250000X-0.450000X0.350000X-0.450000X-0.350000X0.450000X-0.350000X0.450000X0.350000X0*%
|
||||
%ADD27RoundRect,0.112500X0.187500X0.112500X-0.187500X0.112500X-0.187500X-0.112500X0.187500X-0.112500X0*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,H3*%
|
||||
X92900000Y48100000D03*
|
||||
%TD*%
|
||||
D11*
|
||||
%TO.C,R2*%
|
||||
X67300000Y58100000D03*
|
||||
X67300000Y60100000D03*
|
||||
%TD*%
|
||||
D12*
|
||||
%TO.C,C2*%
|
||||
X67300000Y62425000D03*
|
||||
X67300000Y64500000D03*
|
||||
%TD*%
|
||||
%TO.C,C10*%
|
||||
X88900000Y62600000D03*
|
||||
X88900000Y64675000D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,J2*%
|
||||
X62900000Y52600000D03*
|
||||
D14*
|
||||
X62900000Y46600000D03*
|
||||
D15*
|
||||
X67600000Y49600000D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,C6*%
|
||||
X78664000Y71576000D03*
|
||||
X86064000Y71576000D03*
|
||||
%TD*%
|
||||
D11*
|
||||
%TO.C,R1*%
|
||||
X64300000Y58100000D03*
|
||||
X64300000Y60100000D03*
|
||||
%TD*%
|
||||
D17*
|
||||
%TO.C,IC2*%
|
||||
X81724000Y58700000D03*
|
||||
X82994000Y58700000D03*
|
||||
X84264000Y58700000D03*
|
||||
X85534000Y58700000D03*
|
||||
X85534000Y64124000D03*
|
||||
X84264000Y64124000D03*
|
||||
X82994000Y64124000D03*
|
||||
X81724000Y64124000D03*
|
||||
%TD*%
|
||||
D10*
|
||||
%TO.C,H2*%
|
||||
X92900000Y73100000D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,C4*%
|
||||
X64804000Y71576000D03*
|
||||
X72204000Y71576000D03*
|
||||
%TD*%
|
||||
D17*
|
||||
%TO.C,IC1*%
|
||||
X57290000Y58700000D03*
|
||||
X58560000Y58700000D03*
|
||||
X59830000Y58700000D03*
|
||||
X61100000Y58700000D03*
|
||||
X61100000Y64124000D03*
|
||||
X59830000Y64124000D03*
|
||||
X58560000Y64124000D03*
|
||||
X57290000Y64124000D03*
|
||||
%TD*%
|
||||
D18*
|
||||
%TO.C,RV1*%
|
||||
X74079000Y63412000D03*
|
||||
D19*
|
||||
X75229000Y59412000D03*
|
||||
D18*
|
||||
X76379000Y63412000D03*
|
||||
%TD*%
|
||||
D20*
|
||||
%TO.C,R4*%
|
||||
X58488000Y66623000D03*
|
||||
X60488000Y66623000D03*
|
||||
%TD*%
|
||||
D21*
|
||||
%TO.C,JSPK1*%
|
||||
X93500000Y59376000D03*
|
||||
D22*
|
||||
X93500000Y61916000D03*
|
||||
%TD*%
|
||||
D23*
|
||||
%TO.C,J1*%
|
||||
X82900000Y49600000D03*
|
||||
D24*
|
||||
X86860000Y49600000D03*
|
||||
%TD*%
|
||||
D25*
|
||||
%TO.C,C8*%
|
||||
X53195000Y61312000D03*
|
||||
X51120000Y61312000D03*
|
||||
%TD*%
|
||||
D10*
|
||||
%TO.C,H4*%
|
||||
X52900000Y48100000D03*
|
||||
%TD*%
|
||||
D12*
|
||||
%TO.C,C5*%
|
||||
X70375000Y62425000D03*
|
||||
X70375000Y64500000D03*
|
||||
%TD*%
|
||||
%TO.C,C3*%
|
||||
X79300000Y60375000D03*
|
||||
X79300000Y62450000D03*
|
||||
%TD*%
|
||||
%TO.C,C1*%
|
||||
X64300000Y62425000D03*
|
||||
X64300000Y64500000D03*
|
||||
%TD*%
|
||||
D21*
|
||||
%TO.C,JPROG1*%
|
||||
X59504000Y74751000D03*
|
||||
D22*
|
||||
X59504000Y72211000D03*
|
||||
X59504000Y69671000D03*
|
||||
%TD*%
|
||||
D26*
|
||||
%TO.C,R3*%
|
||||
X88900000Y60100000D03*
|
||||
X88900000Y58100000D03*
|
||||
%TD*%
|
||||
D25*
|
||||
%TO.C,C7*%
|
||||
X53195000Y64112000D03*
|
||||
X51120000Y64112000D03*
|
||||
%TD*%
|
||||
D27*
|
||||
%TO.C,D1*%
|
||||
X73950000Y53100000D03*
|
||||
X71850000Y53100000D03*
|
||||
%TD*%
|
||||
D25*
|
||||
%TO.C,C9*%
|
||||
X53232500Y58712000D03*
|
||||
X51157500Y58712000D03*
|
||||
%TD*%
|
||||
D10*
|
||||
%TO.C,H1*%
|
||||
X52900000Y73100000D03*
|
||||
%TD*%
|
||||
M02*
|
Binary file not shown.
|
@ -0,0 +1,19 @@
|
|||
M48
|
||||
; DRILL file {KiCad 7.0.10} date Sat 02 Mar 2024 05:10:40 PM CET
|
||||
; FORMAT={-:-/ absolute / inch / decimal}
|
||||
; #@! TF.CreationDate,2024-03-02T17:10:40+01:00
|
||||
; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.10
|
||||
; #@! TF.FileFunction,NonPlated,1,2,NPTH
|
||||
FMAT,2
|
||||
INCH
|
||||
; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill
|
||||
T1C0.1260
|
||||
%
|
||||
G90
|
||||
G05
|
||||
T1
|
||||
X2.0827Y2.878
|
||||
X2.0827Y1.8937
|
||||
X3.6575Y2.878
|
||||
X3.6575Y1.8937
|
||||
M30
|
Binary file not shown.
|
@ -0,0 +1,63 @@
|
|||
M48
|
||||
; DRILL file {KiCad 7.0.10} date Sat 02 Mar 2024 05:10:40 PM CET
|
||||
; FORMAT={-:-/ absolute / inch / decimal}
|
||||
; #@! TF.CreationDate,2024-03-02T17:10:40+01:00
|
||||
; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.10
|
||||
; #@! TF.FileFunction,Plated,1,2,PTH
|
||||
FMAT,2
|
||||
INCH
|
||||
; #@! TA.AperFunction,Plated,PTH,ViaDrill
|
||||
T1C0.0157
|
||||
; #@! TA.AperFunction,Plated,PTH,ComponentDrill
|
||||
T2C0.0394
|
||||
; #@! TA.AperFunction,Plated,PTH,ComponentDrill
|
||||
T3C0.0551
|
||||
%
|
||||
G90
|
||||
G05
|
||||
T1
|
||||
X1.9567Y2.5236
|
||||
X1.9567Y2.4134
|
||||
X1.9567Y2.311
|
||||
X2.2756Y2.4409
|
||||
X2.2756Y2.3937
|
||||
X2.3307Y2.4409
|
||||
X2.3307Y2.3937
|
||||
X2.3858Y2.4409
|
||||
X2.3858Y2.3937
|
||||
X2.4685Y2.5394
|
||||
X2.5906Y2.5394
|
||||
X2.7126Y2.5394
|
||||
X3.2177Y2.418
|
||||
X3.2677Y2.463
|
||||
X3.2677Y2.418
|
||||
X3.2677Y2.378
|
||||
X3.3177Y2.418
|
||||
X3.3177Y2.378
|
||||
X3.3677Y2.378
|
||||
T2
|
||||
X2.3427Y2.943
|
||||
X2.3427Y2.843
|
||||
X2.3427Y2.743
|
||||
X3.6811Y2.4376
|
||||
X3.6811Y2.3376
|
||||
T3
|
||||
X3.2638Y1.9528
|
||||
X3.4197Y1.9528
|
||||
T2
|
||||
G00X2.437Y2.0709
|
||||
M15
|
||||
G01X2.5157Y2.0709
|
||||
M16
|
||||
G05
|
||||
G00X2.437Y1.8346
|
||||
M15
|
||||
G01X2.5157Y1.8346
|
||||
M16
|
||||
G05
|
||||
G00X2.6614Y1.9134
|
||||
M15
|
||||
G01X2.6614Y1.9921
|
||||
M16
|
||||
G05
|
||||
M30
|
|
@ -0,0 +1,15 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:10:40+01:00*%
|
||||
%TF.ProjectId,explorer,6578706c-6f72-4657-922e-6b696361645f,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Paste,Bot*%
|
||||
%TF.FilePolarity,Positive*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:10:40*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 APERTURE END LIST*
|
||||
M02*
|
|
@ -0,0 +1,145 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:10:40+01:00*%
|
||||
%TF.ProjectId,explorer,6578706c-6f72-4657-922e-6b696361645f,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Paste,Top*%
|
||||
%TF.FilePolarity,Positive*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:10:40*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10RoundRect,0.250000X0.450000X-0.350000X0.450000X0.350000X-0.450000X0.350000X-0.450000X-0.350000X0*%
|
||||
%ADD11RoundRect,0.250000X0.475000X-0.337500X0.475000X0.337500X-0.475000X0.337500X-0.475000X-0.337500X0*%
|
||||
%ADD12RoundRect,0.250000X-1.950000X-1.000000X1.950000X-1.000000X1.950000X1.000000X-1.950000X1.000000X0*%
|
||||
%ADD13R,0.650000X1.525000*%
|
||||
%ADD14R,1.300000X2.000000*%
|
||||
%ADD15R,2.000000X2.000000*%
|
||||
%ADD16RoundRect,0.250000X-0.350000X-0.450000X0.350000X-0.450000X0.350000X0.450000X-0.350000X0.450000X0*%
|
||||
%ADD17RoundRect,0.250000X0.337500X0.475000X-0.337500X0.475000X-0.337500X-0.475000X0.337500X-0.475000X0*%
|
||||
%ADD18RoundRect,0.250000X-0.450000X0.350000X-0.450000X-0.350000X0.450000X-0.350000X0.450000X0.350000X0*%
|
||||
%ADD19RoundRect,0.112500X0.187500X0.112500X-0.187500X0.112500X-0.187500X-0.112500X0.187500X-0.112500X0*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,R2*%
|
||||
X67300000Y58100000D03*
|
||||
X67300000Y60100000D03*
|
||||
%TD*%
|
||||
D11*
|
||||
%TO.C,C2*%
|
||||
X67300000Y62425000D03*
|
||||
X67300000Y64500000D03*
|
||||
%TD*%
|
||||
%TO.C,C10*%
|
||||
X88900000Y62600000D03*
|
||||
X88900000Y64675000D03*
|
||||
%TD*%
|
||||
D12*
|
||||
%TO.C,C6*%
|
||||
X78664000Y71576000D03*
|
||||
X86064000Y71576000D03*
|
||||
%TD*%
|
||||
D10*
|
||||
%TO.C,R1*%
|
||||
X64300000Y58100000D03*
|
||||
X64300000Y60100000D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,IC2*%
|
||||
X81724000Y58700000D03*
|
||||
X82994000Y58700000D03*
|
||||
X84264000Y58700000D03*
|
||||
X85534000Y58700000D03*
|
||||
X85534000Y64124000D03*
|
||||
X84264000Y64124000D03*
|
||||
X82994000Y64124000D03*
|
||||
X81724000Y64124000D03*
|
||||
%TD*%
|
||||
D12*
|
||||
%TO.C,C4*%
|
||||
X64804000Y71576000D03*
|
||||
X72204000Y71576000D03*
|
||||
%TD*%
|
||||
D13*
|
||||
%TO.C,IC1*%
|
||||
X57290000Y58700000D03*
|
||||
X58560000Y58700000D03*
|
||||
X59830000Y58700000D03*
|
||||
X61100000Y58700000D03*
|
||||
X61100000Y64124000D03*
|
||||
X59830000Y64124000D03*
|
||||
X58560000Y64124000D03*
|
||||
X57290000Y64124000D03*
|
||||
%TD*%
|
||||
D14*
|
||||
%TO.C,RV1*%
|
||||
X74079000Y63412000D03*
|
||||
D15*
|
||||
X75229000Y59412000D03*
|
||||
D14*
|
||||
X76379000Y63412000D03*
|
||||
%TD*%
|
||||
D16*
|
||||
%TO.C,R4*%
|
||||
X58488000Y66623000D03*
|
||||
X60488000Y66623000D03*
|
||||
%TD*%
|
||||
D17*
|
||||
%TO.C,C8*%
|
||||
X53195000Y61312000D03*
|
||||
X51120000Y61312000D03*
|
||||
%TD*%
|
||||
D11*
|
||||
%TO.C,C5*%
|
||||
X70375000Y62425000D03*
|
||||
X70375000Y64500000D03*
|
||||
%TD*%
|
||||
%TO.C,C3*%
|
||||
X79300000Y60375000D03*
|
||||
X79300000Y62450000D03*
|
||||
%TD*%
|
||||
%TO.C,C1*%
|
||||
X64300000Y62425000D03*
|
||||
X64300000Y64500000D03*
|
||||
%TD*%
|
||||
D18*
|
||||
%TO.C,R3*%
|
||||
X88900000Y60100000D03*
|
||||
X88900000Y58100000D03*
|
||||
%TD*%
|
||||
D17*
|
||||
%TO.C,C7*%
|
||||
X53195000Y64112000D03*
|
||||
X51120000Y64112000D03*
|
||||
%TD*%
|
||||
D19*
|
||||
%TO.C,D1*%
|
||||
X73950000Y53100000D03*
|
||||
X71850000Y53100000D03*
|
||||
%TD*%
|
||||
D17*
|
||||
%TO.C,C9*%
|
||||
X53232500Y58712000D03*
|
||||
X51157500Y58712000D03*
|
||||
%TD*%
|
||||
M02*
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,61 @@
|
|||
%TF.GenerationSoftware,KiCad,Pcbnew,7.0.10*%
|
||||
%TF.CreationDate,2024-03-02T17:10:40+01:00*%
|
||||
%TF.ProjectId,explorer,6578706c-6f72-4657-922e-6b696361645f,rev?*%
|
||||
%TF.SameCoordinates,Original*%
|
||||
%TF.FileFunction,Other,Comment*%
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW 7.0.10) date 2024-03-02 17:10:40*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
%ADD10C,0.150000*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
%TO.C,H3*%
|
||||
X96100000Y48100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X89700000Y48100000I-3200000J0D01*
|
||||
G01*
|
||||
X89700000Y48100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X96100000Y48100000I3200000J0D01*
|
||||
G01*
|
||||
%TO.C,H2*%
|
||||
X96100000Y73100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X89700000Y73100000I-3200000J0D01*
|
||||
G01*
|
||||
X89700000Y73100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X96100000Y73100000I3200000J0D01*
|
||||
G01*
|
||||
%TO.C,H4*%
|
||||
X56100000Y48100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X49700000Y48100000I-3200000J0D01*
|
||||
G01*
|
||||
X49700000Y48100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X56100000Y48100000I3200000J0D01*
|
||||
G01*
|
||||
%TO.C,H1*%
|
||||
X56100000Y73100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X49700000Y73100000I-3200000J0D01*
|
||||
G01*
|
||||
X49700000Y73100000D02*
|
||||
G75*
|
||||
G03*
|
||||
X56100000Y73100000I3200000J0D01*
|
||||
G01*
|
||||
%TD*%
|
||||
M02*
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,50 @@
|
|||
(module BarrelJack_CLIFF_FC681465S_SMT_Horizontal (layer F.Cu) (tedit 5E73DD84)
|
||||
(descr "Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf")
|
||||
(tags "Power Jack SMT")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at -6.5 6.5 180) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value BarrelJack_CLIFF_FC681465S_SMT_Horizontal (at -0.5 8.5 180) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -3 -3.5) (end -2 -4.45) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4 -4.45) (end -3 -3.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -8 -4.45) (end -4 -4.45) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -8.5 7.5) (end -8.5 -7.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -8.5 -7.5) (end 7.2 -7.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 7.2 7.5) (end 7.2 -7.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -8.5 7.5) (end 7.2 7.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_arc (start 0 0) (end 0 3) (angle -180) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.8 3) (end 0 3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.8 -3) (end 0 -3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.8 4.56) (end -4.8 -4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -8.11 4.56) (end -8.11 -4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -8.11 4.56) (end -4.5 4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.5 4.56) (end 1.5 4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.5 4.56) (end 6.81 4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.5 -4.56) (end 6.81 -4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.5 -4.56) (end 1.5 -4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 6.81 4.56) (end 6.81 -4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -8.11 -4.56) (end -4.5 -4.56) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -8 4.45) (end 6.7 4.45) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 6.7 4.45) (end 6.7 -4.45) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2 -4.45) (end 6.7 -4.45) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -8 4.45) (end -8 -4.45) (layer F.Fab) (width 0.1))
|
||||
(fp_text user %R (at -0.5 0.5 180) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -2.92 -7.26) (end -4.26 -7.26) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.26 -7.26) (end -4.26 -5.36) (layer F.SilkS) (width 0.12))
|
||||
(pad "" np_thru_hole oval (at -2.9 0 90) (size 2 1.5) (drill oval 2 1.5) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 1.5 0 90) (size 2 2) (drill 2) (layers *.Cu *.Mask))
|
||||
(pad 1 smd rect (at -3 -5.5 90) (size 3 2) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 1 smd rect (at 3 -5.5 90) (size 3 2) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 2 smd rect (at 3 5.5 90) (size 3 2) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 3 smd rect (at -3 5.5 90) (size 3 2) (layers F.Cu F.Paste F.Mask))
|
||||
(model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_CLIFF_FC681465S_SMT_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,49 @@
|
|||
(module BarrelJack_CUI_PJ-036AH-SMT_Horizontal (layer F.Cu) (tedit 5A1DBF38)
|
||||
(descr "Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf")
|
||||
(tags "Power Jack SMT")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at -4.5 -5.75) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value BarrelJack_CUI_PJ-036AH-SMT_Horizontal (at 0 11.25) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text user %R (at 0 0) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -8.9 -8.5) (end -8.9 10.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -8.9 10.5) (end 8.9 10.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 8.9 10.5) (end 8.9 -8.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 8.9 -8.5) (end -8.9 -8.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 4.6 6.55) (end 4.6 10.1) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.6 10.1) (end -4.6 10.1) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.6 10.1) (end -4.6 6.55) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.6 -0.15) (end -4.6 -2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.6 -2.6) (end -4.2 -2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.2 -2.6) (end -4.2 -4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.2 -4.6) (end -1.2 -4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 2.6 -4.6) (end 4.2 -4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.2 -4.6) (end 4.2 -2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.2 -2.6) (end 4.6 -2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.6 -2.6) (end 4.6 -0.15) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.19 -6.5) (end -1.19 -8.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.19 -8.24) (end 0.55 -8.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -4.5) (end -4.1 -4.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.1 -4.5) (end -4.1 -2.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.1 -2.5) (end -4.5 -2.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.5 -2.5) (end -4.5 10) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.5 10) (end 4.5 10) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.5 10) (end 4.5 -2.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.5 -2.5) (end 4.1 -2.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.1 -2.5) (end 4.1 -4.5) (layer F.Fab) (width 0.1))
|
||||
(fp_circle (center 0.7 -3.4) (end 0.75 -2.95) (layer F.Fab) (width 0.12))
|
||||
(pad 1 smd rect (at 0.7 -5.8) (size 3.3 4.4) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 2 smd rect (at -6.45 3.2) (size 3.9 6.2) (layers F.Cu F.Paste F.Mask))
|
||||
(pad 3 smd rect (at 6.45 3.2) (size 3.9 6.2) (layers F.Cu F.Paste F.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 7) (size 2 2) (drill 2) (layers *.Cu *.Mask))
|
||||
(model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_CUI_PJ-036AH-SMT_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,42 @@
|
|||
(module BarrelJack_CUI_PJ-063AH_Horizontal (layer F.Cu) (tedit 5B0886BD)
|
||||
(descr "Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf")
|
||||
(tags "barrel jack cui dc power")
|
||||
(fp_text reference REF** (at 0 -2.3) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value BarrelJack_CUI_PJ-063AH_Horizontal (at 0 13) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -5 -1) (end -1 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1 -1) (end 0 0) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 0 0) (end 1 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1 -1) (end 5 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 5 -1) (end 5 12) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 5 12) (end -5 12) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -5 12) (end -5 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -5.11 4.95) (end -5.11 -1.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -5.11 -1.11) (end -2.3 -1.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 2.3 -1.11) (end 5.11 -1.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 5.11 -1.11) (end 5.11 4.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 5.11 9.05) (end 5.11 12.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 5.11 12.11) (end -5.11 12.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -5.11 12.11) (end -5.11 9.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1 -1.3) (end 1 -1.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -6 -1.5) (end -6 12.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -6 12.5) (end 6 12.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6 12.5) (end 6 -1.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6 -1.5) (end -6 -1.5) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 4 2) (drill oval 3 1) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 6) (size 3.3 2) (drill oval 2.3 1) (layers *.Cu *.Mask))
|
||||
(pad MP thru_hole oval (at -4.5 7) (size 2 3.5) (drill oval 1 2.5) (layers *.Cu *.Mask))
|
||||
(pad MP thru_hole oval (at 4.5 7) (size 2 3.5) (drill oval 1 2.5) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 9) (size 1.6 1.6) (drill 1.6) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 5.5) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_CUI_PJ-063AH_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,42 @@
|
|||
(module BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles (layer F.Cu) (tedit 5B0886B5)
|
||||
(descr "Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf")
|
||||
(tags "barrel jack cui dc power")
|
||||
(fp_text reference REF** (at 0 -3.3) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles (at 0 13) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -5 -1) (end -1 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1 -1) (end 0 0) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 0 0) (end 1 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1 -1) (end 5 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 5 -1) (end 5 12) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 5 12) (end -5 12) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -5 12) (end -5 -1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -5.11 4.95) (end -5.11 -1.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -5.11 -1.11) (end -2.3 -1.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 2.3 -1.11) (end 5.11 -1.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 5.11 -1.11) (end 5.11 4.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 5.11 9.05) (end 5.11 12.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 5.11 12.11) (end -5.11 12.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -5.11 12.11) (end -5.11 9.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1 -2.3) (end 1 -2.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -6.75 -2.5) (end -6.75 12.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -6.75 12.5) (end 6.75 12.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6.75 12.5) (end 6.75 -2.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6.75 -2.5) (end -6.75 -2.5) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 4 4) (drill 3) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole circle (at 0 6) (size 3.3 3.3) (drill 2.3) (layers *.Cu *.Mask))
|
||||
(pad MP thru_hole circle (at -4.5 7) (size 3.5 3.5) (drill 2.5) (layers *.Cu *.Mask))
|
||||
(pad MP thru_hole circle (at 4.5 7) (size 3.5 3.5) (drill 2.5) (layers *.Cu *.Mask))
|
||||
(pad "" np_thru_hole circle (at 0 9) (size 1.6 1.6) (drill 1.6) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 5.5) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,47 @@
|
|||
(module BarrelJack_CUI_PJ-102AH_Horizontal (layer F.Cu) (tedit 5A1DBF38)
|
||||
(descr "Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf")
|
||||
(tags "Power Jack")
|
||||
(fp_text reference REF** (at 5.75 8.45 90) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value BarrelJack_CUI_PJ-102AH_Horizontal (at -5.5 6.2 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text user %R (at 0 6.5) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.8 -1.8) (end 1.8 -1.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.2) (end 5 -1.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 5 -1.2) (end 5 1.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 5 1.2) (end 6.5 1.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6.5 1.2) (end 6.5 4.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6.5 4.8) (end 5 4.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 5 4.8) (end 5 14.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 5 14.2) (end -5 14.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -5 14.2) (end -5 -1.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -5 -1.2) (end -1.8 -1.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 -1.2) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 -1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 4.6 4.8) (end 4.6 13.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.6 13.8) (end -4.6 13.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.6 13.8) (end -4.6 -0.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.6 -0.8) (end -1.8 -0.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.8 -0.8) (end 4.6 -0.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.6 -0.8) (end 4.6 1.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.84 0.7) (end -4.84 -1.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.84 -1.04) (end -3.1 -1.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.5 -0.7) (end 4.5 13.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.5 13.7) (end -4.5 13.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.5 13.7) (end -4.5 0.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.5 0.3) (end -3.5 -0.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -3.5 -0.7) (end 4.5 -0.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.5 10.2) (end 4.5 10.2) (layer F.Fab) (width 0.1))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.6) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole circle (at 0 6) (size 2.6 2.6) (drill 1.6) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole circle (at 4.7 3) (size 2.6 2.6) (drill 1.6) (layers *.Cu *.Mask))
|
||||
(model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_CUI_PJ-102AH_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,48 @@
|
|||
(module BarrelJack_Horizontal (layer F.Cu) (tedit 5A1DBF6A)
|
||||
(descr "DC Barrel Jack")
|
||||
(tags "Power Jack")
|
||||
(fp_text reference REF** (at -8.45 5.75) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value BarrelJack_Horizontal (at -6.2 -5.5) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text user %R (at -3 -2.95) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1 -4.5) (end 1 -4.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1 -4.75) (end -14 -4.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1 -4.5) (end 1 -2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1 -2) (end 2 -2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 2 -2) (end 2 2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 2 2) (end 1 2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1 2) (end 1 4.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1 4.75) (end -1 4.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1 4.75) (end -1 6.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1 6.75) (end -5 6.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -5 6.75) (end -5 4.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -5 4.75) (end -14 4.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -14 4.75) (end -14 -4.75) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -5 4.6) (end -13.8 4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -13.8 4.6) (end -13.8 -4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 0.9 1.9) (end 0.9 4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 0.9 4.6) (end -1 4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -13.8 -4.6) (end 0.9 -4.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 0.9 -4.6) (end 0.9 -2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -13.7 4.5) (end 0.8 4.5) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 0 -4.5) (end -13.7 -4.5) (layer F.Fab) (width 0.1))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 3.5 3.5) (drill oval 1 3) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole roundrect (at -6 0) (size 3 3.5) (drill oval 1 3) (layers *.Cu *.Mask)(roundrect_rratio 0.25))
|
||||
(pad 3 thru_hole roundrect (at -3 4.7) (size 3.5 3.5) (drill oval 3 1) (layers *.Cu *.Mask)(roundrect_rratio 0.25))
|
||||
(model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,42 @@
|
|||
(module BarrelJack_Wuerth_6941xx301002 (layer F.Cu) (tedit 5B191DE1)
|
||||
(descr "Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf")
|
||||
(tags "connector barrel jack")
|
||||
(fp_text reference REF** (at 0 -2.5) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value BarrelJack_Wuerth_6941xx301002 (at 0 15.5) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 5 14.1) (end 5 5.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 4.6 5.2) (end 4.6 13.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.5 0.1) (end -3.5 -0.9) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.5 -0.9) (end -3.5 -0.9) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.5 -0.9) (end 4.5 13.6) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.5 13.6) (end -4.5 13.6) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -4.5 13.6) (end -4.5 0.1) (layer F.Fab) (width 0.1))
|
||||
(fp_text user %R (at 0 7.5) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 4.6 13.7) (end -4.6 13.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.6 13.7) (end -4.6 -1) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 2.5 -1) (end 4.6 -1) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.6 -1) (end 4.6 0.8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.2 -1.3) (end -4.9 -1.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -4.9 -1.3) (end -4.9 0.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 5 -1.4) (end -5 -1.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -5 -1.4) (end -5 14.1) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -5 14.1) (end 5 14.1) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 5 0.5) (end 5 -1.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6.2 0.5) (end 6.2 5.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6.2 5.5) (end 5 5.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 6.2 0.5) (end 5 0.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -4.6 -1) (end -2.5 -1) (layer F.SilkS) (width 0.12))
|
||||
(pad 3 thru_hole oval (at 4.8 3 90) (size 4 1.8) (drill oval 3 0.8) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 5.8) (size 4 1.8) (drill oval 3 0.8) (layers *.Cu *.Mask))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 4.4 1.8) (drill oval 3.4 0.8) (layers *.Cu *.Mask))
|
||||
(model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_Wuerth_6941xx301002.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
Binary file not shown.
|
@ -0,0 +1,51 @@
|
|||
(module PinHeader_1x01_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x01 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x01_P2.54mm_Horizontal (at 4.385 2.27) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 1.27) (end 1.5 1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 1.27) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.33) (end 4.1 1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 1.33) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 1.8) (end 10.55 1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 1.8) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,34 @@
|
|||
(module PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x01 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x01_P2.54mm_Vertical (at 0 2.33) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,64 @@
|
|||
(module PinHeader_1x02_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x02 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x02_P2.54mm_Horizontal (at 4.385 4.81) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 1.27 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,35 @@
|
|||
(module PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x02 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x02_P2.54mm_Vertical (at 0 4.87) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 1.27 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,43 @@
|
|||
(module PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x02 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -3.6) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left (at 0 3.6) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 2.54) (end -1.27 2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -2.54) (end 1.27 -2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 2.54) (end -1.27 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -1.59) (end -0.32 -2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -2.54) (end 1.27 2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -1.59) (end -2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -1.59) (end -2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.95) (end -1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 0.95) (end 2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.95) (end 2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 1.59) (end 1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -2.6) (end 1.33 -2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 2.6) (end 1.33 2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -2.6) (end 1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -2.03) (end -2.85 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -2.6) (end -1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 2.03) (end 1.33 2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -0.51) (end -1.33 2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -3.05) (end -3.45 3.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 3.05) (end 3.45 3.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 3.05) (end 3.45 -3.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -3.05) (end -3.45 -3.05) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,43 @@
|
|||
(module PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x02 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -3.6) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right (at 0 3.6) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 2.54) (end -1.27 2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.54) (end 0.32 -2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 2.54) (end 1.27 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.59) (end 0.32 -2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.54) (end -1.27 2.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 0.95) (end -2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.95) (end -2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 1.59) (end -1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.59) (end 2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -1.59) (end 2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.95) (end 1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -2.6) (end 1.33 -2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 2.6) (end 1.33 2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -0.51) (end 1.33 2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -2.6) (end -1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -2.03) (end 2.85 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -2.6) (end 1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 2.03) (end -1.33 2.6) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -3.05) (end -3.45 3.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 3.05) (end 3.45 3.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 3.05) (end 3.45 -3.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -3.05) (end -3.45 -3.05) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,77 @@
|
|||
(module PinHeader_1x03_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x03 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x03_P2.54mm_Horizontal (at 4.385 7.35) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 6.35) (end 1.5 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 6.35) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.41) (end 4.1 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 6.41) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 6.85) (end 10.55 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 6.85) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 2.54 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,36 @@
|
|||
(module PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x03 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x03_P2.54mm_Vertical (at 0 7.41) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 2.54 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,48 @@
|
|||
(module PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x03 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -4.87) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left (at 0 4.87) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -3.81) (end 1.27 -3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 3.81) (end -1.27 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.86) (end -0.32 -3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.86) (end -2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.86) (end -2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.22) (end -1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 2.22) (end -2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.22) (end -2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.86) (end -1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -0.32) (end 2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.32) (end 2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.32) (end 1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -3.87) (end 1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -3.3) (end -2.85 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -3.87) (end -1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 3.3) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 0.76) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.78) (end -1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -4.35) (end -3.45 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 4.35) (end 3.45 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 4.35) (end 3.45 -4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -4.35) (end -3.45 -4.35) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,48 @@
|
|||
(module PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x03 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -4.87) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right (at 0 4.87) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -3.81) (end 0.32 -3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 3.81) (end 1.27 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -2.86) (end 0.32 -3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.32) (end -2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.32) (end -2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.32) (end -1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -2.86) (end 2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.86) (end 2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.22) (end 1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 2.22) (end 2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.22) (end 2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.86) (end 1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -1.78) (end 1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -3.87) (end -1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -3.3) (end 2.85 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -3.87) (end 1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 3.3) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0.76) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -4.35) (end -3.45 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 4.35) (end 3.45 4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 4.35) (end 3.45 -4.35) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -4.35) (end -3.45 -4.35) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,90 @@
|
|||
(module PinHeader_1x04_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x04 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x04_P2.54mm_Horizontal (at 4.385 9.89) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 8.89) (end 1.5 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 8.89) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.95) (end 4.1 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 8.95) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 9.4) (end 10.55 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 9.4) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 3.81 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,37 @@
|
|||
(module PinHeader_1x04_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x04 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x04_P2.54mm_Vertical (at 0 9.95) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 3.81 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,53 @@
|
|||
(module PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x04 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -6.14) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left (at 0 6.14) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 5.08) (end -1.27 5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -5.08) (end 1.27 -5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 5.08) (end -1.27 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -4.13) (end -0.32 -5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -5.08) (end 1.27 5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -4.13) (end -2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -4.13) (end -2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -3.49) (end -1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 0.95) (end -2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.95) (end -2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 1.59) (end -1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.59) (end 2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -1.59) (end 2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.95) (end 1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 3.49) (end 2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 3.49) (end 2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.13) (end 1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -5.14) (end 1.33 -5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 5.14) (end 1.33 5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -5.14) (end 1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -4.57) (end -2.85 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -5.14) (end -1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 4.57) (end 1.33 5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -0.51) (end 1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -3.05) (end -1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 2.03) (end -1.33 5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -5.6) (end -3.45 5.6) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 5.6) (end 3.45 5.6) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 5.6) (end 3.45 -5.6) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -5.6) (end -3.45 -5.6) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,53 @@
|
|||
(module PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x04 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -6.14) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right (at 0 6.14) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 5.08) (end -1.27 5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -5.08) (end 0.32 -5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 5.08) (end 1.27 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -4.13) (end 0.32 -5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -5.08) (end -1.27 5.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -1.59) (end -2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -1.59) (end -2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.95) (end -1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 3.49) (end -2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 3.49) (end -2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 4.13) (end -1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -4.13) (end 2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.13) (end 2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -3.49) (end 1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 0.95) (end 2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.95) (end 2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 1.59) (end 1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -5.14) (end 1.33 -5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 5.14) (end 1.33 5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -3.05) (end 1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 2.03) (end 1.33 5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -5.14) (end -1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -4.57) (end 2.85 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -5.14) (end 1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 4.57) (end -1.33 5.14) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -0.51) (end -1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -5.6) (end -3.45 5.6) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 5.6) (end 3.45 5.6) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 5.6) (end 3.45 -5.6) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -5.6) (end -3.45 -5.6) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at -1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,103 @@
|
|||
(module PinHeader_1x05_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x05 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x05_P2.54mm_Horizontal (at 4.385 12.43) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 11.43) (end 1.5 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 11.43) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 11.49) (end 4.1 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 11.49) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 11.95) (end 10.55 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 11.95) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 5.08 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,38 @@
|
|||
(module PinHeader_1x05_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x05 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x05_P2.54mm_Vertical (at 0 12.49) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 5.08 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,58 @@
|
|||
(module PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x05 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -7.41) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left (at 0 7.41) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -6.35) (end 1.27 -6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 6.35) (end -1.27 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -5.4) (end -0.32 -6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -6.35) (end 1.27 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -5.4) (end -2.54 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -5.4) (end -2.54 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -4.76) (end -1.27 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.32) (end -2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.32) (end -2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.32) (end -1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 4.76) (end -2.54 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 4.76) (end -2.54 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 5.4) (end -1.27 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -2.86) (end 2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.86) (end 2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.22) (end 1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 2.22) (end 2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.22) (end 2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.86) (end 1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -6.41) (end 1.33 -6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -6.41) (end 1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -5.84) (end -2.85 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -6.41) (end -1.33 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 5.84) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -1.78) (end 1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 3.3) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -4.32) (end -1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0.76) (end -1.33 4.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -6.85) (end -3.45 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 6.85) (end 3.45 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 6.85) (end 3.45 -6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -6.85) (end -3.45 -6.85) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at -1.655 5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,58 @@
|
|||
(module PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x05 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -7.41) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right (at 0 7.41) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -6.35) (end 0.32 -6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 6.35) (end 1.27 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -5.4) (end 0.32 -6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.86) (end -2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.86) (end -2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.22) (end -1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 2.22) (end -2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.22) (end -2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.86) (end -1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -5.4) (end 2.54 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -5.4) (end 2.54 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.76) (end 1.27 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -0.32) (end 2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.32) (end 2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.32) (end 1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 4.76) (end 2.54 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.76) (end 2.54 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 5.4) (end 1.27 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -6.41) (end 1.33 -6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -4.32) (end 1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 0.76) (end 1.33 4.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -6.41) (end -1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -5.84) (end 2.85 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -6.41) (end 1.33 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 5.84) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.78) (end -1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 3.3) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -6.85) (end -3.45 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 6.85) (end 3.45 6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 6.85) (end 3.45 -6.85) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -6.85) (end -3.45 -6.85) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at -1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at 1.655 5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,116 @@
|
|||
(module PinHeader_1x06_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x06 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x06_P2.54mm_Horizontal (at 4.385 14.97) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 13.97) (end 1.5 13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 13.97) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end 1.5 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 13.02) (end 1.5 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 12.38) (end 10.04 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 12.38) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 13.02) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 14.03) (end 4.1 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 14.03) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 11.43) (end 4.1 11.43) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 12.32) (end 10.1 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 12.32) (end 10.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 13.08) (end 4.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 12.32) (end 1.44 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 13.08) (end 1.44 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 14.5) (end 10.55 14.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 14.5) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 6.35 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,39 @@
|
|||
(module PinHeader_1x06_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x06 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x06_P2.54mm_Vertical (at 0 15.03) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 6.35 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,63 @@
|
|||
(module PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x06 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -8.68) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left (at 0 8.68) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 7.62) (end -1.27 7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -7.62) (end 1.27 -7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 7.62) (end -1.27 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -6.67) (end -0.32 -7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -7.62) (end 1.27 7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -6.67) (end -2.54 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -6.67) (end -2.54 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -6.03) (end -1.27 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -1.59) (end -2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -1.59) (end -2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.95) (end -1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 3.49) (end -2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 3.49) (end -2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 4.13) (end -1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -4.13) (end 2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.13) (end 2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -3.49) (end 1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 0.95) (end 2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.95) (end 2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 1.59) (end 1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 6.03) (end 2.54 6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 6.03) (end 2.54 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 6.67) (end 1.27 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -7.68) (end 1.33 -7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 7.68) (end 1.33 7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -7.68) (end 1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -7.11) (end -2.85 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -7.68) (end -1.33 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 7.11) (end 1.33 7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -3.05) (end 1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 2.03) (end 1.33 5.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -5.59) (end -1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -0.51) (end -1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 4.57) (end -1.33 7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -8.15) (end -3.45 8.15) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 8.15) (end 3.45 8.15) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 8.15) (end 3.45 -8.15) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -8.15) (end -3.45 -8.15) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at -1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at 1.655 6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,63 @@
|
|||
(module PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x06 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -8.68) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right (at 0 8.68) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 7.62) (end -1.27 7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -7.62) (end 0.32 -7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 7.62) (end 1.27 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -6.67) (end 0.32 -7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -7.62) (end -1.27 7.62) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -4.13) (end -2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -4.13) (end -2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -3.49) (end -1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 0.95) (end -2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.95) (end -2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 1.59) (end -1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 6.03) (end -2.54 6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 6.03) (end -2.54 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 6.67) (end -1.27 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -6.67) (end 2.54 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -6.67) (end 2.54 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -6.03) (end 1.27 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.59) (end 2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -1.59) (end 2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.95) (end 1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 3.49) (end 2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 3.49) (end 2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.13) (end 1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -7.68) (end 1.33 -7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 7.68) (end 1.33 7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -5.59) (end 1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -0.51) (end 1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 4.57) (end 1.33 7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -7.68) (end -1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -7.11) (end 2.85 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -7.68) (end 1.33 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 7.11) (end -1.33 7.68) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -3.05) (end -1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 2.03) (end -1.33 5.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -8.15) (end -3.45 8.15) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 8.15) (end 3.45 8.15) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 8.15) (end 3.45 -8.15) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -8.15) (end -3.45 -8.15) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at -1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at -1.655 6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at 1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,129 @@
|
|||
(module PinHeader_1x07_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x07, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x07 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x07_P2.54mm_Horizontal (at 4.385 17.51) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 16.51) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 16.51) (end 1.5 16.51) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 16.51) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end 1.5 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 13.02) (end 1.5 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 12.38) (end 10.04 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 12.38) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 13.02) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end 1.5 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end -0.32 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 15.56) (end 1.5 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 14.92) (end 10.04 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 14.92) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 15.56) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 16.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 16.57) (end 4.1 16.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 16.57) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 11.43) (end 4.1 11.43) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 12.32) (end 10.1 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 12.32) (end 10.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 13.08) (end 4.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 12.32) (end 1.44 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 13.08) (end 1.44 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 13.97) (end 4.1 13.97) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 14.86) (end 10.1 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 14.86) (end 10.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 15.62) (end 4.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 14.86) (end 1.44 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 15.62) (end 1.44 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 17.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 17.05) (end 10.55 17.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 17.05) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 7.62 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x07_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,40 @@
|
|||
(module PinHeader_1x07_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x07, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x07 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x07_P2.54mm_Vertical (at 0 17.57) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 16.51) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 16.51) (end -1.27 16.51) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 16.51) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 16.57) (end 1.33 16.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 16.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 16.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 17.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 17.05) (end 1.8 17.05) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 17.05) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 7.62 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x07_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,68 @@
|
|||
(module PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x07 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -9.95) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left (at 0 9.95) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -8.89) (end 1.27 -8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 8.89) (end -1.27 -7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -7.94) (end -0.32 -8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -8.89) (end 1.27 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -7.94) (end -2.54 -7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -7.94) (end -2.54 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -7.3) (end -1.27 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.86) (end -2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.86) (end -2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.22) (end -1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 2.22) (end -2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.22) (end -2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.86) (end -1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 7.3) (end -2.54 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 7.3) (end -2.54 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 7.94) (end -1.27 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -5.4) (end 2.54 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -5.4) (end 2.54 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.76) (end 1.27 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -0.32) (end 2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.32) (end 2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.32) (end 1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 4.76) (end 2.54 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.76) (end 2.54 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 5.4) (end 1.27 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -8.95) (end 1.33 -8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -8.95) (end 1.33 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -8.38) (end -2.85 -8.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -8.95) (end -1.33 -8.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 8.38) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -4.32) (end 1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 0.76) (end 1.33 4.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 5.84) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -6.86) (end -1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.78) (end -1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 3.3) (end -1.33 6.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -9.4) (end -3.45 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 9.4) (end 3.45 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 9.4) (end 3.45 -9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -9.4) (end -3.45 -9.4) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at -1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at -1.655 7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at 1.655 5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,68 @@
|
|||
(module PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x07 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -9.95) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right (at 0 9.95) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -8.89) (end 0.32 -8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 8.89) (end 1.27 -7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -7.94) (end 0.32 -8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -5.4) (end -2.54 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -5.4) (end -2.54 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -4.76) (end -1.27 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.32) (end -2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.32) (end -2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.32) (end -1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 4.76) (end -2.54 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 4.76) (end -2.54 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 5.4) (end -1.27 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -7.94) (end 2.54 -7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -7.94) (end 2.54 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -7.3) (end 1.27 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -2.86) (end 2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.86) (end 2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.22) (end 1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 2.22) (end 2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.22) (end 2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.86) (end 1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 7.3) (end 2.54 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 7.3) (end 2.54 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 7.94) (end 1.27 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -8.95) (end 1.33 -8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -6.86) (end 1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -1.78) (end 1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 3.3) (end 1.33 6.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -8.95) (end -1.33 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -8.38) (end 2.85 -8.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -8.95) (end 1.33 -8.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 8.38) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -4.32) (end -1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0.76) (end -1.33 4.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 5.84) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -9.4) (end -3.45 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 9.4) (end 3.45 9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 9.4) (end 3.45 -9.4) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -9.4) (end -3.45 -9.4) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 -5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at -1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at -1.655 5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at 1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at 1.655 7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,142 @@
|
|||
(module PinHeader_1x08_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x08, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x08 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x08_P2.54mm_Horizontal (at 4.385 20.05) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 19.05) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 19.05) (end 1.5 19.05) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 19.05) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end 1.5 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 13.02) (end 1.5 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 12.38) (end 10.04 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 12.38) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 13.02) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end 1.5 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end -0.32 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 15.56) (end 1.5 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 14.92) (end 10.04 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 14.92) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 15.56) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end 1.5 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end -0.32 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 18.1) (end 1.5 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 17.46) (end 10.04 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 17.46) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 18.1) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 19.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 19.11) (end 4.1 19.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 19.11) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 11.43) (end 4.1 11.43) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 12.32) (end 10.1 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 12.32) (end 10.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 13.08) (end 4.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 12.32) (end 1.44 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 13.08) (end 1.44 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 13.97) (end 4.1 13.97) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 14.86) (end 10.1 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 14.86) (end 10.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 15.62) (end 4.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 14.86) (end 1.44 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 15.62) (end 1.44 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 16.51) (end 4.1 16.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 17.4) (end 10.1 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 17.4) (end 10.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 18.16) (end 4.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 17.4) (end 1.44 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 18.16) (end 1.44 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 19.55) (end 10.55 19.55) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 19.55) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 8.89 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,41 @@
|
|||
(module PinHeader_1x08_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x08 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x08_P2.54mm_Vertical (at 0 20.11) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 8.89 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,73 @@
|
|||
(module PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x08 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -11.22) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left (at 0 11.22) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 10.16) (end -1.27 10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -10.16) (end 1.27 -10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 10.16) (end -1.27 -9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -9.21) (end -0.32 -10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -10.16) (end 1.27 10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -9.21) (end -2.54 -9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -9.21) (end -2.54 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -8.57) (end -1.27 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -4.13) (end -2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -4.13) (end -2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -3.49) (end -1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 0.95) (end -2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.95) (end -2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 1.59) (end -1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 6.03) (end -2.54 6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 6.03) (end -2.54 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 6.67) (end -1.27 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -6.67) (end 2.54 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -6.67) (end 2.54 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -6.03) (end 1.27 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.59) (end 2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -1.59) (end 2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.95) (end 1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 3.49) (end 2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 3.49) (end 2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.13) (end 1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 8.57) (end 2.54 8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 8.57) (end 2.54 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 9.21) (end 1.27 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -10.22) (end 1.33 -10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 10.22) (end 1.33 10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -10.22) (end 1.33 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -9.65) (end -2.85 -9.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -10.22) (end -1.33 -9.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 9.65) (end 1.33 10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -5.59) (end 1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -0.51) (end 1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 4.57) (end 1.33 8.13) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -8.13) (end -1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -3.05) (end -1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 2.03) (end -1.33 5.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 7.11) (end -1.33 10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -10.7) (end -3.45 10.7) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 10.7) (end 3.45 10.7) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 10.7) (end 3.45 -10.7) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -10.7) (end -3.45 -10.7) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at -1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at -1.655 6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at 1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 8 smd rect (at 1.655 8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,73 @@
|
|||
(module PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x08 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -11.22) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right (at 0 11.22) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 10.16) (end -1.27 10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -10.16) (end 0.32 -10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 10.16) (end 1.27 -9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -9.21) (end 0.32 -10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -10.16) (end -1.27 10.16) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -6.67) (end -2.54 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -6.67) (end -2.54 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -6.03) (end -1.27 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -1.59) (end -2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -1.59) (end -2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.95) (end -1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 3.49) (end -2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 3.49) (end -2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 4.13) (end -1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 8.57) (end -2.54 8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 8.57) (end -2.54 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 9.21) (end -1.27 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -9.21) (end 2.54 -9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -9.21) (end 2.54 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -8.57) (end 1.27 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -4.13) (end 2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.13) (end 2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -3.49) (end 1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 0.95) (end 2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.95) (end 2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 1.59) (end 1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 6.03) (end 2.54 6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 6.03) (end 2.54 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 6.67) (end 1.27 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -10.22) (end 1.33 -10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 10.22) (end 1.33 10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -8.13) (end 1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -3.05) (end 1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 2.03) (end 1.33 5.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 7.11) (end 1.33 10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -10.22) (end -1.33 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -9.65) (end 2.85 -9.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -10.22) (end 1.33 -9.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 9.65) (end -1.33 10.22) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -5.59) (end -1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -0.51) (end -1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 4.57) (end -1.33 8.13) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -10.7) (end -3.45 10.7) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 10.7) (end 3.45 10.7) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 10.7) (end 3.45 -10.7) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -10.7) (end -3.45 -10.7) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 -6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at -1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at -1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 8 smd rect (at -1.655 8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at 1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at 1.655 6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,155 @@
|
|||
(module PinHeader_1x09_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x09, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x09 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x09_P2.54mm_Horizontal (at 4.385 22.59) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 21.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 21.59) (end 1.5 21.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 21.59) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end 1.5 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 13.02) (end 1.5 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 12.38) (end 10.04 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 12.38) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 13.02) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end 1.5 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end -0.32 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 15.56) (end 1.5 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 14.92) (end 10.04 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 14.92) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 15.56) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end 1.5 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end -0.32 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 18.1) (end 1.5 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 17.46) (end 10.04 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 17.46) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 18.1) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20) (end 1.5 20) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20) (end -0.32 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20.64) (end 1.5 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 20) (end 10.04 20) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 20) (end 10.04 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 20.64) (end 10.04 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 21.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 21.65) (end 4.1 21.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 21.65) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 11.43) (end 4.1 11.43) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 12.32) (end 10.1 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 12.32) (end 10.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 13.08) (end 4.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 12.32) (end 1.44 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 13.08) (end 1.44 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 13.97) (end 4.1 13.97) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 14.86) (end 10.1 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 14.86) (end 10.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 15.62) (end 4.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 14.86) (end 1.44 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 15.62) (end 1.44 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 16.51) (end 4.1 16.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 17.4) (end 10.1 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 17.4) (end 10.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 18.16) (end 4.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 17.4) (end 1.44 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 18.16) (end 1.44 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 19.05) (end 4.1 19.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 19.94) (end 10.1 19.94) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 19.94) (end 10.1 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 20.7) (end 4.1 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 19.94) (end 1.44 19.94) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 20.7) (end 1.44 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 22.1) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 22.1) (end 10.55 22.1) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 22.1) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 9 thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 10.16 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x09_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,42 @@
|
|||
(module PinHeader_1x09_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x09, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x09 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x09_P2.54mm_Vertical (at 0 22.65) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 21.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 21.59) (end -1.27 21.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 21.59) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 21.65) (end 1.33 21.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 21.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 21.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 22.1) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 22.1) (end 1.8 22.1) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 22.1) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 9 thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 10.16 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x09_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,78 @@
|
|||
(module PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x09 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -12.49) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left (at 0 12.49) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -11.43) (end 1.27 -11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 11.43) (end -1.27 -10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -10.48) (end -0.32 -11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -11.43) (end 1.27 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -10.48) (end -2.54 -10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -10.48) (end -2.54 -9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -9.84) (end -1.27 -9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -5.4) (end -2.54 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -5.4) (end -2.54 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -4.76) (end -1.27 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.32) (end -2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.32) (end -2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.32) (end -1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 4.76) (end -2.54 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 4.76) (end -2.54 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 5.4) (end -1.27 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 9.84) (end -2.54 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 9.84) (end -2.54 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 10.48) (end -1.27 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -7.94) (end 2.54 -7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -7.94) (end 2.54 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -7.3) (end 1.27 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -2.86) (end 2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.86) (end 2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -2.22) (end 1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 2.22) (end 2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.22) (end 2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 2.86) (end 1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 7.3) (end 2.54 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 7.3) (end 2.54 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 7.94) (end 1.27 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -11.49) (end 1.33 -11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -11.49) (end 1.33 -8.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -10.92) (end -2.85 -10.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -11.49) (end -1.33 -10.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 10.92) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -6.86) (end 1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -1.78) (end 1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 3.3) (end 1.33 6.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 8.38) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -9.4) (end -1.33 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -4.32) (end -1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0.76) (end -1.33 4.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 5.84) (end -1.33 9.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -11.95) (end -3.45 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 11.95) (end 3.45 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 11.95) (end 3.45 -11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -11.95) (end -3.45 -11.95) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -10.16) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 -5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at -1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at -1.655 5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 9 smd rect (at -1.655 10.16) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at 1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 8 smd rect (at 1.655 7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,78 @@
|
|||
(module PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x09 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -12.49) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right (at 0 12.49) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -11.43) (end 0.32 -11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 11.43) (end 1.27 -10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -10.48) (end 0.32 -11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -7.94) (end -2.54 -7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -7.94) (end -2.54 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -7.3) (end -1.27 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.86) (end -2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.86) (end -2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.22) (end -1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 2.22) (end -2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.22) (end -2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.86) (end -1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 7.3) (end -2.54 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 7.3) (end -2.54 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 7.94) (end -1.27 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -10.48) (end 2.54 -10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -10.48) (end 2.54 -9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -9.84) (end 1.27 -9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -5.4) (end 2.54 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -5.4) (end 2.54 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.76) (end 1.27 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -0.32) (end 2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.32) (end 2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.32) (end 1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 4.76) (end 2.54 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.76) (end 2.54 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 5.4) (end 1.27 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 9.84) (end 2.54 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 9.84) (end 2.54 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 10.48) (end 1.27 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -11.49) (end 1.33 -11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -9.4) (end 1.33 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -4.32) (end 1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 0.76) (end 1.33 4.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 5.84) (end 1.33 9.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -11.49) (end -1.33 -8.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -10.92) (end 2.85 -10.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -11.49) (end 1.33 -10.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 10.92) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -6.86) (end -1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.78) (end -1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 3.3) (end -1.33 6.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 8.38) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -11.95) (end -3.45 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 11.95) (end 3.45 11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 11.95) (end 3.45 -11.95) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -11.95) (end -3.45 -11.95) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 -7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at -1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at -1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 8 smd rect (at -1.655 7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -10.16) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 -5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at 1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at 1.655 5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 9 smd rect (at 1.655 10.16) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,168 @@
|
|||
(module PinHeader_1x10_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x10, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x10 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x10_P2.54mm_Horizontal (at 4.385 25.13) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 24.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 24.13) (end 1.5 24.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 24.13) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end 1.5 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 13.02) (end 1.5 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 12.38) (end 10.04 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 12.38) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 13.02) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end 1.5 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end -0.32 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 15.56) (end 1.5 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 14.92) (end 10.04 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 14.92) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 15.56) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end 1.5 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end -0.32 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 18.1) (end 1.5 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 17.46) (end 10.04 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 17.46) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 18.1) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20) (end 1.5 20) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20) (end -0.32 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20.64) (end 1.5 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 20) (end 10.04 20) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 20) (end 10.04 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 20.64) (end 10.04 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 22.54) (end 1.5 22.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 22.54) (end -0.32 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 23.18) (end 1.5 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 22.54) (end 10.04 22.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 22.54) (end 10.04 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 23.18) (end 10.04 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 24.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 24.19) (end 4.1 24.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 24.19) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 11.43) (end 4.1 11.43) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 12.32) (end 10.1 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 12.32) (end 10.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 13.08) (end 4.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 12.32) (end 1.44 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 13.08) (end 1.44 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 13.97) (end 4.1 13.97) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 14.86) (end 10.1 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 14.86) (end 10.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 15.62) (end 4.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 14.86) (end 1.44 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 15.62) (end 1.44 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 16.51) (end 4.1 16.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 17.4) (end 10.1 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 17.4) (end 10.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 18.16) (end 4.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 17.4) (end 1.44 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 18.16) (end 1.44 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 19.05) (end 4.1 19.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 19.94) (end 10.1 19.94) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 19.94) (end 10.1 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 20.7) (end 4.1 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 19.94) (end 1.44 19.94) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 20.7) (end 1.44 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 21.59) (end 4.1 21.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 22.48) (end 10.1 22.48) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 22.48) (end 10.1 23.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 23.24) (end 4.1 23.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 22.48) (end 1.44 22.48) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 23.24) (end 1.44 23.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 24.65) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 24.65) (end 10.55 24.65) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 24.65) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 9 thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 10 thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 11.43 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x10_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,43 @@
|
|||
(module PinHeader_1x10_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x10, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x10 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x10_P2.54mm_Vertical (at 0 25.19) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 24.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 24.13) (end -1.27 24.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 24.13) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 24.19) (end 1.33 24.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 24.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 24.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 24.65) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 24.65) (end 1.8 24.65) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 24.65) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 9 thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 10 thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 11.43 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x10_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,83 @@
|
|||
(module PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x10 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -13.76) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left (at 0 13.76) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 12.7) (end -1.27 12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -12.7) (end 1.27 -12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 12.7) (end -1.27 -11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -11.75) (end -0.32 -12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -12.7) (end 1.27 12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -11.75) (end -2.54 -11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -11.75) (end -2.54 -11.11) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -11.11) (end -1.27 -11.11) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -6.67) (end -2.54 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -6.67) (end -2.54 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -6.03) (end -1.27 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -1.59) (end -2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -1.59) (end -2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -0.95) (end -1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 3.49) (end -2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 3.49) (end -2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 4.13) (end -1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 8.57) (end -2.54 8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 8.57) (end -2.54 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 9.21) (end -1.27 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -9.21) (end 2.54 -9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -9.21) (end 2.54 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -8.57) (end 1.27 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -4.13) (end 2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.13) (end 2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -3.49) (end 1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 0.95) (end 2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.95) (end 2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 1.59) (end 1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 6.03) (end 2.54 6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 6.03) (end 2.54 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 6.67) (end 1.27 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 11.11) (end 2.54 11.11) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 11.11) (end 2.54 11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 11.75) (end 1.27 11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -12.76) (end 1.33 -12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 12.76) (end 1.33 12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -12.76) (end 1.33 -9.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -12.19) (end -2.85 -12.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -12.76) (end -1.33 -12.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 12.19) (end 1.33 12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -8.13) (end 1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -3.05) (end 1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 2.03) (end 1.33 5.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 7.11) (end 1.33 10.67) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -10.67) (end -1.33 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -5.59) (end -1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -0.51) (end -1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 4.57) (end -1.33 8.13) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 9.65) (end -1.33 12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -13.2) (end -3.45 13.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 13.2) (end 3.45 13.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 13.2) (end 3.45 -13.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -13.2) (end -3.45 -13.2) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -11.43) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 -6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at -1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at -1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 9 smd rect (at -1.655 8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at 1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 8 smd rect (at 1.655 6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 10 smd rect (at 1.655 11.43) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,83 @@
|
|||
(module PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right)")
|
||||
(tags "Surface mounted pin header SMD 1x10 2.54mm single row style2 pin1 right")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -13.76) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right (at 0 13.76) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 12.7) (end -1.27 12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -12.7) (end 0.32 -12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 12.7) (end 1.27 -11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -11.75) (end 0.32 -12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -12.7) (end -1.27 12.7) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -9.21) (end -2.54 -9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -9.21) (end -2.54 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -8.57) (end -1.27 -8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -4.13) (end -2.54 -4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -4.13) (end -2.54 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -3.49) (end -1.27 -3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 0.95) (end -2.54 0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 0.95) (end -2.54 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 1.59) (end -1.27 1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 6.03) (end -2.54 6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 6.03) (end -2.54 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 6.67) (end -1.27 6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 11.11) (end -2.54 11.11) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 11.11) (end -2.54 11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 11.75) (end -1.27 11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -11.75) (end 2.54 -11.75) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -11.75) (end 2.54 -11.11) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -11.11) (end 1.27 -11.11) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -6.67) (end 2.54 -6.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -6.67) (end 2.54 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -6.03) (end 1.27 -6.03) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.59) (end 2.54 -1.59) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -1.59) (end 2.54 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.95) (end 1.27 -0.95) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 3.49) (end 2.54 3.49) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 3.49) (end 2.54 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.13) (end 1.27 4.13) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 8.57) (end 2.54 8.57) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 8.57) (end 2.54 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 9.21) (end 1.27 9.21) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -12.76) (end 1.33 -12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 12.76) (end 1.33 12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -10.67) (end 1.33 -7.11) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -5.59) (end 1.33 -2.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -0.51) (end 1.33 3.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 4.57) (end 1.33 8.13) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 9.65) (end 1.33 12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -12.76) (end -1.33 -9.65) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -12.19) (end 2.85 -12.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -12.76) (end 1.33 -12.19) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 12.19) (end -1.33 12.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -8.13) (end -1.33 -4.57) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -3.05) (end -1.33 0.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 2.03) (end -1.33 5.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 7.11) (end -1.33 10.67) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -13.2) (end -3.45 13.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 13.2) (end 3.45 13.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 13.2) (end 3.45 -13.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -13.2) (end -3.45 -13.2) (layer F.CrtYd) (width 0.05))
|
||||
(pad 2 smd rect (at -1.655 -8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at -1.655 -3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at -1.655 1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 8 smd rect (at -1.655 6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 10 smd rect (at -1.655 11.43) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 1 smd rect (at 1.655 -11.43) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at 1.655 -6.35) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at 1.655 -1.27) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at 1.655 3.81) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 9 smd rect (at 1.655 8.89) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,181 @@
|
|||
(module PinHeader_1x11_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB)
|
||||
(descr "Through hole angled pin header, 1x11, 2.54mm pitch, 6mm pin length, single row")
|
||||
(tags "Through hole angled pin header THT 1x11 2.54mm single row")
|
||||
(fp_text reference REF** (at 4.385 -2.27) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x11_P2.54mm_Horizontal (at 4.385 27.67) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -1.27) (end 4.04 26.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 26.67) (end 1.5 26.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 26.67) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end 1.5 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 13.02) (end 1.5 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 12.38) (end 10.04 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 12.38) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 13.02) (end 10.04 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end 1.5 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 14.92) (end -0.32 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 15.56) (end 1.5 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 14.92) (end 10.04 14.92) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 14.92) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 15.56) (end 10.04 15.56) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end 1.5 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 17.46) (end -0.32 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 18.1) (end 1.5 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 17.46) (end 10.04 17.46) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 17.46) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 18.1) (end 10.04 18.1) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20) (end 1.5 20) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20) (end -0.32 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 20.64) (end 1.5 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 20) (end 10.04 20) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 20) (end 10.04 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 20.64) (end 10.04 20.64) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 22.54) (end 1.5 22.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 22.54) (end -0.32 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 23.18) (end 1.5 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 22.54) (end 10.04 22.54) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 22.54) (end 10.04 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 23.18) (end 10.04 23.18) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 25.08) (end 1.5 25.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 25.08) (end -0.32 25.72) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 25.72) (end 1.5 25.72) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 25.08) (end 10.04 25.08) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 10.04 25.08) (end 10.04 25.72) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 4.04 25.72) (end 10.04 25.72) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.44 -1.33) (end 1.44 26.73) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 26.73) (end 4.1 26.73) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 26.73) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 11.43) (end 4.1 11.43) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 12.32) (end 10.1 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 12.32) (end 10.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 13.08) (end 4.1 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 12.32) (end 1.44 12.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 13.08) (end 1.44 13.08) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 13.97) (end 4.1 13.97) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 14.86) (end 10.1 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 14.86) (end 10.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 15.62) (end 4.1 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 14.86) (end 1.44 14.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 15.62) (end 1.44 15.62) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 16.51) (end 4.1 16.51) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 17.4) (end 10.1 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 17.4) (end 10.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 18.16) (end 4.1 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 17.4) (end 1.44 17.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 18.16) (end 1.44 18.16) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 19.05) (end 4.1 19.05) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 19.94) (end 10.1 19.94) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 19.94) (end 10.1 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 20.7) (end 4.1 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 19.94) (end 1.44 19.94) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 20.7) (end 1.44 20.7) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 21.59) (end 4.1 21.59) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 22.48) (end 10.1 22.48) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 22.48) (end 10.1 23.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 23.24) (end 4.1 23.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 22.48) (end 1.44 22.48) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 23.24) (end 1.44 23.24) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.44 24.13) (end 4.1 24.13) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 4.1 25.02) (end 10.1 25.02) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 25.02) (end 10.1 25.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 10.1 25.78) (end 4.1 25.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 25.02) (end 1.44 25.02) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.042929 25.78) (end 1.44 25.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 27.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 27.2) (end 10.55 27.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 27.2) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 9 thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 10 thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 11 thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 2.77 12.7 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x11_P2.54mm_Horizontal.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,44 @@
|
|||
(module PinHeader_1x11_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "Through hole straight pin header, 1x11, 2.54mm pitch, single row")
|
||||
(tags "Through hole pin header THT 1x11 2.54mm single row")
|
||||
(fp_text reference REF** (at 0 -2.33) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x11_P2.54mm_Vertical (at 0 27.73) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -1.27) (end 1.27 26.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 26.67) (end -1.27 26.67) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 26.67) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 26.73) (end 1.33 26.73) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end -1.33 26.73) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 1.27) (end 1.33 26.73) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.8 -1.8) (end -1.8 27.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -1.8 27.2) (end 1.8 27.2) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 27.2) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 6 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 7 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 8 thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 9 thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 10 thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(pad 11 thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1.0) (layers *.Cu *.Mask))
|
||||
(fp_text user %R (at 0 12.7 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x11_P2.54mm_Vertical.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
|
@ -0,0 +1,88 @@
|
|||
(module PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left (layer F.Cu) (tedit 59FED5CC)
|
||||
(descr "surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left)")
|
||||
(tags "Surface mounted pin header SMD 1x11 2.54mm single row style1 pin1 left")
|
||||
(attr smd)
|
||||
(fp_text reference REF** (at 0 -15.03) (layer F.SilkS)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_text value PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left (at 0 15.03) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -0.32 -13.97) (end 1.27 -13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 13.97) (end -1.27 -13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -13.02) (end -0.32 -13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -13.97) (end 1.27 13.97) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -13.02) (end -2.54 -13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -13.02) (end -2.54 -12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -12.38) (end -1.27 -12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -7.94) (end -2.54 -7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -7.94) (end -2.54 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -7.3) (end -1.27 -7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 -2.86) (end -2.54 -2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.86) (end -2.54 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 -2.22) (end -1.27 -2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 2.22) (end -2.54 2.22) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.22) (end -2.54 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 2.86) (end -1.27 2.86) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 7.3) (end -2.54 7.3) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 7.3) (end -2.54 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 7.94) (end -1.27 7.94) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.27 12.38) (end -2.54 12.38) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 12.38) (end -2.54 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -2.54 13.02) (end -1.27 13.02) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -10.48) (end 2.54 -10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -10.48) (end 2.54 -9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -9.84) (end 1.27 -9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -5.4) (end 2.54 -5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -5.4) (end 2.54 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -4.76) (end 1.27 -4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 -0.32) (end 2.54 -0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 -0.32) (end 2.54 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 0.32) (end 1.27 0.32) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 4.76) (end 2.54 4.76) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 4.76) (end 2.54 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 5.4) (end 1.27 5.4) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 1.27 9.84) (end 2.54 9.84) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 9.84) (end 2.54 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start 2.54 10.48) (end 1.27 10.48) (layer F.Fab) (width 0.1))
|
||||
(fp_line (start -1.33 -14.03) (end 1.33 -14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -14.03) (end 1.33 -10.92) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -13.46) (end -2.85 -13.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -14.03) (end -1.33 -13.46) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 13.46) (end 1.33 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -9.4) (end 1.33 -5.84) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 -4.32) (end 1.33 -0.76) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 0.76) (end 1.33 4.32) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 5.84) (end 1.33 9.4) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start 1.33 10.92) (end 1.33 14.03) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -11.94) (end -1.33 -8.38) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -6.86) (end -1.33 -3.3) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 -1.78) (end -1.33 1.78) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 3.3) (end -1.33 6.86) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -1.33 8.38) (end -1.33 11.94) (layer F.SilkS) (width 0.12))
|
||||
(fp_line (start -3.45 -14.5) (end -3.45 14.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start -3.45 14.5) (end 3.45 14.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 14.5) (end 3.45 -14.5) (layer F.CrtYd) (width 0.05))
|
||||
(fp_line (start 3.45 -14.5) (end -3.45 -14.5) (layer F.CrtYd) (width 0.05))
|
||||
(pad 1 smd rect (at -1.655 -12.7) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 3 smd rect (at -1.655 -7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 5 smd rect (at -1.655 -2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 7 smd rect (at -1.655 2.54) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 9 smd rect (at -1.655 7.62) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 11 smd rect (at -1.655 12.7) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 2 smd rect (at 1.655 -10.16) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 4 smd rect (at 1.655 -5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 6 smd rect (at 1.655 0) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 8 smd rect (at 1.655 5.08) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(pad 10 smd rect (at 1.655 10.16) (size 2.51 1) (layers F.Cu F.Mask F.Paste))
|
||||
(fp_text user %R (at 0 0 90) (layer F.Fab)
|
||||
(effects (font (size 1 1) (thickness 0.15)))
|
||||
)
|
||||
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left.wrl
|
||||
(at (xyz 0 0 0))
|
||||
(scale (xyz 1 1 1))
|
||||
(rotate (xyz 0 0 0))
|
||||
)
|
||||
)
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue