This commit is contained in:
Thaddeus Hughes
2025-08-24 07:39:06 -05:00
commit 9bc81a9ebf
85 changed files with 211900 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

133
HECB/HECB.kicad_dru Normal file
View File

@@ -0,0 +1,133 @@
(version 1)
# Custom Design Rules (DRC) for KiCAD 7.0 (Stored in '<project>.kicad_dru' file).
#
# Matching JLCPCB capabilities: https://jlcpcb.com/capabilities/pcb-capabilities
#
# KiCad documentation: https://docs.kicad.org/master/id/pcbnew/pcbnew_advanced.html#custom_design_rules
#
# Inspiration
# - https://gist.github.com/darkxst/f713268e5469645425eed40115fb8b49 (with comments)
# - https://gist.github.com/denniskupec/e163d13b0a64c2044bd259f64659485e (with comments)
# TODO new rule: NPTH pads.
# Inner diameter of pad should be 0.4-0.5 mm larger than NPTH drill diameter.
# JLCPCB: "We make NPTH via dry sealing film process, if customer would like a NPTH but around with pad/copper, our engineer will dig out around pad/copper about 0.2mm-0.25mm, otherwise the metal potion will be flowed into the hole and it becomes a PTH. (there will be no copper dig out optimization for single board)."
# TODO: new rule for plated slots: min diameter/width 0.5mm
# JLCPCB: "The minimum plated slot width is 0.5mm, which is drawn with a pad."
# TODO new rule: non-plated slots: min diameter/width 1.0mm
# JLCPCB: "The minimum Non-Plated Slot Width is 1.0mm, please draw the slot outline in the mechanical layer(GML or GKO)""
(rule "Track width, outer layer (1oz copper)"
(layer outer)
(condition "A.Type == 'track'")
(constraint track_width (min 0.127mm))
)
(rule "Track spacing, outer layer (1oz copper)"
(layer outer)
(condition "A.Type == 'track' && B.Type == A.Type")
(constraint clearance (min 0.127mm))
)
(rule "Track width, inner layer"
(layer inner)
(condition "A.Type == 'track'")
(constraint track_width (min 0.09mm))
)
(rule "Track spacing, inner layer"
(layer inner)
(condition "A.Type == 'track' && B.Type == A.Type")
(constraint clearance (min 0.09mm))
)
(rule "Silkscreen text"
(layer "?.Silkscreen")
(condition "A.Type == 'Text' || A.Type == 'Text Box'")
(constraint text_thickness (min 0.15mm))
(constraint text_height (min 1mm))
)
(rule "Pad to Silkscreen"
(layer outer)
(condition "A.Type == 'pad' && B.Layer == '?.Silkscreen'")
(constraint silk_clearance (min 0.15mm))
)
(rule "Edge (routed) to track clearance"
(condition "A.Type == 'track'")
(constraint edge_clearance (min 0.3mm))
)
#(rule "Edge (v-cut) to track clearance"
# (condition "A.Type == 'track'")
# (constraint edge_clearance (min 0.4mm))
#)
# JLCPCB restrictions ambiguous:
# Illustration: 0.2 mm, 1&2 layer: 0.3 mm, multilayer: "(0.15mm more costly)"
# This rule handles diameter minimum and maximum for ALL holes.
# Other specialized rules handle restrictions (e.g. Via, PTH, NPTH)
(rule "Hole diameter"
(constraint hole_size (min 0.2mm) (max 6.3mm))
)
(rule "Hole (NPTH) diameter"
(layer outer)
(condition "!A.isPlated()")
(constraint hole_size (min 0.5mm))
)
# TODO: Hole to board edge ≥ 1 mm. Min. board size 10 × 10 mm
(rule "Hole (castellated) diameter"
(layer outer)
(condition "A.Type == 'pad' && A.Fabrication_Property == 'Castellated pad'")
(constraint hole_size (min 0.6mm))
)
# JLCPCB: "Via diameter should be 0.1mm(0.15mm preferred) larger than Via hole size" (illustration shows diameters for both dimensions)
# JLCPCB: PTH: "The annular ring size will be enlarged to 0.15mm in production."
(rule "Annular ring width (via and PTH)"
(layer outer)
(condition "A.isPlated()")
(constraint annular_width (min 0.075mm))
)
(rule "Clearance: hole to hole (perimeter), different nets"
(layer outer)
(condition "A.Net != B.Net")
(constraint hole_to_hole (min 0.5mm))
)
(rule "Clearance: hole to hole (perimeter), same net"
(layer outer)
(condition "A.Net == B.Net")
(constraint hole_to_hole (min 0.254mm))
)
(rule "Clearance: track to NPTH hole (perimeter)"
# (condition "A.Pad_Type == 'NPTH, mechanical' && B.Type == 'track' && A.Net != B.Net")
(condition "!A.isPlated() && B.Type == 'track' && A.Net != B.Net")
(constraint hole_clearance (min 0.254mm))
)
(rule "Clearance: track to PTH hole perimeter"
(condition "A.isPlated() && B.Type == 'track' && A.Net != B.Net")
(constraint hole_clearance (min 0.33mm))
)
# TODO: try combining with rule "Clearance: PTH to track, different nets"
(rule "Clearance: track to pad"
(condition "A.Type == 'pad' && B.Type == 'track' && A.Net != B.Net")
(constraint clearance (min 0.2mm))
)
(rule "Clearance: pad/via to pad/via"
(layer outer)
# (condition "(A.Type == 'Pad' || A.Type == 'Via') && (B.Type == 'Pad' || B.Type == 'Via') && A.Net != B.Net")
(condition "A.isPlated() && B.isPlated() && A.Net != B.Net")
(constraint clearance (min 0.127mm))
)

33412
HECB/HECB.kicad_pcb Normal file

File diff suppressed because it is too large Load Diff

83
HECB/HECB.kicad_prl Normal file
View File

@@ -0,0 +1,83 @@
{
"board": {
"active_layer": 0,
"active_layer_preset": "All Layers",
"auto_track_width": true,
"hidden_netclasses": [],
"hidden_nets": [],
"high_contrast_mode": 0,
"net_color_mode": 1,
"opacity": {
"images": 0.6,
"pads": 1.0,
"tracks": 1.0,
"vias": 1.0,
"zones": 0.6
},
"selection_filter": {
"dimensions": true,
"footprints": true,
"graphics": true,
"keepouts": true,
"lockedItems": false,
"otherItems": true,
"pads": true,
"text": true,
"tracks": true,
"vias": true,
"zones": true
},
"visible_items": [
0,
1,
2,
3,
4,
5,
8,
9,
10,
11,
12,
13,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
32,
33,
34,
35,
36,
39,
40
],
"visible_layers": "fffffff_ffffffff",
"zone_display_mode": 0
},
"git": {
"repo_password": "",
"repo_type": "",
"repo_username": "",
"ssh_key": ""
},
"meta": {
"filename": "HECB.kicad_prl",
"version": 3
},
"project": {
"files": []
}
}

604
HECB/HECB.kicad_pro Normal file
View File

@@ -0,0 +1,604 @@
{
"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.05,
"copper_line_width": 0.2,
"copper_text_italic": false,
"copper_text_size_h": 1.5,
"copper_text_size_v": 1.5,
"copper_text_thickness": 0.3,
"copper_text_upright": false,
"courtyard_line_width": 0.05,
"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.1,
"fab_text_italic": false,
"fab_text_size_h": 1.0,
"fab_text_size_v": 1.0,
"fab_text_thickness": 0.15,
"fab_text_upright": false,
"other_line_width": 0.1,
"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.1,
"silk_text_italic": false,
"silk_text_size_h": 1.0,
"silk_text_size_v": 1.0,
"silk_text_thickness": 0.1,
"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": "ignore",
"malformed_courtyard": "ignore",
"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.5,
"min_hole_clearance": 0.25,
"min_hole_to_hole": 0.25,
"min_microvia_diameter": 0.2,
"min_microvia_drill": 0.1,
"min_resolved_spokes": 2,
"min_silk_clearance": 0.0,
"min_text_height": 0.8,
"min_text_thickness": 0.08,
"min_through_hole_diameter": 0.3,
"min_track_width": 0.0,
"min_via_annular_width": 0.1,
"min_via_diameter": 0.5,
"solder_mask_to_copper_clearance": 0.005,
"use_height_for_length_calcs": true
},
"teardrop_options": [
{
"td_onpadsmd": true,
"td_onroundshapesonly": false,
"td_ontrackend": false,
"td_onviapad": true
}
],
"teardrop_parameters": [
{
"td_allow_use_two_tracks": true,
"td_curve_segcount": 0,
"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": true,
"td_curve_segcount": 0,
"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": true,
"td_curve_segcount": 0,
"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_track_end",
"td_width_to_size_filter_ratio": 0.9
}
],
"track_widths": [
0.0,
0.1524,
0.254,
0.381,
0.508,
1.27,
1.905,
2.54,
3.81,
5.08
],
"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": "HECB.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.2,
"via_diameter": 0.6,
"via_drill": 0.3,
"wire_width": 6
}
],
"meta": {
"version": 3
},
"net_colors": null,
"netclass_assignments": null,
"netclass_patterns": []
},
"pcbnew": {
"last_paths": {
"gencad": "",
"idf": "",
"netlist": "",
"plot": "",
"pos_files": "",
"specctra_dsn": "",
"step": "HECB.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": [
[
"bd95f97b-e00f-48bc-9d2b-76e9d99694cd",
"Root"
]
],
"text_variables": {}
}

20977
HECB/HECB.kicad_sch Normal file

File diff suppressed because it is too large Load Diff

60622
HECB/HECB.step Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
{"ARCHIVE_NAME": "", "EXTRA_LAYERS": "", "ALL_ACTIVE_LAYERS": false, "EXTEND_EDGE_CUT": false, "ALTERNATIVE_EDGE_CUT": false, "AUTO TRANSLATE": true, "AUTO FILL": true, "EXCLUDE DNP": false}

94809
HECB/fp-info-cache Normal file

File diff suppressed because it is too large Load Diff

BIN
HECB/production/HECB.zip Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

26
HECB/production/bom.csv Normal file
View File

@@ -0,0 +1,26 @@
Designator,Footprint,Quantity,Value,LCSC Part #
C1,CP_Radial_D8.0mm_P2.50mm,1,100uF,
C2,CP_Radial_D5.0mm_P2.00mm,1,10uF,
"C3, C4",CP_Radial_Tantal_D4.5mm_P2.50mm,2,1uF,
"DA1, DA2, DA3, DA4, DB1, DB2, DB3, DB4",D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp,8,1N4007,
"J1, J2, J3",PinHeader_1x03_P2.54mm_Vertical,3,Conn_01x03,
J5,CONN_AT15-6P-BMxx_AMP,1,AT15-6P-BM01,
J_433MHZ1,PinHeader_1x04_P2.54mm_Vertical,1,Conn_01x04,
"J_BTN1, J_BTN2, J_BTN3, J_BTN4, J_BTN5",Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical,5,Conn_01x02,
"J_GND1, J_GND2, J_GND3, J_O_A1, J_O_A2, J_O_B1, J_O_B2, J_PWR1",TE_1217861-1,8,Conn_01x01,
J_INPUT1,CONN_AT15-12P-BMxx_AMP,1,AT15-12PB-BM16,
J_LCD1,Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical,1,Conn_01x04,
J_LORA1,PinSocket_1x05_P2.54mm_Vertical,1,Conn_01x05,
J_RTC1,PinHeader_1x05_P2.54mm_Vertical,1,Conn_01x05,
"KA1, KA2, KA3, KA4, KB1, KB2, KB3, KB4",RELAY_A161CS12VDC.64,8,A161CS12VDC.64,
"QA1, QA2, QA3, QA4, QB1, QB2, QB3, QB4",TO-92L_Inline_Wide,8,2N7000,2N7000
R1,R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal,1,1k,
"R10, R11, R12, R13, R14, R9",R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal,6,10k,
"R15, R3, R4, R5, R6",R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal,5,10k,
R2,R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal,1,2k,
R7,R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal,1,100k,
R8,R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal,1,20k,
RN1,R_Array_SIP9,1,R_Network08,
U1,TO-220-3_Vertical,1,L7805,
U2,MODULE_MEGA_PRO_EMBED_CH340G___ATMEGA2560,1,MEGA_PRO_EMBED_CH340G___ATMEGA2560,
"X1, X2, X3, X4",FUSE_3522-2,4,3522-2,
1 Designator Footprint Quantity Value LCSC Part #
2 C1 CP_Radial_D8.0mm_P2.50mm 1 100uF
3 C2 CP_Radial_D5.0mm_P2.00mm 1 10uF
4 C3, C4 CP_Radial_Tantal_D4.5mm_P2.50mm 2 1uF
5 DA1, DA2, DA3, DA4, DB1, DB2, DB3, DB4 D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp 8 1N4007
6 J1, J2, J3 PinHeader_1x03_P2.54mm_Vertical 3 Conn_01x03
7 J5 CONN_AT15-6P-BMxx_AMP 1 AT15-6P-BM01
8 J_433MHZ1 PinHeader_1x04_P2.54mm_Vertical 1 Conn_01x04
9 J_BTN1, J_BTN2, J_BTN3, J_BTN4, J_BTN5 Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical 5 Conn_01x02
10 J_GND1, J_GND2, J_GND3, J_O_A1, J_O_A2, J_O_B1, J_O_B2, J_PWR1 TE_1217861-1 8 Conn_01x01
11 J_INPUT1 CONN_AT15-12P-BMxx_AMP 1 AT15-12PB-BM16
12 J_LCD1 Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical 1 Conn_01x04
13 J_LORA1 PinSocket_1x05_P2.54mm_Vertical 1 Conn_01x05
14 J_RTC1 PinHeader_1x05_P2.54mm_Vertical 1 Conn_01x05
15 KA1, KA2, KA3, KA4, KB1, KB2, KB3, KB4 RELAY_A161CS12VDC.64 8 A161CS12VDC.64
16 QA1, QA2, QA3, QA4, QB1, QB2, QB3, QB4 TO-92L_Inline_Wide 8 2N7000 2N7000
17 R1 R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal 1 1k
18 R10, R11, R12, R13, R14, R9 R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal 6 10k
19 R15, R3, R4, R5, R6 R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal 5 10k
20 R2 R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal 1 2k
21 R7 R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal 1 100k
22 R8 R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal 1 20k
23 RN1 R_Array_SIP9 1 R_Network08
24 U1 TO-220-3_Vertical 1 L7805
25 U2 MODULE_MEGA_PRO_EMBED_CH340G___ATMEGA2560 1 MEGA_PRO_EMBED_CH340G___ATMEGA2560
26 X1, X2, X3, X4 FUSE_3522-2 4 3522-2

View File

@@ -0,0 +1,72 @@
C1:1
C2:1
C3:1
C4:1
DA1:1
DA2:1
DA3:1
DA4:1
DB1:1
DB2:1
DB3:1
DB4:1
J1:1
J2:1
J3:1
J5:1
J_433MHZ1:1
J_BTN1:1
J_BTN2:1
J_BTN3:1
J_BTN4:1
J_BTN5:1
J_GND1:1
J_GND2:1
J_GND3:1
J_INPUT1:1
J_LCD1:1
J_LORA1:1
J_O_A1:1
J_O_A2:1
J_O_B1:1
J_O_B2:1
J_PWR1:1
J_RTC1:1
KA1:1
KA2:1
KA3:1
KA4:1
KB1:1
KB2:1
KB3:1
KB4:1
QA1:1
QA2:1
QA3:1
QA4:1
QB1:1
QB2:1
QB3:1
QB4:1
R1:1
R10:1
R11:1
R12:1
R13:1
R14:1
R15:1
R2:1
R3:1
R4:1
R5:1
R6:1
R7:1
R8:1
R9:1
RN1:1
U1:1
U2:1
X1:1
X2:1
X3:1
X4:1
1 C1:1
2 C2:1
3 C3:1
4 C4:1
5 DA1:1
6 DA2:1
7 DA3:1
8 DA4:1
9 DB1:1
10 DB2:1
11 DB3:1
12 DB4:1
13 J1:1
14 J2:1
15 J3:1
16 J5:1
17 J_433MHZ1:1
18 J_BTN1:1
19 J_BTN2:1
20 J_BTN3:1
21 J_BTN4:1
22 J_BTN5:1
23 J_GND1:1
24 J_GND2:1
25 J_GND3:1
26 J_INPUT1:1
27 J_LCD1:1
28 J_LORA1:1
29 J_O_A1:1
30 J_O_A2:1
31 J_O_B1:1
32 J_O_B2:1
33 J_PWR1:1
34 J_RTC1:1
35 KA1:1
36 KA2:1
37 KA3:1
38 KA4:1
39 KB1:1
40 KB2:1
41 KB3:1
42 KB4:1
43 QA1:1
44 QA2:1
45 QA3:1
46 QA4:1
47 QB1:1
48 QB2:1
49 QB3:1
50 QB4:1
51 R1:1
52 R10:1
53 R11:1
54 R12:1
55 R13:1
56 R14:1
57 R15:1
58 R2:1
59 R3:1
60 R4:1
61 R5:1
62 R6:1
63 R7:1
64 R8:1
65 R9:1
66 RN1:1
67 U1:1
68 U2:1
69 X1:1
70 X2:1
71 X3:1
72 X4:1

309
HECB/production/netlist.ipc Normal file
View File

@@ -0,0 +1,309 @@
P CODE 00
P UNITS CUST 0
P arrayDim N
317/RELAY_SIG_A1 RN1 -9 D0315PA00X+063100Y-014600X0630Y0630R270S0
317/RELAY_SIG_B1 RN1 -8 D0315PA00X+063100Y-015600X0630Y0630R270S0
317/RELAY_SIG_A2 RN1 -7 D0315PA00X+063100Y-016600X0630Y0630R270S0
317/RELAY_SIG_B2 RN1 -6 D0315PA00X+063100Y-017600X0630Y0630R270S0
317/RELAY_SIG_B3 RN1 -5 D0315PA00X+063100Y-018600X0630Y0630R270S0
317/RELAY_SIG_A3 RN1 -4 D0315PA00X+063100Y-019600X0630Y0630R270S0
317/RELAY_SIG_A4 RN1 -3 D0315PA00X+063100Y-020600X0630Y0630R270S0
317/RELAY_SIG_B4 RN1 -2 D0315PA00X+063100Y-021600X0630Y0630R270S0
317GND RN1 -1 D0315PA00X+063100Y-022600X0630Y0630R270S0
317+12V DB4 -1 D0433PA00X+042600Y-047185X0866Y0866R090S0
317NET-(DB4-A) DB4 -2 D0433PA00X+042600Y-048185X0866Y0866R090S0
317+12V DB3 -1 D0433PA00X+048554Y-047196X0866Y0866R090S0
317NET-(DB3-A) DB3 -2 D0433PA00X+048554Y-048196X0866Y0866R090S0
317+12V DB2 -1 D0433PA00X+056577Y-047200X0866Y0866R090S0
317NET-(DB2-A) DB2 -2 D0433PA00X+056577Y-048200X0866Y0866R090S0
317+12V DB1 -1 D0433PA00X+060600Y-047200X0866Y0866R090S0
317NET-(DB1-A) DB1 -2 D0433PA00X+060600Y-048200X0866Y0866R090S0
317+12V DA4 -1 D0433PA00X+044577Y-047200X0866Y0866R090S0
317NET-(DA4-A) DA4 -2 D0433PA00X+044577Y-048200X0866Y0866R090S0
317+12V DA3 -1 D0433PA00X+046577Y-047200X0866Y0866R090S0
317NET-(DA3-A) DA3 -2 D0433PA00X+046577Y-048200X0866Y0866R090S0
317+12V DA2 -1 D0433PA00X+058577Y-047200X0866Y0866R090S0
317NET-(DA2-A) DA2 -2 D0433PA00X+058577Y-048200X0866Y0866R090S0
317+12V DA1 -1 D0433PA00X+062623Y-047200X0866Y0866R090S0
317NET-(DA1-A) DA1 -2 D0433PA00X+062623Y-048200X0866Y0866R090S0
317+5V R4 -1 D0315PA00X+041300Y-019908X0630Y0000R270S0
317/BTN2 R4 -2 D0315PA00X+041300Y-016908X0630Y0630R270S0
317+12V J_PWR1-1 D0551PA00X+052800Y-043500X0827Y0000R180S0
317+12V J_PWR1-1 D0551PA00X+050800Y-043500X0827Y0000R180S0
317GND QA2 -1 D0315PA00X+058577Y-044000X0591Y0591R090S0
317/RELAY_SIG_A2 QA2 -2 D0315PA00X+058577Y-045000X0591Y0000R090S0
317NET-(DA2-A) QA2 -3 D0315PA00X+058577Y-046000X0591Y0000R090S0
317/O_A2 J_O_A2-1 D0551PA00X+062577Y-053865X0827Y0000R000S0
317/O_A2 J_O_A2-1 D0551PA00X+064577Y-053865X0827Y0000R000S0
317J_LORA1-PIN_3) R2 -1 D0315PA00X+035600Y-023000X0630Y0000R000S0
317GND R2 -2 D0315PA00X+038600Y-023000X0630Y0630R000S0
317+5V R11 -1 D0276PA00X+058700Y-026080X0551Y0000R180S0
317/IN_3 R11 -2 D0276PA00X+055700Y-026080X0551Y0551R180S0
317/BTN1 J_BTN1-1 D0469PA00X+044500Y-015000X0685Y0862R180S0
317GND J_BTN1-2 D0469PA00X+043500Y-015000X0685Y0862R180S0
317+12V J1 -1 D0394PA00X+041200Y-042400X0669Y0669R270S0
317NET-(J1-PIN_2) J1 -2 D0394PA00X+042200Y-042400X0669Y0669R270S0
317+5V J1 -3 D0394PA00X+043200Y-042400X0669Y0669R270S0
317GND QB3 -1 D0315PA00X+048554Y-043996X0591Y0591R090S0
317/RELAY_SIG_B3 QB3 -2 D0315PA00X+048554Y-044996X0591Y0000R090S0
317NET-(DB3-A) QB3 -3 D0315PA00X+048554Y-045996X0591Y0000R090S0
317+5V J_433M-1 D0394PA00X+029000Y-028800X0669Y0669R180S0
317/RF_D J_433M-2 D0394PA00X+029000Y-027800X0669Y0669R180S0
317Z1-PIN_3-PAD3) J_433M-3 D0394PA00X+029000Y-026800X0669Y0669R180S0
317GND J_433M-4 D0394PA00X+029000Y-025800X0669Y0669R180S0
317+12V X4 -1A D1020PA00X+051000Y-055000X1378Y0000R090S0
317+12V X4 -1B D1020PA00X+051000Y-057000X1378Y0000R090S0
317ET-(KA4-PADNO) X4 -2A D1020PA00X+051000Y-058598X1378Y0000R090S0
317ET-(KA4-PADNO) X4 -2B D1020PA00X+051000Y-060598X1378Y0000R090S0
317/BTN5 J_BTN5-1 D0469PA00X+033700Y-015000X0685Y0862R180S0
317GND J_BTN5-2 D0469PA00X+032700Y-015000X0685Y0862R180S0
317+5V R10 -1 D0276PA00X+058700Y-027320X0551Y0000R180S0
317/IN_2 R10 -2 D0276PA00X+055700Y-027320X0551Y0551R180S0
317+5V R9 -1 D0276PA00X+058700Y-028561X0551Y0000R180S0
317/IN_1 R9 -2 D0276PA00X+055700Y-028561X0551Y0551R180S0
317GND QB2 -1 D0315PA00X+056577Y-044000X0591Y0591R090S0
317/RELAY_SIG_B2 QB2 -2 D0315PA00X+056577Y-045000X0591Y0000R090S0
317NET-(DB2-A) QB2 -3 D0315PA00X+056577Y-046000X0591Y0000R090S0
317+5V R12 -1 D0276PA00X+058700Y-024840X0551Y0000R180S0
317/IN_4 R12 -2 D0276PA00X+055700Y-024840X0551Y0551R180S0
317+5V R13 -1 D0276PA00X+058700Y-023600X0551Y0000R180S0
317/IN_5 R13 -2 D0276PA00X+055700Y-023600X0551Y0551R180S0
317+5V C3 -1 D0315PA00X+034184Y-025000X0630Y0630R180S0
317GND C3 -2 D0315PA00X+033200Y-025000X0630Y0000R180S0
317+12V KB2 -A1 D0295PA00X+057724Y-051335X0495Y0000R180S0
317NET-(DB2-A) KB2 -A2 D0295PA00X+057724Y-049465X0495Y0000R180S0
317/O_B2 KB2 -COM D0591PA00X+061004Y-050400X0886Y0000R180S0
317ED-(KB2-PADNC) KB2 -NC D0591PA00X+056177Y-051335X0886Y0000R180S0
317ET-(KA2-PADNO) KB2 -NO D0591PA00X+056177Y-049465X0886Y0000R180S0
317+3.3V C4 -1 D0315PA00X+037600Y-025000X0630Y0630R180S0
317GND C4 -2 D0315PA00X+036616Y-025000X0630Y0000R180S0
317+12V KA3 -A1 D0295PA00X+047577Y-052865X0495Y0000R000S0
317NET-(DA3-A) KA3 -A2 D0295PA00X+047577Y-054735X0495Y0000R000S0
317/O_A3 KA3 -COM D0591PA00X+044298Y-053800X0886Y0000R000S0
317GND KA3 -NC D0591PA00X+049124Y-052865X0886Y0000R000S0
317ET-(KA3-PADNO) KA3 -NO D0591PA00X+049124Y-054735X0886Y0000R000S0
317+12V X1 -1A D1020PA00X+054600Y-054201X1378Y0000R090S0
317+12V X1 -1B D1020PA00X+054600Y-056201X1378Y0000R090S0
317ET-(KA1-PADNO) X1 -2A D1020PA00X+054600Y-057799X1378Y0000R090S0
317ET-(KA1-PADNO) X1 -2B D1020PA00X+054600Y-059799X1378Y0000R090S0
317+12V J2 -1 D0394PA00X+037600Y-042400X0669Y0669R270S0
317NET-(J2-PIN_2) J2 -2 D0394PA00X+038600Y-042400X0669Y0669R270S0
317+5V J2 -3 D0394PA00X+039600Y-042400X0669Y0669R270S0
317+5V R5 -1 D0315PA00X+038600Y-019916X0630Y0000R270S0
317/BTN3 R5 -2 D0315PA00X+038600Y-016916X0630Y0630R270S0
317GND J_GND3-1 D0551PA00X+038000Y-046000X0827Y0000R000S0
317GND J_GND3-1 D0551PA00X+040000Y-046000X0827Y0000R000S0
317GND QA4 -1 D0315PA00X+044577Y-044000X0591Y0591R090S0
317/RELAY_SIG_A4 QA4 -2 D0315PA00X+044577Y-045000X0591Y0000R090S0
317NET-(DA4-A) QA4 -3 D0315PA00X+044577Y-046000X0591Y0000R090S0
317GND QA3 -1 D0315PA00X+046577Y-044000X0591Y0591R090S0
317/RELAY_SIG_A3 QA3 -2 D0315PA00X+046577Y-045000X0591Y0000R090S0
317NET-(DA3-A) QA3 -3 D0315PA00X+046577Y-046000X0591Y0000R090S0
317+5V R14 -1 D0276PA00X+058700Y-022360X0551Y0000R180S0
317/IN_6 R14 -2 D0276PA00X+055700Y-022360X0551Y0551R180S0
317+5V R15 -1 D0315PA00X+033200Y-019900X0630Y0000R270S0
317/BTN5 R15 -2 D0315PA00X+033200Y-016900X0630Y0630R270S0
317+12V KA2 -A1 D0295PA00X+057724Y-054735X0495Y0000R180S0
317NET-(DA2-A) KA2 -A2 D0295PA00X+057724Y-052865X0495Y0000R180S0
317/O_A2 KA2 -COM D0591PA00X+061004Y-053800X0886Y0000R180S0
317ED-(KA2-PADNC) KA2 -NC D0591PA00X+056177Y-054735X0886Y0000R180S0
317ET-(KA2-PADNO) KA2 -NO D0591PA00X+056177Y-052865X0886Y0000R180S0
317/O_B2 J_O_B2-1 D0551PA00X+062577Y-050465X0827Y0000R000S0
317/O_B2 J_O_B2-1 D0551PA00X+064577Y-050465X0827Y0000R000S0
317GND QA1 -1 D0315PA00X+062623Y-044000X0591Y0591R090S0
317/RELAY_SIG_A1 QA1 -2 D0315PA00X+062623Y-045000X0591Y0000R090S0
317NET-(DA1-A) QA1 -3 D0315PA00X+062623Y-046000X0591Y0000R090S0
317/LORA_RXD R1 -1 D0315PA00X+038600Y-021800X0630Y0000R180S0
317J_LORA1-PIN_3) R1 -2 D0315PA00X+035600Y-021800X0630Y0630R180S0
317+12V C1 -1 D0315PA00X+048800Y-040784X0630Y0630R270S0
317GND C1 -2 D0315PA00X+048800Y-039800X0630Y0000R270S0
317GND QB4 -1 D0315PA00X+042600Y-043996X0591Y0591R090S0
317/RELAY_SIG_B4 QB4 -2 D0315PA00X+042600Y-044996X0591Y0000R090S0
317NET-(DB4-A) QB4 -3 D0315PA00X+042600Y-045996X0591Y0000R090S0
317+5V J_RTC1-1 D0394PA00X+031600Y-018602X0669Y0669R000S0
317/I2C_SDA J_RTC1-2 D0394PA00X+031600Y-019602X0669Y0669R000S0
317/I2C_SCL J_RTC1-3 D0394PA00X+031600Y-020602X0669Y0669R000S0
317C1-PIN_4-PAD4) J_RTC1-4 D0394PA00X+031600Y-021602X0669Y0669R000S0
317GND J_RTC1-5 D0394PA00X+031600Y-022602X0669Y0669R000S0
317/BTN4 J_BTN4-1 D0469PA00X+036400Y-015000X0685Y0862R180S0
317GND J_BTN4-2 D0469PA00X+035400Y-015000X0685Y0862R180S0
317/BTN3 J_BTN3-1 D0469PA00X+039100Y-015008X0685Y0862R180S0
317GND J_BTN3-2 D0469PA00X+038100Y-015008X0685Y0862R180S0
317+12V KA1 -A1 D0295PA00X+057724Y-061570X0495Y0000R180S0
317NET-(DA1-A) KA1 -A2 D0295PA00X+057724Y-059700X0495Y0000R180S0
317/O_A1 KA1 -COM D0591PA00X+061004Y-060635X0886Y0000R180S0
317ED-(KA1-PADNC) KA1 -NC D0591PA00X+056177Y-061570X0886Y0000R180S0
317ET-(KA1-PADNO) KA1 -NO D0591PA00X+056177Y-059700X0886Y0000R180S0
317GND J_GND1-1 D0551PA00X+028800Y-046000X0827Y0000R000S0
317GND J_GND1-1 D0551PA00X+030800Y-046000X0827Y0000R000S0
317+12V X3 -1A D1020PA00X+051000Y-046802X1378Y0000R090S0
317+12V X3 -1B D1020PA00X+051000Y-048802X1378Y0000R090S0
317ET-(KA3-PADNO) X3 -2A D1020PA00X+051000Y-050400X1378Y0000R090S0
317ET-(KA3-PADNO) X3 -2B D1020PA00X+051000Y-052400X1378Y0000R090S0
317/BTN2 J_BTN2-1 D0469PA00X+041800Y-015000X0685Y0862R180S0
317GND J_BTN2-2 D0469PA00X+040800Y-015000X0685Y0862R180S0
317GND C2 -2 D0315PA00X+045500Y-029900X0630Y0000R270S0
317+5V C2 -1 D0315PA00X+045500Y-030687X0630Y0630R270S0
317+12V U1 -1 D0433PA00X+053450Y-038700X0750Y0787R270S0
317GND U1 -2 D0433PA00X+053450Y-037700X0750Y0787R270S0
317+5V U1 -3 D0433PA00X+053450Y-036700X0750Y0787R270S0
317/O_B1 J_O_B1-1 D0551PA00X+062600Y-057300X0827Y0000R000S0
317/O_B1 J_O_B1-1 D0551PA00X+064600Y-057300X0827Y0000R000S0
317GND QB1 -1 D0315PA00X+060600Y-044000X0591Y0591R090S0
317/RELAY_SIG_B1 QB1 -2 D0315PA00X+060600Y-045000X0591Y0000R090S0
317NET-(DB1-A) QB1 -3 D0315PA00X+060600Y-046000X0591Y0000R090S0
317GND J_GND2-1 D0551PA00X+033400Y-046000X0827Y0000R000S0
317GND J_GND2-1 D0551PA00X+035400Y-046000X0827Y0000R000S0
317+12V KB3 -A1 D0295PA00X+047577Y-049465X0495Y0000R000S0
317NET-(DB3-A) KB3 -A2 D0295PA00X+047577Y-051335X0495Y0000R000S0
317/O_B3 KB3 -COM D0591PA00X+044298Y-050400X0886Y0000R000S0
317GND KB3 -NC D0591PA00X+049124Y-049465X0886Y0000R000S0
317ET-(KA3-PADNO) KB3 -NO D0591PA00X+049124Y-051335X0886Y0000R000S0
317+12V KB1 -A1 D0295PA00X+057747Y-058170X0495Y0000R180S0
317NET-(DB1-A) KB1 -A2 D0295PA00X+057747Y-056300X0495Y0000R180S0
317/O_B1 KB1 -COM D0591PA00X+061027Y-057235X0886Y0000R180S0
317ED-(KB1-PADNC) KB1 -NC D0591PA00X+056200Y-058170X0886Y0000R180S0
317ET-(KA1-PADNO) KB1 -NO D0591PA00X+056200Y-056300X0886Y0000R180S0
317+12V R7 -1 D0315PA00X+060800Y-033900X0630Y0000R270S0
317/V_SENS R7 -2 D0315PA00X+060800Y-030900X0630Y0630R270S0
317+12V X2 -1A D1020PA00X+054600Y-046002X1378Y0000R090S0
317+12V X2 -1B D1020PA00X+054600Y-048002X1378Y0000R090S0
317ET-(KA2-PADNO) X2 -2A D1020PA00X+054600Y-049600X1378Y0000R090S0
317ET-(KA2-PADNO) X2 -2B D1020PA00X+054600Y-051600X1378Y0000R090S0
317+12V KA4 -A1 D0295PA00X+047577Y-056265X0495Y0000R000S0
317NET-(DA4-A) KA4 -A2 D0295PA00X+047577Y-058135X0495Y0000R000S0
317/O_A4 KA4 -COM D0591PA00X+044298Y-057200X0886Y0000R000S0
317GND KA4 -NC D0591PA00X+049124Y-056265X0886Y0000R000S0
317ET-(KA4-PADNO) KA4 -NO D0591PA00X+049124Y-058135X0886Y0000R000S0
317+5V R6 -1 D0315PA00X+035900Y-019908X0630Y0000R270S0
317/BTN4 R6 -2 D0315PA00X+035900Y-016908X0630Y0630R270S0
317+12V J3 -1 D0394PA00X+034000Y-042400X0669Y0669R270S0
317NET-(J3-PIN_2) J3 -2 D0394PA00X+035000Y-042400X0669Y0669R270S0
317+5V J3 -3 D0394PA00X+036000Y-042400X0669Y0669R270S0
317GND J_LCD1-1 D0469PA00X+031000Y-015008X0685Y0862R180S0
317+5V J_LCD1-2 D0469PA00X+030000Y-015008X0685Y0862R180S0
317/I2C_SDA J_LCD1-3 D0469PA00X+029000Y-015008X0685Y0862R180S0
317/I2C_SCL J_LCD1-4 D0469PA00X+028000Y-015008X0685Y0862R180S0
317+3.3V J_LORA-1 D0394PA00X+037600Y-027800X0669Y0669R090S0
317A1-PIN_2-PAD2) J_LORA-2 D0394PA00X+036600Y-027800X0669Y0669R090S0
317J_LORA1-PIN_3) J_LORA-3 D0394PA00X+035600Y-027800X0669Y0669R090S0
317/LORA_TXD J_LORA-4 D0394PA00X+034600Y-027800X0669Y0669R090S0
317GND J_LORA-5 D0394PA00X+033600Y-027800X0669Y0669R090S0
317+12V KB4 -A1 D0295PA00X+047577Y-059665X0495Y0000R000S0
317NET-(DB4-A) KB4 -A2 D0295PA00X+047577Y-061535X0495Y0000R000S0
317/O_B4 KB4 -COM D0591PA00X+044298Y-060600X0886Y0000R000S0
317GND KB4 -NC D0591PA00X+049124Y-059665X0886Y0000R000S0
317ET-(KA4-PADNO) KB4 -NO D0591PA00X+049124Y-061535X0886Y0000R000S0
317/V_SENS R8 -1 D0315PA00X+062000Y-030900X0630Y0000R090S0
317GND R8 -2 D0315PA00X+062000Y-033900X0630Y0630R090S0
317+5V R3 -1 D0315PA00X+044000Y-019908X0630Y0000R270S0
317/BTN1 R3 -2 D0315PA00X+044000Y-016908X0630Y0630R270S0
317/O_A1 J_O_A1-1 D0551PA00X+062577Y-060700X0827Y0000R000S0
317/O_A1 J_O_A1-1 D0551PA00X+064577Y-060700X0827Y0000R000S0
367N/C J_INPU D1350UA00X+031680Y-041209X1350Y0000R270S0
367N/C J_INPU D1350UA00X+045499Y-041209X1350Y0000R270S0
367N/C J_INPU D1350UA00X+031680Y-032808X1350Y0000R270S0
367N/C J_INPU D1350UA00X+045499Y-032808X1350Y0000R270S0
317/IN_1 J_INPU-1 D0709PA00X+042940Y-035217X1181Y0000R270S0
317/IN_2 J_INPU-2 D0709PA00X+041200Y-035217X1181Y0000R270S0
317/IN_3 J_INPU-3 D0709PA00X+039460Y-035217X1181Y0000R270S0
317/IN_4 J_INPU-4 D0709PA00X+037720Y-035217X1181Y0000R270S0
317/IN_5 J_INPU-5 D0709PA00X+035980Y-035217X1181Y0000R270S0
317/IN_6 J_INPU-6 D0709PA00X+034239Y-035217X1181Y0000R270S0
317GND J_INPU-7 D0709PA00X+034239Y-038800X1181Y0000R270S0
317NET-(J3-PIN_2) J_INPU-8 D0709PA00X+035980Y-038800X1181Y0000R270S0
317GND J_INPU-9 D0709PA00X+037720Y-038800X1181Y0000R270S0
317NET-(J2-PIN_2) J_INPU-10 D0709PA00X+039460Y-038800X1181Y0000R270S0
317GND J_INPU-11 D0709PA00X+041200Y-038800X1181Y0000R270S0
317NET-(J1-PIN_2) J_INPU-12 D0709PA00X+042940Y-038800X1181Y0000R270S0
317+3.3V U2 -3V3_ D0315PA00X+048000Y-030600X0660Y0000R270S0
317+3.3V U2 -3V3_ D0315PA00X+049000Y-030600X0660Y0000R270S0
317+5V U2 -5V_1 D0315PA00X+048000Y-031600X0660Y0000R270S0
317+5V U2 -5V_2 D0315PA00X+049000Y-031600X0660Y0000R270S0
317/V_SENS U2 -A0 D0315PA00X+062000Y-028600X0660Y0000R270S0
317/IN_1 U2 -A1 D0315PA00X+061000Y-028600X0660Y0000R270S0
317TED-(U2-PADA2) U2 -A2 D0315PA00X+062000Y-027600X0660Y0000R270S0
317/IN_2 U2 -A3 D0315PA00X+061000Y-027600X0660Y0000R270S0
317TED-(U2-PADA4) U2 -A4 D0315PA00X+062000Y-026600X0660Y0000R270S0
317/IN_3 U2 -A5 D0315PA00X+061000Y-026600X0660Y0000R270S0
317TED-(U2-PADA6) U2 -A6 D0315PA00X+062000Y-025600X0660Y0000R270S0
317/IN_4 U2 -A7 D0315PA00X+061000Y-025600X0660Y0000R270S0
317TED-(U2-PADA8) U2 -A8 D0315PA00X+062000Y-024600X0660Y0000R270S0
317/IN_5 U2 -A9 D0315PA00X+061000Y-024600X0660Y0000R270S0
317ED-(U2-PADA10) U2 -A10 D0315PA00X+062000Y-023600X0660Y0000R270S0
317/IN_6 U2 -A11 D0315PA00X+061000Y-023600X0660Y0000R270S0
317ED-(U2-PADA12) U2 -A12 D0315PA00X+062000Y-022600X0660Y0000R270S0
317ED-(U2-PADA13) U2 -A13 D0315PA00X+061000Y-022600X0660Y0000R270S0
317ED-(U2-PADA14) U2 -A14 D0315PA00X+062000Y-021600X0660Y0000R270S0
317ED-(U2-PADA15) U2 -A15 D0315PA00X+061000Y-021600X0660Y0000R270S0
317D-(U2-PADAREF) U2 -AREF D0315PA00X+049000Y-029600X0660Y0000R270S0
317TED-(U2-PADD2) U2 -D2 D0315PA00X+049000Y-027600X0660Y0000R270S0
317TED-(U2-PADD3) U2 -D3 D0315PA00X+048000Y-027600X0660Y0000R270S0
317TED-(U2-PADD4) U2 -D4 D0315PA00X+049000Y-026600X0660Y0000R270S0
317TED-(U2-PADD5) U2 -D5 D0315PA00X+048000Y-026600X0660Y0000R270S0
317TED-(U2-PADD6) U2 -D6 D0315PA00X+049000Y-025600X0660Y0000R270S0
317TED-(U2-PADD7) U2 -D7 D0315PA00X+048000Y-025600X0660Y0000R270S0
317TED-(U2-PADD8) U2 -D8 D0315PA00X+049000Y-024600X0660Y0000R270S0
317TED-(U2-PADD9) U2 -D9 D0315PA00X+048000Y-024600X0660Y0000R270S0
317ED-(U2-PADD10) U2 -D10 D0315PA00X+049000Y-023600X0660Y0000R270S0
317ED-(U2-PADD11) U2 -D11 D0315PA00X+048000Y-023600X0660Y0000R270S0
317ED-(U2-PADD12) U2 -D12 D0315PA00X+049000Y-022600X0660Y0000R270S0
317ED-(U2-PADD13) U2 -D13 D0315PA00X+048000Y-022600X0660Y0000R270S0
317ED-(U2-PADD14) U2 -D14 D0315PA00X+049000Y-021600X0660Y0000R270S0
317ED-(U2-PADD15) U2 -D15 D0315PA00X+048000Y-021600X0660Y0000R270S0
317ED-(U2-PADD16) U2 -D16 D0315PA00X+049000Y-020600X0660Y0000R270S0
317/RF_D U2 -D17 D0315PA00X+048000Y-020600X0660Y0000R270S0
317/LORA_RXD U2 -D18 D0315PA00X+049000Y-019600X0660Y0000R270S0
317/LORA_TXD U2 -D19 D0315PA00X+048000Y-019600X0660Y0000R270S0
317/I2C_SDA U2 -D20 D0315PA00X+049000Y-018600X0660Y0000R270S0
317/I2C_SCL U2 -D21 D0315PA00X+048000Y-018600X0660Y0000R270S0
317ED-(U2-PADD22) U2 -D22 D0315PA00X+049000Y-017600X0660Y0000R270S0
317/BTN1 U2 -D23 D0315PA00X+048000Y-017600X0660Y0000R270S0
317ED-(U2-PADD24) U2 -D24 D0315PA00X+049000Y-016600X0660Y0000R270S0
317/BTN2 U2 -D25 D0315PA00X+048000Y-016600X0660Y0000R270S0
317ED-(U2-PADD26) U2 -D26 D0315PA00X+049000Y-015600X0660Y0000R270S0
317/BTN3 U2 -D27 D0315PA00X+048000Y-015600X0660Y0000R270S0
317ED-(U2-PADD28) U2 -D28 D0315PA00X+049000Y-014600X0660Y0000R270S0
317/BTN4 U2 -D29 D0315PA00X+048000Y-014600X0660Y0000R270S0
317ED-(U2-PADD30) U2 -D30 D0315PA00X+049000Y-013600X0660Y0000R270S0
317/BTN5 U2 -D31 D0315PA00X+048000Y-013600X0660Y0000R270S0
317/RELAY_SIG_B4 U2 -D32 D0315PA00X+062000Y-020600X0660Y0000R270S0
317ED-(U2-PADD33) U2 -D33 D0315PA00X+061000Y-020600X0660Y0000R270S0
317/RELAY_SIG_A4 U2 -D34 D0315PA00X+062000Y-019600X0660Y0000R270S0
317ED-(U2-PADD35) U2 -D35 D0315PA00X+061000Y-019600X0660Y0000R270S0
317/RELAY_SIG_A3 U2 -D36 D0315PA00X+062000Y-018600X0660Y0000R270S0
317ED-(U2-PADD37) U2 -D37 D0315PA00X+061000Y-018600X0660Y0000R270S0
317/RELAY_SIG_B3 U2 -D38 D0315PA00X+062000Y-017600X0660Y0000R270S0
317ED-(U2-PADD39) U2 -D39 D0315PA00X+061000Y-017600X0660Y0000R270S0
317/RELAY_SIG_B2 U2 -D40 D0315PA00X+062000Y-016600X0660Y0000R270S0
317ED-(U2-PADD41) U2 -D41 D0315PA00X+061000Y-016600X0660Y0000R270S0
317/RELAY_SIG_A2 U2 -D42 D0315PA00X+062000Y-015600X0660Y0000R270S0
317ED-(U2-PADD43) U2 -D43 D0315PA00X+061000Y-015600X0660Y0000R270S0
317/RELAY_SIG_B1 U2 -D44 D0315PA00X+062000Y-014600X0660Y0000R270S0
317ED-(U2-PADD45) U2 -D45 D0315PA00X+061000Y-014600X0660Y0000R270S0
317/RELAY_SIG_A1 U2 -D46 D0315PA00X+062000Y-013600X0660Y0000R270S0
317ED-(U2-PADD47) U2 -D47 D0315PA00X+061000Y-013600X0660Y0000R270S0
317ED-(U2-PADD48) U2 -D48 D0315PA00X+060000Y-013600X0660Y0000R270S0
317ED-(U2-PADD49) U2 -D49 D0315PA00X+060000Y-014600X0660Y0000R270S0
317ED-(U2-PADD50) U2 -D50 D0315PA00X+059000Y-013600X0660Y0000R270S0
317ED-(U2-PADD51) U2 -D51 D0315PA00X+059000Y-014600X0660Y0000R270S0
317ED-(U2-PADD52) U2 -D52 D0315PA00X+058000Y-013600X0660Y0000R270S0
317ED-(U2-PADD53) U2 -D53 D0315PA00X+058000Y-014600X0660Y0000R270S0
317GND U2 -GND_ D0315PA00X+048000Y-032600X0660Y0000R270S0
317GND U2 -GND_ D0315PA00X+049000Y-032600X0660Y0000R270S0
317ED-(U2-PADRST) U2 -RST D0315PA00X+048000Y-029600X0660Y0000R270S0
317TED-(U2-PADRX) U2 -RX D0315PA00X+049000Y-028600X0660Y0000R270S0
317TED-(U2-PADTX) U2 -TX D0315PA00X+048000Y-028600X0660Y0000R270S0
317-VIN-PADVIN_1) U2 -VIN_ D0315PA00X+048000Y-033600X0660Y0000R270S0
317-VIN-PADVIN_1) U2 -VIN_ D0315PA00X+049000Y-033600X0660Y0000R270S0
367N/C J5 D1350UA00X+040159Y-051265X1350Y0000R090S0
367N/C J5 D1350UA00X+031600Y-051265X1350Y0000R090S0
367N/C J5 D1350UA00X+040159Y-059667X1350Y0000R090S0
367N/C J5 D1350UA00X+031600Y-059667X1350Y0000R090S0
317GND J5 -1 D0709PA00X+034139Y-057257X1181Y0000R090S0
317/O_A4 J5 -2 D0709PA00X+035880Y-057257X1181Y0000R090S0
317/O_B4 J5 -3 D0709PA00X+037620Y-057257X1181Y0000R090S0
317/O_B3 J5 -4 D0709PA00X+037620Y-053674X1181Y0000R090S0
317/O_A3 J5 -5 D0709PA00X+035880Y-053674X1181Y0000R090S0
317GND J5 -6 D0709PA00X+034139Y-053674X1181Y0000R090S0
999

View File

@@ -0,0 +1,73 @@
Designator,Mid X,Mid Y,Rotation,Layer
C1,123.952,-102.342,90.0,top
C2,115.57,-76.946,90.0,top
C3,85.576856,-63.5,180.0,top
C4,94.254,-63.5,180.0,top
DA1,159.062,-121.158,270.0,top
DA2,148.786,-121.158,270.0,top
DA3,118.306,-121.158,270.0,top
DA4,113.226,-121.158,270.0,top
DB1,153.924,-121.158,270.0,top
DB2,143.706,-121.158,270.0,top
DB3,123.328,-121.148,270.0,top
DB4,108.204,-121.12023,270.0,top
J1,107.188,-107.696,90.0,top
J2,98.044,-107.696,90.0,top
J3,88.9,-107.696,90.0,top
J5,91.134,-140.883,270.0,bottom
J_433MHZ1,73.66,-69.342,180.0,top
J_BTN1,111.76,-38.1,180.0,top
J_BTN2,104.902,-38.1,180.0,top
J_BTN3,98.044,-38.12,180.0,top
J_BTN4,91.186,-38.1,180.0,top
J_BTN5,84.328,-38.1,180.0,top
J_GND1,75.692,-116.84,0.0,top
J_GND2,87.376,-116.84,0.0,top
J_GND3,99.06,-116.84,0.0,top
J_INPUT1,98.018,-94.002,90.0,bottom
J_LCD1,74.93,-38.12,180.0,top
J_LORA1,90.424,-70.612,270.0,top
J_O_A1,161.486,-154.178,0.0,top
J_O_A2,161.486,-136.817,0.0,top
J_O_B1,161.544,-145.542,0.0,top
J_O_B2,161.486,-128.181,0.0,top
J_PWR1,131.572,-110.49,180.0,top
J_RTC1,80.264,-52.329,0.0,top
KA1,148.82,-154.013,180.0,top
KA2,148.82,-136.652,180.0,top
KA3,118.646,-136.652,0.0,top
KA4,118.646,-145.288,0.0,top
KB1,148.878,-145.377,180.0,top
KB2,148.82,-128.016,180.0,top
KB3,118.646,-128.016,0.0,top
KB4,118.646,-153.924,0.0,top
QA1,159.062,-114.3,270.0,top
QA2,148.786,-114.3,270.0,top
QA3,118.306,-114.3,270.0,top
QA4,113.226,-114.3,270.0,top
QB1,153.924,-114.3,270.0,top
QB2,143.706,-114.3,270.0,top
QB3,123.328,-114.29,270.0,top
QB4,108.204,-114.29,270.0,top
R1,94.234,-55.372,180.0,top
R10,145.288,-69.394,180.0,top
R11,145.288,-66.244,180.0,top
R12,145.288,-63.094,180.0,top
R13,145.288,-59.944,180.0,top
R14,145.288,-56.794,180.0,top
R15,84.328,-46.736,90.0,top
R2,94.234,-58.42,0.0,top
R3,111.76,-46.756,90.0,top
R4,104.902,-46.756,90.0,top
R5,98.044,-46.776,90.0,top
R6,91.186,-46.756,90.0,top
R7,154.432,-82.296,90.0,top
R8,157.48,-82.296,270.0,top
R9,145.288,-72.544,180.0,top
RN1,160.274,-47.244,90.0,top
U1,135.763,-95.758,90.0,top
U2,139.7,-59.944,90.0,bottom
X1,138.684,-144.78,270.0,top
X2,138.684,-123.954,270.0,top
X3,129.54,-125.986,270.0,top
X4,129.54,-146.81,270.0,top
1 Designator Mid X Mid Y Rotation Layer
2 C1 123.952 -102.342 90.0 top
3 C2 115.57 -76.946 90.0 top
4 C3 85.576856 -63.5 180.0 top
5 C4 94.254 -63.5 180.0 top
6 DA1 159.062 -121.158 270.0 top
7 DA2 148.786 -121.158 270.0 top
8 DA3 118.306 -121.158 270.0 top
9 DA4 113.226 -121.158 270.0 top
10 DB1 153.924 -121.158 270.0 top
11 DB2 143.706 -121.158 270.0 top
12 DB3 123.328 -121.148 270.0 top
13 DB4 108.204 -121.12023 270.0 top
14 J1 107.188 -107.696 90.0 top
15 J2 98.044 -107.696 90.0 top
16 J3 88.9 -107.696 90.0 top
17 J5 91.134 -140.883 270.0 bottom
18 J_433MHZ1 73.66 -69.342 180.0 top
19 J_BTN1 111.76 -38.1 180.0 top
20 J_BTN2 104.902 -38.1 180.0 top
21 J_BTN3 98.044 -38.12 180.0 top
22 J_BTN4 91.186 -38.1 180.0 top
23 J_BTN5 84.328 -38.1 180.0 top
24 J_GND1 75.692 -116.84 0.0 top
25 J_GND2 87.376 -116.84 0.0 top
26 J_GND3 99.06 -116.84 0.0 top
27 J_INPUT1 98.018 -94.002 90.0 bottom
28 J_LCD1 74.93 -38.12 180.0 top
29 J_LORA1 90.424 -70.612 270.0 top
30 J_O_A1 161.486 -154.178 0.0 top
31 J_O_A2 161.486 -136.817 0.0 top
32 J_O_B1 161.544 -145.542 0.0 top
33 J_O_B2 161.486 -128.181 0.0 top
34 J_PWR1 131.572 -110.49 180.0 top
35 J_RTC1 80.264 -52.329 0.0 top
36 KA1 148.82 -154.013 180.0 top
37 KA2 148.82 -136.652 180.0 top
38 KA3 118.646 -136.652 0.0 top
39 KA4 118.646 -145.288 0.0 top
40 KB1 148.878 -145.377 180.0 top
41 KB2 148.82 -128.016 180.0 top
42 KB3 118.646 -128.016 0.0 top
43 KB4 118.646 -153.924 0.0 top
44 QA1 159.062 -114.3 270.0 top
45 QA2 148.786 -114.3 270.0 top
46 QA3 118.306 -114.3 270.0 top
47 QA4 113.226 -114.3 270.0 top
48 QB1 153.924 -114.3 270.0 top
49 QB2 143.706 -114.3 270.0 top
50 QB3 123.328 -114.29 270.0 top
51 QB4 108.204 -114.29 270.0 top
52 R1 94.234 -55.372 180.0 top
53 R10 145.288 -69.394 180.0 top
54 R11 145.288 -66.244 180.0 top
55 R12 145.288 -63.094 180.0 top
56 R13 145.288 -59.944 180.0 top
57 R14 145.288 -56.794 180.0 top
58 R15 84.328 -46.736 90.0 top
59 R2 94.234 -58.42 0.0 top
60 R3 111.76 -46.756 90.0 top
61 R4 104.902 -46.756 90.0 top
62 R5 98.044 -46.776 90.0 top
63 R6 91.186 -46.756 90.0 top
64 R7 154.432 -82.296 90.0 top
65 R8 157.48 -82.296 270.0 top
66 R9 145.288 -72.544 180.0 top
67 RN1 160.274 -47.244 90.0 top
68 U1 135.763 -95.758 90.0 top
69 U2 139.7 -59.944 90.0 bottom
70 X1 138.684 -144.78 270.0 top
71 X2 138.684 -123.954 270.0 top
72 X3 129.54 -125.986 270.0 top
73 X4 129.54 -146.81 270.0 top