├── images ├── schematic.png ├── pcb_layout.png └── pcb_3d_render.png ├── .gitignore ├── README.md ├── LICENSE.md ├── kicad-max15062-breakout.kicad_pro ├── kicad-max15062-breakout.kicad_sch └── kicad-max15062-breakout.kicad_pcb /images/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njh/kicad-max15062-breakout/main/images/schematic.png -------------------------------------------------------------------------------- /images/pcb_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njh/kicad-max15062-breakout/main/images/pcb_layout.png -------------------------------------------------------------------------------- /images/pcb_3d_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njh/kicad-max15062-breakout/main/images/pcb_3d_render.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # KiCAD temporary and backup files 2 | *.bak 3 | *.bck 4 | *.kicad_pcb-bak 5 | *.kicad_sch-bak 6 | *-backups/ 7 | *.kicad_prl 8 | *.sch-bak 9 | *.tmp 10 | *-save.pro 11 | *-save.kicad_pcb 12 | fp-info-cache 13 | ~*.lck 14 | _autosave-* 15 | 16 | # KiCAD search path cache (can be regenerated) 17 | sym-lib-table.cache 18 | fp-lib-table.cache 19 | 20 | # Files generated by jlcpcb plugin for manufacture 21 | /jlcpcb/ 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | MAX15062 Breakout 2 | ================= 3 | 4 | This KiCad project provides an open-source breakout board for the [MAX15062](https://www.analog.com/en/products/max15062.html) high-efficiency, high-voltage, synchronous step-down DC-DC converter IC. The board is designed to deliver up to **300mA at 3.3V** from input voltages as high as 60V. 5 | 6 | 7 | Schematic 8 | --------- 9 | 10 | Schematic of MAX15062 breakout board 11 | 12 | 13 | PCB Layout 14 | ---------- 15 | 16 | 3D render of MAX15062 breakout board 17 | 18 | PCB Layout of MAX15062 breakout board 19 | 20 | 21 | KiCad Version 22 | ------------- 23 | 24 | Created with **KiCad 9.0.1** 25 | 26 | 27 | License 28 | ------- 29 | 30 | This project is licensed under the [MIT License](LICENSE.md). 31 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright (c) 2025 Nicholas Humfrey 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | -------------------------------------------------------------------------------- /kicad-max15062-breakout.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "apply_defaults_to_fp_fields": false, 7 | "apply_defaults_to_fp_shapes": false, 8 | "apply_defaults_to_fp_text": false, 9 | "board_outline_line_width": 0.05, 10 | "copper_line_width": 0.2, 11 | "copper_text_italic": false, 12 | "copper_text_size_h": 1.5, 13 | "copper_text_size_v": 1.5, 14 | "copper_text_thickness": 0.3, 15 | "copper_text_upright": false, 16 | "courtyard_line_width": 0.05, 17 | "dimension_precision": 4, 18 | "dimension_units": 3, 19 | "dimensions": { 20 | "arrow_length": 1270000, 21 | "extension_offset": 500000, 22 | "keep_text_aligned": true, 23 | "suppress_zeroes": true, 24 | "text_position": 0, 25 | "units_format": 0 26 | }, 27 | "fab_line_width": 0.1, 28 | "fab_text_italic": false, 29 | "fab_text_size_h": 1.0, 30 | "fab_text_size_v": 1.0, 31 | "fab_text_thickness": 0.15, 32 | "fab_text_upright": false, 33 | "other_line_width": 0.1, 34 | "other_text_italic": false, 35 | "other_text_size_h": 1.0, 36 | "other_text_size_v": 1.0, 37 | "other_text_thickness": 0.15, 38 | "other_text_upright": false, 39 | "pads": { 40 | "drill": 0.8, 41 | "height": 1.27, 42 | "width": 2.54 43 | }, 44 | "silk_line_width": 0.1, 45 | "silk_text_italic": false, 46 | "silk_text_size_h": 1.0, 47 | "silk_text_size_v": 1.0, 48 | "silk_text_thickness": 0.1, 49 | "silk_text_upright": false, 50 | "zones": { 51 | "min_clearance": 0.5 52 | } 53 | }, 54 | "diff_pair_dimensions": [ 55 | { 56 | "gap": 0.0, 57 | "via_gap": 0.0, 58 | "width": 0.0 59 | } 60 | ], 61 | "drc_exclusions": [], 62 | "meta": { 63 | "version": 2 64 | }, 65 | "rule_severities": { 66 | "annular_width": "error", 67 | "clearance": "error", 68 | "connection_width": "warning", 69 | "copper_edge_clearance": "error", 70 | "copper_sliver": "warning", 71 | "courtyards_overlap": "error", 72 | "creepage": "error", 73 | "diff_pair_gap_out_of_range": "error", 74 | "diff_pair_uncoupled_length_too_long": "error", 75 | "drill_out_of_range": "error", 76 | "duplicate_footprints": "warning", 77 | "extra_footprint": "warning", 78 | "footprint": "error", 79 | "footprint_filters_mismatch": "ignore", 80 | "footprint_symbol_mismatch": "warning", 81 | "footprint_type_mismatch": "ignore", 82 | "hole_clearance": "error", 83 | "hole_to_hole": "warning", 84 | "holes_co_located": "warning", 85 | "invalid_outline": "error", 86 | "isolated_copper": "warning", 87 | "item_on_disabled_layer": "error", 88 | "items_not_allowed": "error", 89 | "length_out_of_range": "error", 90 | "lib_footprint_issues": "warning", 91 | "lib_footprint_mismatch": "warning", 92 | "malformed_courtyard": "error", 93 | "microvia_drill_out_of_range": "error", 94 | "mirrored_text_on_front_layer": "warning", 95 | "missing_courtyard": "ignore", 96 | "missing_footprint": "warning", 97 | "net_conflict": "warning", 98 | "nonmirrored_text_on_back_layer": "warning", 99 | "npth_inside_courtyard": "ignore", 100 | "padstack": "warning", 101 | "pth_inside_courtyard": "ignore", 102 | "shorting_items": "error", 103 | "silk_edge_clearance": "warning", 104 | "silk_over_copper": "warning", 105 | "silk_overlap": "warning", 106 | "skew_out_of_range": "error", 107 | "solder_mask_bridge": "error", 108 | "starved_thermal": "error", 109 | "text_height": "warning", 110 | "text_on_edge_cuts": "error", 111 | "text_thickness": "warning", 112 | "through_hole_pad_without_hole": "error", 113 | "too_many_vias": "error", 114 | "track_angle": "error", 115 | "track_dangling": "warning", 116 | "track_segment_length": "error", 117 | "track_width": "error", 118 | "tracks_crossing": "error", 119 | "unconnected_items": "error", 120 | "unresolved_variable": "error", 121 | "via_dangling": "warning", 122 | "zones_intersect": "error" 123 | }, 124 | "rules": { 125 | "max_error": 0.005, 126 | "min_clearance": 0.0, 127 | "min_connection": 0.0, 128 | "min_copper_edge_clearance": 0.5, 129 | "min_groove_width": 0.0, 130 | "min_hole_clearance": 0.25, 131 | "min_hole_to_hole": 0.25, 132 | "min_microvia_diameter": 0.2, 133 | "min_microvia_drill": 0.1, 134 | "min_resolved_spokes": 2, 135 | "min_silk_clearance": 0.0, 136 | "min_text_height": 0.8, 137 | "min_text_thickness": 0.08, 138 | "min_through_hole_diameter": 0.3, 139 | "min_track_width": 0.0, 140 | "min_via_annular_width": 0.1, 141 | "min_via_diameter": 0.5, 142 | "solder_mask_to_copper_clearance": 0.0, 143 | "use_height_for_length_calcs": true 144 | }, 145 | "teardrop_options": [ 146 | { 147 | "td_onpthpad": true, 148 | "td_onroundshapesonly": false, 149 | "td_onsmdpad": true, 150 | "td_ontrackend": false, 151 | "td_onvia": true 152 | } 153 | ], 154 | "teardrop_parameters": [ 155 | { 156 | "td_allow_use_two_tracks": true, 157 | "td_curve_segcount": 0, 158 | "td_height_ratio": 1.0, 159 | "td_length_ratio": 0.5, 160 | "td_maxheight": 2.0, 161 | "td_maxlen": 1.0, 162 | "td_on_pad_in_zone": false, 163 | "td_target_name": "td_round_shape", 164 | "td_width_to_size_filter_ratio": 0.9 165 | }, 166 | { 167 | "td_allow_use_two_tracks": true, 168 | "td_curve_segcount": 0, 169 | "td_height_ratio": 1.0, 170 | "td_length_ratio": 0.5, 171 | "td_maxheight": 2.0, 172 | "td_maxlen": 1.0, 173 | "td_on_pad_in_zone": false, 174 | "td_target_name": "td_rect_shape", 175 | "td_width_to_size_filter_ratio": 0.9 176 | }, 177 | { 178 | "td_allow_use_two_tracks": true, 179 | "td_curve_segcount": 0, 180 | "td_height_ratio": 1.0, 181 | "td_length_ratio": 0.5, 182 | "td_maxheight": 2.0, 183 | "td_maxlen": 1.0, 184 | "td_on_pad_in_zone": false, 185 | "td_target_name": "td_track_end", 186 | "td_width_to_size_filter_ratio": 0.9 187 | } 188 | ], 189 | "track_widths": [ 190 | 0.0, 191 | 0.3 192 | ], 193 | "tuning_pattern_settings": { 194 | "diff_pair_defaults": { 195 | "corner_radius_percentage": 80, 196 | "corner_style": 1, 197 | "max_amplitude": 1.0, 198 | "min_amplitude": 0.2, 199 | "single_sided": false, 200 | "spacing": 1.0 201 | }, 202 | "diff_pair_skew_defaults": { 203 | "corner_radius_percentage": 80, 204 | "corner_style": 1, 205 | "max_amplitude": 1.0, 206 | "min_amplitude": 0.2, 207 | "single_sided": false, 208 | "spacing": 0.6 209 | }, 210 | "single_track_defaults": { 211 | "corner_radius_percentage": 80, 212 | "corner_style": 1, 213 | "max_amplitude": 1.0, 214 | "min_amplitude": 0.2, 215 | "single_sided": false, 216 | "spacing": 0.6 217 | } 218 | }, 219 | "via_dimensions": [ 220 | { 221 | "diameter": 0.0, 222 | "drill": 0.0 223 | } 224 | ], 225 | "zones_allow_external_fillets": false 226 | }, 227 | "ipc2581": { 228 | "dist": "", 229 | "distpn": "", 230 | "internal_id": "", 231 | "mfg": "", 232 | "mpn": "" 233 | }, 234 | "layer_pairs": [], 235 | "layer_presets": [], 236 | "viewports": [] 237 | }, 238 | "boards": [], 239 | "cvpcb": { 240 | "equivalence_files": [] 241 | }, 242 | "erc": { 243 | "erc_exclusions": [], 244 | "meta": { 245 | "version": 0 246 | }, 247 | "pin_map": [ 248 | [ 249 | 0, 250 | 0, 251 | 0, 252 | 0, 253 | 0, 254 | 0, 255 | 1, 256 | 0, 257 | 0, 258 | 0, 259 | 0, 260 | 2 261 | ], 262 | [ 263 | 0, 264 | 2, 265 | 0, 266 | 1, 267 | 0, 268 | 0, 269 | 1, 270 | 0, 271 | 2, 272 | 2, 273 | 2, 274 | 2 275 | ], 276 | [ 277 | 0, 278 | 0, 279 | 0, 280 | 0, 281 | 0, 282 | 0, 283 | 1, 284 | 0, 285 | 1, 286 | 0, 287 | 1, 288 | 2 289 | ], 290 | [ 291 | 0, 292 | 1, 293 | 0, 294 | 0, 295 | 0, 296 | 0, 297 | 1, 298 | 1, 299 | 2, 300 | 1, 301 | 1, 302 | 2 303 | ], 304 | [ 305 | 0, 306 | 0, 307 | 0, 308 | 0, 309 | 0, 310 | 0, 311 | 1, 312 | 0, 313 | 0, 314 | 0, 315 | 0, 316 | 2 317 | ], 318 | [ 319 | 0, 320 | 0, 321 | 0, 322 | 0, 323 | 0, 324 | 0, 325 | 0, 326 | 0, 327 | 0, 328 | 0, 329 | 0, 330 | 2 331 | ], 332 | [ 333 | 1, 334 | 1, 335 | 1, 336 | 1, 337 | 1, 338 | 0, 339 | 1, 340 | 1, 341 | 1, 342 | 1, 343 | 1, 344 | 2 345 | ], 346 | [ 347 | 0, 348 | 0, 349 | 0, 350 | 1, 351 | 0, 352 | 0, 353 | 1, 354 | 0, 355 | 0, 356 | 0, 357 | 0, 358 | 2 359 | ], 360 | [ 361 | 0, 362 | 2, 363 | 1, 364 | 2, 365 | 0, 366 | 0, 367 | 1, 368 | 0, 369 | 2, 370 | 2, 371 | 2, 372 | 2 373 | ], 374 | [ 375 | 0, 376 | 2, 377 | 0, 378 | 1, 379 | 0, 380 | 0, 381 | 1, 382 | 0, 383 | 2, 384 | 0, 385 | 0, 386 | 2 387 | ], 388 | [ 389 | 0, 390 | 2, 391 | 1, 392 | 1, 393 | 0, 394 | 0, 395 | 1, 396 | 0, 397 | 2, 398 | 0, 399 | 0, 400 | 2 401 | ], 402 | [ 403 | 2, 404 | 2, 405 | 2, 406 | 2, 407 | 2, 408 | 2, 409 | 2, 410 | 2, 411 | 2, 412 | 2, 413 | 2, 414 | 2 415 | ] 416 | ], 417 | "rule_severities": { 418 | "bus_definition_conflict": "error", 419 | "bus_entry_needed": "error", 420 | "bus_to_bus_conflict": "error", 421 | "bus_to_net_conflict": "error", 422 | "different_unit_footprint": "error", 423 | "different_unit_net": "error", 424 | "duplicate_reference": "error", 425 | "duplicate_sheet_names": "error", 426 | "endpoint_off_grid": "warning", 427 | "extra_units": "error", 428 | "footprint_filter": "ignore", 429 | "footprint_link_issues": "warning", 430 | "four_way_junction": "ignore", 431 | "global_label_dangling": "warning", 432 | "hier_label_mismatch": "error", 433 | "label_dangling": "error", 434 | "label_multiple_wires": "warning", 435 | "lib_symbol_issues": "warning", 436 | "lib_symbol_mismatch": "warning", 437 | "missing_bidi_pin": "warning", 438 | "missing_input_pin": "warning", 439 | "missing_power_pin": "error", 440 | "missing_unit": "warning", 441 | "multiple_net_names": "warning", 442 | "net_not_bus_member": "warning", 443 | "no_connect_connected": "warning", 444 | "no_connect_dangling": "warning", 445 | "pin_not_connected": "error", 446 | "pin_not_driven": "error", 447 | "pin_to_pin": "warning", 448 | "power_pin_not_driven": "error", 449 | "same_local_global_label": "warning", 450 | "similar_label_and_power": "warning", 451 | "similar_labels": "warning", 452 | "similar_power": "warning", 453 | "simulation_model_issue": "ignore", 454 | "single_global_label": "ignore", 455 | "unannotated": "error", 456 | "unconnected_wire_endpoint": "warning", 457 | "unit_value_mismatch": "error", 458 | "unresolved_variable": "error", 459 | "wire_dangling": "error" 460 | } 461 | }, 462 | "libraries": { 463 | "pinned_footprint_libs": [], 464 | "pinned_symbol_libs": [] 465 | }, 466 | "meta": { 467 | "filename": "kicad-max15062-breakout.kicad_pro", 468 | "version": 3 469 | }, 470 | "net_settings": { 471 | "classes": [ 472 | { 473 | "bus_width": 12, 474 | "clearance": 0.2, 475 | "diff_pair_gap": 0.25, 476 | "diff_pair_via_gap": 0.25, 477 | "diff_pair_width": 0.2, 478 | "line_style": 0, 479 | "microvia_diameter": 0.3, 480 | "microvia_drill": 0.1, 481 | "name": "Default", 482 | "pcb_color": "rgba(0, 0, 0, 0.000)", 483 | "priority": 2147483647, 484 | "schematic_color": "rgba(0, 0, 0, 0.000)", 485 | "track_width": 0.2, 486 | "via_diameter": 0.6, 487 | "via_drill": 0.3, 488 | "wire_width": 6 489 | } 490 | ], 491 | "meta": { 492 | "version": 4 493 | }, 494 | "net_colors": null, 495 | "netclass_assignments": null, 496 | "netclass_patterns": [] 497 | }, 498 | "pcbnew": { 499 | "last_paths": { 500 | "gencad": "", 501 | "idf": "", 502 | "netlist": "", 503 | "plot": "jlcpcb-gerbers/", 504 | "pos_files": "jlcpcb-gerbers/", 505 | "specctra_dsn": "", 506 | "step": "", 507 | "svg": "", 508 | "vrml": "" 509 | }, 510 | "page_layout_descr_file": "" 511 | }, 512 | "schematic": { 513 | "annotate_start_num": 0, 514 | "bom_export_filename": "${PROJECTNAME}.csv", 515 | "bom_fmt_presets": [], 516 | "bom_fmt_settings": { 517 | "field_delimiter": ",", 518 | "keep_line_breaks": false, 519 | "keep_tabs": false, 520 | "name": "CSV", 521 | "ref_delimiter": ",", 522 | "ref_range_delimiter": "", 523 | "string_delimiter": "\"" 524 | }, 525 | "bom_presets": [], 526 | "bom_settings": { 527 | "exclude_dnp": false, 528 | "fields_ordered": [ 529 | { 530 | "group_by": false, 531 | "label": "Reference", 532 | "name": "Reference", 533 | "show": true 534 | }, 535 | { 536 | "group_by": true, 537 | "label": "Value", 538 | "name": "Value", 539 | "show": true 540 | }, 541 | { 542 | "group_by": true, 543 | "label": "Footprint", 544 | "name": "Footprint", 545 | "show": true 546 | }, 547 | { 548 | "group_by": false, 549 | "label": "Datasheet", 550 | "name": "Datasheet", 551 | "show": false 552 | }, 553 | { 554 | "group_by": false, 555 | "label": "Description", 556 | "name": "Description", 557 | "show": false 558 | }, 559 | { 560 | "group_by": false, 561 | "label": "Qty", 562 | "name": "${QUANTITY}", 563 | "show": true 564 | }, 565 | { 566 | "group_by": false, 567 | "label": "#", 568 | "name": "${ITEM_NUMBER}", 569 | "show": false 570 | }, 571 | { 572 | "group_by": true, 573 | "label": "DNP", 574 | "name": "${DNP}", 575 | "show": true 576 | }, 577 | { 578 | "group_by": true, 579 | "label": "Exclude from BOM", 580 | "name": "${EXCLUDE_FROM_BOM}", 581 | "show": true 582 | }, 583 | { 584 | "group_by": true, 585 | "label": "Exclude from Board", 586 | "name": "${EXCLUDE_FROM_BOARD}", 587 | "show": true 588 | }, 589 | { 590 | "group_by": true, 591 | "label": "LCSC", 592 | "name": "LCSC", 593 | "show": true 594 | } 595 | ], 596 | "filter_string": "", 597 | "group_symbols": true, 598 | "include_excluded_from_bom": true, 599 | "name": "", 600 | "sort_asc": true, 601 | "sort_field": "LCSC" 602 | }, 603 | "connection_grid_size": 50.0, 604 | "drawing": { 605 | "dashed_lines_dash_length_ratio": 12.0, 606 | "dashed_lines_gap_length_ratio": 3.0, 607 | "default_line_thickness": 6.0, 608 | "default_text_size": 50.0, 609 | "field_names": [], 610 | "intersheets_ref_own_page": false, 611 | "intersheets_ref_prefix": "", 612 | "intersheets_ref_short": false, 613 | "intersheets_ref_show": false, 614 | "intersheets_ref_suffix": "", 615 | "junction_size_choice": 3, 616 | "label_size_ratio": 0.375, 617 | "operating_point_overlay_i_precision": 3, 618 | "operating_point_overlay_i_range": "~A", 619 | "operating_point_overlay_v_precision": 3, 620 | "operating_point_overlay_v_range": "~V", 621 | "overbar_offset_ratio": 1.23, 622 | "pin_symbol_size": 25.0, 623 | "text_offset_ratio": 0.15 624 | }, 625 | "legacy_lib_dir": "", 626 | "legacy_lib_list": [], 627 | "meta": { 628 | "version": 1 629 | }, 630 | "net_format_name": "", 631 | "page_layout_descr_file": "", 632 | "plot_directory": "", 633 | "space_save_all_events": true, 634 | "spice_current_sheet_as_root": false, 635 | "spice_external_command": "spice \"%I\"", 636 | "spice_model_current_sheet_as_root": true, 637 | "spice_save_all_currents": false, 638 | "spice_save_all_dissipations": false, 639 | "spice_save_all_voltages": false, 640 | "subpart_first_id": 65, 641 | "subpart_id_separator": 0 642 | }, 643 | "sheets": [ 644 | [ 645 | "8ac06a75-cb1a-4ec7-ad05-a159880d696b", 646 | "Root" 647 | ] 648 | ], 649 | "text_variables": {} 650 | } 651 | -------------------------------------------------------------------------------- /kicad-max15062-breakout.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch 2 | (version 20250114) 3 | (generator "eeschema") 4 | (generator_version "9.0") 5 | (uuid "8ac06a75-cb1a-4ec7-ad05-a159880d696b") 6 | (paper "A4") 7 | (lib_symbols 8 | (symbol "Connector:Screw_Terminal_01x02" 9 | (pin_names 10 | (offset 1.016) 11 | (hide yes) 12 | ) 13 | (exclude_from_sim no) 14 | (in_bom yes) 15 | (on_board yes) 16 | (property "Reference" "J" 17 | (at 0 2.54 0) 18 | (effects 19 | (font 20 | (size 1.27 1.27) 21 | ) 22 | ) 23 | ) 24 | (property "Value" "Screw_Terminal_01x02" 25 | (at 0 -5.08 0) 26 | (effects 27 | (font 28 | (size 1.27 1.27) 29 | ) 30 | ) 31 | ) 32 | (property "Footprint" "" 33 | (at 0 0 0) 34 | (effects 35 | (font 36 | (size 1.27 1.27) 37 | ) 38 | (hide yes) 39 | ) 40 | ) 41 | (property "Datasheet" "~" 42 | (at 0 0 0) 43 | (effects 44 | (font 45 | (size 1.27 1.27) 46 | ) 47 | (hide yes) 48 | ) 49 | ) 50 | (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" 51 | (at 0 0 0) 52 | (effects 53 | (font 54 | (size 1.27 1.27) 55 | ) 56 | (hide yes) 57 | ) 58 | ) 59 | (property "ki_keywords" "screw terminal" 60 | (at 0 0 0) 61 | (effects 62 | (font 63 | (size 1.27 1.27) 64 | ) 65 | (hide yes) 66 | ) 67 | ) 68 | (property "ki_fp_filters" "TerminalBlock*:*" 69 | (at 0 0 0) 70 | (effects 71 | (font 72 | (size 1.27 1.27) 73 | ) 74 | (hide yes) 75 | ) 76 | ) 77 | (symbol "Screw_Terminal_01x02_1_1" 78 | (rectangle 79 | (start -1.27 1.27) 80 | (end 1.27 -3.81) 81 | (stroke 82 | (width 0.254) 83 | (type default) 84 | ) 85 | (fill 86 | (type background) 87 | ) 88 | ) 89 | (polyline 90 | (pts 91 | (xy -0.5334 0.3302) (xy 0.3302 -0.508) 92 | ) 93 | (stroke 94 | (width 0.1524) 95 | (type default) 96 | ) 97 | (fill 98 | (type none) 99 | ) 100 | ) 101 | (polyline 102 | (pts 103 | (xy -0.5334 -2.2098) (xy 0.3302 -3.048) 104 | ) 105 | (stroke 106 | (width 0.1524) 107 | (type default) 108 | ) 109 | (fill 110 | (type none) 111 | ) 112 | ) 113 | (polyline 114 | (pts 115 | (xy -0.3556 0.508) (xy 0.508 -0.3302) 116 | ) 117 | (stroke 118 | (width 0.1524) 119 | (type default) 120 | ) 121 | (fill 122 | (type none) 123 | ) 124 | ) 125 | (polyline 126 | (pts 127 | (xy -0.3556 -2.032) (xy 0.508 -2.8702) 128 | ) 129 | (stroke 130 | (width 0.1524) 131 | (type default) 132 | ) 133 | (fill 134 | (type none) 135 | ) 136 | ) 137 | (circle 138 | (center 0 0) 139 | (radius 0.635) 140 | (stroke 141 | (width 0.1524) 142 | (type default) 143 | ) 144 | (fill 145 | (type none) 146 | ) 147 | ) 148 | (circle 149 | (center 0 -2.54) 150 | (radius 0.635) 151 | (stroke 152 | (width 0.1524) 153 | (type default) 154 | ) 155 | (fill 156 | (type none) 157 | ) 158 | ) 159 | (pin passive line 160 | (at -5.08 0 0) 161 | (length 3.81) 162 | (name "Pin_1" 163 | (effects 164 | (font 165 | (size 1.27 1.27) 166 | ) 167 | ) 168 | ) 169 | (number "1" 170 | (effects 171 | (font 172 | (size 1.27 1.27) 173 | ) 174 | ) 175 | ) 176 | ) 177 | (pin passive line 178 | (at -5.08 -2.54 0) 179 | (length 3.81) 180 | (name "Pin_2" 181 | (effects 182 | (font 183 | (size 1.27 1.27) 184 | ) 185 | ) 186 | ) 187 | (number "2" 188 | (effects 189 | (font 190 | (size 1.27 1.27) 191 | ) 192 | ) 193 | ) 194 | ) 195 | ) 196 | (embedded_fonts no) 197 | ) 198 | (symbol "Connector_Generic:Conn_01x02" 199 | (pin_names 200 | (offset 1.016) 201 | (hide yes) 202 | ) 203 | (exclude_from_sim no) 204 | (in_bom yes) 205 | (on_board yes) 206 | (property "Reference" "J" 207 | (at 0 2.54 0) 208 | (effects 209 | (font 210 | (size 1.27 1.27) 211 | ) 212 | ) 213 | ) 214 | (property "Value" "Conn_01x02" 215 | (at 0 -5.08 0) 216 | (effects 217 | (font 218 | (size 1.27 1.27) 219 | ) 220 | ) 221 | ) 222 | (property "Footprint" "" 223 | (at 0 0 0) 224 | (effects 225 | (font 226 | (size 1.27 1.27) 227 | ) 228 | (hide yes) 229 | ) 230 | ) 231 | (property "Datasheet" "~" 232 | (at 0 0 0) 233 | (effects 234 | (font 235 | (size 1.27 1.27) 236 | ) 237 | (hide yes) 238 | ) 239 | ) 240 | (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" 241 | (at 0 0 0) 242 | (effects 243 | (font 244 | (size 1.27 1.27) 245 | ) 246 | (hide yes) 247 | ) 248 | ) 249 | (property "ki_keywords" "connector" 250 | (at 0 0 0) 251 | (effects 252 | (font 253 | (size 1.27 1.27) 254 | ) 255 | (hide yes) 256 | ) 257 | ) 258 | (property "ki_fp_filters" "Connector*:*_1x??_*" 259 | (at 0 0 0) 260 | (effects 261 | (font 262 | (size 1.27 1.27) 263 | ) 264 | (hide yes) 265 | ) 266 | ) 267 | (symbol "Conn_01x02_1_1" 268 | (rectangle 269 | (start -1.27 1.27) 270 | (end 1.27 -3.81) 271 | (stroke 272 | (width 0.254) 273 | (type default) 274 | ) 275 | (fill 276 | (type background) 277 | ) 278 | ) 279 | (rectangle 280 | (start -1.27 0.127) 281 | (end 0 -0.127) 282 | (stroke 283 | (width 0.1524) 284 | (type default) 285 | ) 286 | (fill 287 | (type none) 288 | ) 289 | ) 290 | (rectangle 291 | (start -1.27 -2.413) 292 | (end 0 -2.667) 293 | (stroke 294 | (width 0.1524) 295 | (type default) 296 | ) 297 | (fill 298 | (type none) 299 | ) 300 | ) 301 | (pin passive line 302 | (at -5.08 0 0) 303 | (length 3.81) 304 | (name "Pin_1" 305 | (effects 306 | (font 307 | (size 1.27 1.27) 308 | ) 309 | ) 310 | ) 311 | (number "1" 312 | (effects 313 | (font 314 | (size 1.27 1.27) 315 | ) 316 | ) 317 | ) 318 | ) 319 | (pin passive line 320 | (at -5.08 -2.54 0) 321 | (length 3.81) 322 | (name "Pin_2" 323 | (effects 324 | (font 325 | (size 1.27 1.27) 326 | ) 327 | ) 328 | ) 329 | (number "2" 330 | (effects 331 | (font 332 | (size 1.27 1.27) 333 | ) 334 | ) 335 | ) 336 | ) 337 | ) 338 | (embedded_fonts no) 339 | ) 340 | (symbol "Connector_Generic:Conn_01x03" 341 | (pin_names 342 | (offset 1.016) 343 | (hide yes) 344 | ) 345 | (exclude_from_sim no) 346 | (in_bom yes) 347 | (on_board yes) 348 | (property "Reference" "J" 349 | (at 0 5.08 0) 350 | (effects 351 | (font 352 | (size 1.27 1.27) 353 | ) 354 | ) 355 | ) 356 | (property "Value" "Conn_01x03" 357 | (at 0 -5.08 0) 358 | (effects 359 | (font 360 | (size 1.27 1.27) 361 | ) 362 | ) 363 | ) 364 | (property "Footprint" "" 365 | (at 0 0 0) 366 | (effects 367 | (font 368 | (size 1.27 1.27) 369 | ) 370 | (hide yes) 371 | ) 372 | ) 373 | (property "Datasheet" "~" 374 | (at 0 0 0) 375 | (effects 376 | (font 377 | (size 1.27 1.27) 378 | ) 379 | (hide yes) 380 | ) 381 | ) 382 | (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" 383 | (at 0 0 0) 384 | (effects 385 | (font 386 | (size 1.27 1.27) 387 | ) 388 | (hide yes) 389 | ) 390 | ) 391 | (property "ki_keywords" "connector" 392 | (at 0 0 0) 393 | (effects 394 | (font 395 | (size 1.27 1.27) 396 | ) 397 | (hide yes) 398 | ) 399 | ) 400 | (property "ki_fp_filters" "Connector*:*_1x??_*" 401 | (at 0 0 0) 402 | (effects 403 | (font 404 | (size 1.27 1.27) 405 | ) 406 | (hide yes) 407 | ) 408 | ) 409 | (symbol "Conn_01x03_1_1" 410 | (rectangle 411 | (start -1.27 3.81) 412 | (end 1.27 -3.81) 413 | (stroke 414 | (width 0.254) 415 | (type default) 416 | ) 417 | (fill 418 | (type background) 419 | ) 420 | ) 421 | (rectangle 422 | (start -1.27 2.667) 423 | (end 0 2.413) 424 | (stroke 425 | (width 0.1524) 426 | (type default) 427 | ) 428 | (fill 429 | (type none) 430 | ) 431 | ) 432 | (rectangle 433 | (start -1.27 0.127) 434 | (end 0 -0.127) 435 | (stroke 436 | (width 0.1524) 437 | (type default) 438 | ) 439 | (fill 440 | (type none) 441 | ) 442 | ) 443 | (rectangle 444 | (start -1.27 -2.413) 445 | (end 0 -2.667) 446 | (stroke 447 | (width 0.1524) 448 | (type default) 449 | ) 450 | (fill 451 | (type none) 452 | ) 453 | ) 454 | (pin passive line 455 | (at -5.08 2.54 0) 456 | (length 3.81) 457 | (name "Pin_1" 458 | (effects 459 | (font 460 | (size 1.27 1.27) 461 | ) 462 | ) 463 | ) 464 | (number "1" 465 | (effects 466 | (font 467 | (size 1.27 1.27) 468 | ) 469 | ) 470 | ) 471 | ) 472 | (pin passive line 473 | (at -5.08 0 0) 474 | (length 3.81) 475 | (name "Pin_2" 476 | (effects 477 | (font 478 | (size 1.27 1.27) 479 | ) 480 | ) 481 | ) 482 | (number "2" 483 | (effects 484 | (font 485 | (size 1.27 1.27) 486 | ) 487 | ) 488 | ) 489 | ) 490 | (pin passive line 491 | (at -5.08 -2.54 0) 492 | (length 3.81) 493 | (name "Pin_3" 494 | (effects 495 | (font 496 | (size 1.27 1.27) 497 | ) 498 | ) 499 | ) 500 | (number "3" 501 | (effects 502 | (font 503 | (size 1.27 1.27) 504 | ) 505 | ) 506 | ) 507 | ) 508 | ) 509 | (embedded_fonts no) 510 | ) 511 | (symbol "Device:C_Small" 512 | (pin_numbers 513 | (hide yes) 514 | ) 515 | (pin_names 516 | (offset 0.254) 517 | (hide yes) 518 | ) 519 | (exclude_from_sim no) 520 | (in_bom yes) 521 | (on_board yes) 522 | (property "Reference" "C" 523 | (at 0.254 1.778 0) 524 | (effects 525 | (font 526 | (size 1.27 1.27) 527 | ) 528 | (justify left) 529 | ) 530 | ) 531 | (property "Value" "C_Small" 532 | (at 0.254 -2.032 0) 533 | (effects 534 | (font 535 | (size 1.27 1.27) 536 | ) 537 | (justify left) 538 | ) 539 | ) 540 | (property "Footprint" "" 541 | (at 0 0 0) 542 | (effects 543 | (font 544 | (size 1.27 1.27) 545 | ) 546 | (hide yes) 547 | ) 548 | ) 549 | (property "Datasheet" "~" 550 | (at 0 0 0) 551 | (effects 552 | (font 553 | (size 1.27 1.27) 554 | ) 555 | (hide yes) 556 | ) 557 | ) 558 | (property "Description" "Unpolarized capacitor, small symbol" 559 | (at 0 0 0) 560 | (effects 561 | (font 562 | (size 1.27 1.27) 563 | ) 564 | (hide yes) 565 | ) 566 | ) 567 | (property "ki_keywords" "capacitor cap" 568 | (at 0 0 0) 569 | (effects 570 | (font 571 | (size 1.27 1.27) 572 | ) 573 | (hide yes) 574 | ) 575 | ) 576 | (property "ki_fp_filters" "C_*" 577 | (at 0 0 0) 578 | (effects 579 | (font 580 | (size 1.27 1.27) 581 | ) 582 | (hide yes) 583 | ) 584 | ) 585 | (symbol "C_Small_0_1" 586 | (polyline 587 | (pts 588 | (xy -1.524 0.508) (xy 1.524 0.508) 589 | ) 590 | (stroke 591 | (width 0.3048) 592 | (type default) 593 | ) 594 | (fill 595 | (type none) 596 | ) 597 | ) 598 | (polyline 599 | (pts 600 | (xy -1.524 -0.508) (xy 1.524 -0.508) 601 | ) 602 | (stroke 603 | (width 0.3302) 604 | (type default) 605 | ) 606 | (fill 607 | (type none) 608 | ) 609 | ) 610 | ) 611 | (symbol "C_Small_1_1" 612 | (pin passive line 613 | (at 0 2.54 270) 614 | (length 2.032) 615 | (name "~" 616 | (effects 617 | (font 618 | (size 1.27 1.27) 619 | ) 620 | ) 621 | ) 622 | (number "1" 623 | (effects 624 | (font 625 | (size 1.27 1.27) 626 | ) 627 | ) 628 | ) 629 | ) 630 | (pin passive line 631 | (at 0 -2.54 90) 632 | (length 2.032) 633 | (name "~" 634 | (effects 635 | (font 636 | (size 1.27 1.27) 637 | ) 638 | ) 639 | ) 640 | (number "2" 641 | (effects 642 | (font 643 | (size 1.27 1.27) 644 | ) 645 | ) 646 | ) 647 | ) 648 | ) 649 | (embedded_fonts no) 650 | ) 651 | (symbol "Device:D_Schottky_Small" 652 | (pin_numbers 653 | (hide yes) 654 | ) 655 | (pin_names 656 | (offset 0.254) 657 | (hide yes) 658 | ) 659 | (exclude_from_sim no) 660 | (in_bom yes) 661 | (on_board yes) 662 | (property "Reference" "D" 663 | (at -1.27 2.032 0) 664 | (effects 665 | (font 666 | (size 1.27 1.27) 667 | ) 668 | (justify left) 669 | ) 670 | ) 671 | (property "Value" "D_Schottky_Small" 672 | (at -7.112 -2.032 0) 673 | (effects 674 | (font 675 | (size 1.27 1.27) 676 | ) 677 | (justify left) 678 | ) 679 | ) 680 | (property "Footprint" "" 681 | (at 0 0 90) 682 | (effects 683 | (font 684 | (size 1.27 1.27) 685 | ) 686 | (hide yes) 687 | ) 688 | ) 689 | (property "Datasheet" "~" 690 | (at 0 0 90) 691 | (effects 692 | (font 693 | (size 1.27 1.27) 694 | ) 695 | (hide yes) 696 | ) 697 | ) 698 | (property "Description" "Schottky diode, small symbol" 699 | (at 0 0 0) 700 | (effects 701 | (font 702 | (size 1.27 1.27) 703 | ) 704 | (hide yes) 705 | ) 706 | ) 707 | (property "ki_keywords" "diode Schottky" 708 | (at 0 0 0) 709 | (effects 710 | (font 711 | (size 1.27 1.27) 712 | ) 713 | (hide yes) 714 | ) 715 | ) 716 | (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" 717 | (at 0 0 0) 718 | (effects 719 | (font 720 | (size 1.27 1.27) 721 | ) 722 | (hide yes) 723 | ) 724 | ) 725 | (symbol "D_Schottky_Small_0_1" 726 | (polyline 727 | (pts 728 | (xy -1.27 0.762) (xy -1.27 1.016) (xy -0.762 1.016) (xy -0.762 -1.016) (xy -0.254 -1.016) (xy -0.254 -0.762) 729 | ) 730 | (stroke 731 | (width 0.254) 732 | (type default) 733 | ) 734 | (fill 735 | (type none) 736 | ) 737 | ) 738 | (polyline 739 | (pts 740 | (xy -0.762 0) (xy 0.762 0) 741 | ) 742 | (stroke 743 | (width 0) 744 | (type default) 745 | ) 746 | (fill 747 | (type none) 748 | ) 749 | ) 750 | (polyline 751 | (pts 752 | (xy 0.762 -1.016) (xy -0.762 0) (xy 0.762 1.016) (xy 0.762 -1.016) 753 | ) 754 | (stroke 755 | (width 0.254) 756 | (type default) 757 | ) 758 | (fill 759 | (type none) 760 | ) 761 | ) 762 | ) 763 | (symbol "D_Schottky_Small_1_1" 764 | (pin passive line 765 | (at -2.54 0 0) 766 | (length 1.778) 767 | (name "K" 768 | (effects 769 | (font 770 | (size 1.27 1.27) 771 | ) 772 | ) 773 | ) 774 | (number "1" 775 | (effects 776 | (font 777 | (size 1.27 1.27) 778 | ) 779 | ) 780 | ) 781 | ) 782 | (pin passive line 783 | (at 2.54 0 180) 784 | (length 1.778) 785 | (name "A" 786 | (effects 787 | (font 788 | (size 1.27 1.27) 789 | ) 790 | ) 791 | ) 792 | (number "2" 793 | (effects 794 | (font 795 | (size 1.27 1.27) 796 | ) 797 | ) 798 | ) 799 | ) 800 | ) 801 | (embedded_fonts no) 802 | ) 803 | (symbol "Device:L_Small" 804 | (pin_numbers 805 | (hide yes) 806 | ) 807 | (pin_names 808 | (offset 0.254) 809 | (hide yes) 810 | ) 811 | (exclude_from_sim no) 812 | (in_bom yes) 813 | (on_board yes) 814 | (property "Reference" "L" 815 | (at 0.762 1.016 0) 816 | (effects 817 | (font 818 | (size 1.27 1.27) 819 | ) 820 | (justify left) 821 | ) 822 | ) 823 | (property "Value" "L_Small" 824 | (at 0.762 -1.016 0) 825 | (effects 826 | (font 827 | (size 1.27 1.27) 828 | ) 829 | (justify left) 830 | ) 831 | ) 832 | (property "Footprint" "" 833 | (at 0 0 0) 834 | (effects 835 | (font 836 | (size 1.27 1.27) 837 | ) 838 | (hide yes) 839 | ) 840 | ) 841 | (property "Datasheet" "~" 842 | (at 0 0 0) 843 | (effects 844 | (font 845 | (size 1.27 1.27) 846 | ) 847 | (hide yes) 848 | ) 849 | ) 850 | (property "Description" "Inductor, small symbol" 851 | (at 0 0 0) 852 | (effects 853 | (font 854 | (size 1.27 1.27) 855 | ) 856 | (hide yes) 857 | ) 858 | ) 859 | (property "ki_keywords" "inductor choke coil reactor magnetic" 860 | (at 0 0 0) 861 | (effects 862 | (font 863 | (size 1.27 1.27) 864 | ) 865 | (hide yes) 866 | ) 867 | ) 868 | (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" 869 | (at 0 0 0) 870 | (effects 871 | (font 872 | (size 1.27 1.27) 873 | ) 874 | (hide yes) 875 | ) 876 | ) 877 | (symbol "L_Small_0_1" 878 | (arc 879 | (start 0 2.032) 880 | (mid 0.5058 1.524) 881 | (end 0 1.016) 882 | (stroke 883 | (width 0) 884 | (type default) 885 | ) 886 | (fill 887 | (type none) 888 | ) 889 | ) 890 | (arc 891 | (start 0 1.016) 892 | (mid 0.5058 0.508) 893 | (end 0 0) 894 | (stroke 895 | (width 0) 896 | (type default) 897 | ) 898 | (fill 899 | (type none) 900 | ) 901 | ) 902 | (arc 903 | (start 0 0) 904 | (mid 0.5058 -0.508) 905 | (end 0 -1.016) 906 | (stroke 907 | (width 0) 908 | (type default) 909 | ) 910 | (fill 911 | (type none) 912 | ) 913 | ) 914 | (arc 915 | (start 0 -1.016) 916 | (mid 0.5058 -1.524) 917 | (end 0 -2.032) 918 | (stroke 919 | (width 0) 920 | (type default) 921 | ) 922 | (fill 923 | (type none) 924 | ) 925 | ) 926 | ) 927 | (symbol "L_Small_1_1" 928 | (pin passive line 929 | (at 0 2.54 270) 930 | (length 0.508) 931 | (name "~" 932 | (effects 933 | (font 934 | (size 1.27 1.27) 935 | ) 936 | ) 937 | ) 938 | (number "1" 939 | (effects 940 | (font 941 | (size 1.27 1.27) 942 | ) 943 | ) 944 | ) 945 | ) 946 | (pin passive line 947 | (at 0 -2.54 90) 948 | (length 0.508) 949 | (name "~" 950 | (effects 951 | (font 952 | (size 1.27 1.27) 953 | ) 954 | ) 955 | ) 956 | (number "2" 957 | (effects 958 | (font 959 | (size 1.27 1.27) 960 | ) 961 | ) 962 | ) 963 | ) 964 | ) 965 | (embedded_fonts no) 966 | ) 967 | (symbol "Diode:SM6T68A" 968 | (pin_numbers 969 | (hide yes) 970 | ) 971 | (pin_names 972 | (offset 1.016) 973 | (hide yes) 974 | ) 975 | (exclude_from_sim no) 976 | (in_bom yes) 977 | (on_board yes) 978 | (property "Reference" "D" 979 | (at 0 2.54 0) 980 | (effects 981 | (font 982 | (size 1.27 1.27) 983 | ) 984 | ) 985 | ) 986 | (property "Value" "SM6T68A" 987 | (at 0 -2.54 0) 988 | (effects 989 | (font 990 | (size 1.27 1.27) 991 | ) 992 | ) 993 | ) 994 | (property "Footprint" "Diode_SMD:D_SMB" 995 | (at 0 -5.08 0) 996 | (effects 997 | (font 998 | (size 1.27 1.27) 999 | ) 1000 | (hide yes) 1001 | ) 1002 | ) 1003 | (property "Datasheet" "https://www.st.com/resource/en/datasheet/sm6t.pdf" 1004 | (at -1.27 0 0) 1005 | (effects 1006 | (font 1007 | (size 1.27 1.27) 1008 | ) 1009 | (hide yes) 1010 | ) 1011 | ) 1012 | (property "Description" "600W unidirectional Transil Transient Voltage Suppressor, 68Vrwm, DO-214AA" 1013 | (at 0 0 0) 1014 | (effects 1015 | (font 1016 | (size 1.27 1.27) 1017 | ) 1018 | (hide yes) 1019 | ) 1020 | ) 1021 | (property "ki_keywords" "diode TVS voltage suppressor" 1022 | (at 0 0 0) 1023 | (effects 1024 | (font 1025 | (size 1.27 1.27) 1026 | ) 1027 | (hide yes) 1028 | ) 1029 | ) 1030 | (property "ki_fp_filters" "D*SMB*" 1031 | (at 0 0 0) 1032 | (effects 1033 | (font 1034 | (size 1.27 1.27) 1035 | ) 1036 | (hide yes) 1037 | ) 1038 | ) 1039 | (symbol "SM6T68A_0_1" 1040 | (polyline 1041 | (pts 1042 | (xy -0.762 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) 1043 | ) 1044 | (stroke 1045 | (width 0.254) 1046 | (type default) 1047 | ) 1048 | (fill 1049 | (type none) 1050 | ) 1051 | ) 1052 | (polyline 1053 | (pts 1054 | (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) 1055 | ) 1056 | (stroke 1057 | (width 0.254) 1058 | (type default) 1059 | ) 1060 | (fill 1061 | (type none) 1062 | ) 1063 | ) 1064 | ) 1065 | (symbol "SM6T68A_1_1" 1066 | (pin passive line 1067 | (at -3.81 0 0) 1068 | (length 2.54) 1069 | (name "A1" 1070 | (effects 1071 | (font 1072 | (size 1.27 1.27) 1073 | ) 1074 | ) 1075 | ) 1076 | (number "1" 1077 | (effects 1078 | (font 1079 | (size 1.27 1.27) 1080 | ) 1081 | ) 1082 | ) 1083 | ) 1084 | (pin passive line 1085 | (at 3.81 0 180) 1086 | (length 2.54) 1087 | (name "A2" 1088 | (effects 1089 | (font 1090 | (size 1.27 1.27) 1091 | ) 1092 | ) 1093 | ) 1094 | (number "2" 1095 | (effects 1096 | (font 1097 | (size 1.27 1.27) 1098 | ) 1099 | ) 1100 | ) 1101 | ) 1102 | ) 1103 | (embedded_fonts no) 1104 | ) 1105 | (symbol "Mechanical:MountingHole" 1106 | (pin_names 1107 | (offset 1.016) 1108 | ) 1109 | (exclude_from_sim no) 1110 | (in_bom no) 1111 | (on_board yes) 1112 | (property "Reference" "H" 1113 | (at 0 5.08 0) 1114 | (effects 1115 | (font 1116 | (size 1.27 1.27) 1117 | ) 1118 | ) 1119 | ) 1120 | (property "Value" "MountingHole" 1121 | (at 0 3.175 0) 1122 | (effects 1123 | (font 1124 | (size 1.27 1.27) 1125 | ) 1126 | ) 1127 | ) 1128 | (property "Footprint" "" 1129 | (at 0 0 0) 1130 | (effects 1131 | (font 1132 | (size 1.27 1.27) 1133 | ) 1134 | (hide yes) 1135 | ) 1136 | ) 1137 | (property "Datasheet" "~" 1138 | (at 0 0 0) 1139 | (effects 1140 | (font 1141 | (size 1.27 1.27) 1142 | ) 1143 | (hide yes) 1144 | ) 1145 | ) 1146 | (property "Description" "Mounting Hole without connection" 1147 | (at 0 0 0) 1148 | (effects 1149 | (font 1150 | (size 1.27 1.27) 1151 | ) 1152 | (hide yes) 1153 | ) 1154 | ) 1155 | (property "ki_keywords" "mounting hole" 1156 | (at 0 0 0) 1157 | (effects 1158 | (font 1159 | (size 1.27 1.27) 1160 | ) 1161 | (hide yes) 1162 | ) 1163 | ) 1164 | (property "ki_fp_filters" "MountingHole*" 1165 | (at 0 0 0) 1166 | (effects 1167 | (font 1168 | (size 1.27 1.27) 1169 | ) 1170 | (hide yes) 1171 | ) 1172 | ) 1173 | (symbol "MountingHole_0_1" 1174 | (circle 1175 | (center 0 0) 1176 | (radius 1.27) 1177 | (stroke 1178 | (width 1.27) 1179 | (type default) 1180 | ) 1181 | (fill 1182 | (type none) 1183 | ) 1184 | ) 1185 | ) 1186 | (embedded_fonts no) 1187 | ) 1188 | (symbol "Regulator_Switching:MAX15062A" 1189 | (exclude_from_sim no) 1190 | (in_bom yes) 1191 | (on_board yes) 1192 | (property "Reference" "U" 1193 | (at -10.16 11.43 0) 1194 | (effects 1195 | (font 1196 | (size 1.27 1.27) 1197 | ) 1198 | (justify left) 1199 | ) 1200 | ) 1201 | (property "Value" "MAX15062A" 1202 | (at -10.16 8.89 0) 1203 | (effects 1204 | (font 1205 | (size 1.27 1.27) 1206 | ) 1207 | (justify left) 1208 | ) 1209 | ) 1210 | (property "Footprint" "Package_DFN_QFN:DFN-8_2x2mm_P0.5mm" 1211 | (at 0 13.97 0) 1212 | (effects 1213 | (font 1214 | (size 1.27 1.27) 1215 | (italic yes) 1216 | ) 1217 | (hide yes) 1218 | ) 1219 | ) 1220 | (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/MAX15062.pdf" 1221 | (at 0 -1.27 0) 1222 | (effects 1223 | (font 1224 | (size 1.27 1.27) 1225 | ) 1226 | (hide yes) 1227 | ) 1228 | ) 1229 | (property "Description" "60V, 300mA, synchronous step-down dc-dc converter, 3.3V fixed output voltage, DFN-8" 1230 | (at 0 0 0) 1231 | (effects 1232 | (font 1233 | (size 1.27 1.27) 1234 | ) 1235 | (hide yes) 1236 | ) 1237 | ) 1238 | (property "ki_keywords" "step-down dc-dc switching regulator" 1239 | (at 0 0 0) 1240 | (effects 1241 | (font 1242 | (size 1.27 1.27) 1243 | ) 1244 | (hide yes) 1245 | ) 1246 | ) 1247 | (property "ki_fp_filters" "DFN*2x2mm*P0.5mm*" 1248 | (at 0 0 0) 1249 | (effects 1250 | (font 1251 | (size 1.27 1.27) 1252 | ) 1253 | (hide yes) 1254 | ) 1255 | ) 1256 | (symbol "MAX15062A_0_1" 1257 | (rectangle 1258 | (start -10.16 7.62) 1259 | (end 10.16 -7.62) 1260 | (stroke 1261 | (width 0.254) 1262 | (type default) 1263 | ) 1264 | (fill 1265 | (type background) 1266 | ) 1267 | ) 1268 | ) 1269 | (symbol "MAX15062A_1_1" 1270 | (pin power_in line 1271 | (at -12.7 5.08 0) 1272 | (length 2.54) 1273 | (name "VIN" 1274 | (effects 1275 | (font 1276 | (size 1.27 1.27) 1277 | ) 1278 | ) 1279 | ) 1280 | (number "1" 1281 | (effects 1282 | (font 1283 | (size 1.27 1.27) 1284 | ) 1285 | ) 1286 | ) 1287 | ) 1288 | (pin input line 1289 | (at -12.7 2.54 0) 1290 | (length 2.54) 1291 | (name "EN/UVLO" 1292 | (effects 1293 | (font 1294 | (size 1.27 1.27) 1295 | ) 1296 | ) 1297 | ) 1298 | (number "2" 1299 | (effects 1300 | (font 1301 | (size 1.27 1.27) 1302 | ) 1303 | ) 1304 | ) 1305 | ) 1306 | (pin input line 1307 | (at -12.7 -2.54 0) 1308 | (length 2.54) 1309 | (name "MODE" 1310 | (effects 1311 | (font 1312 | (size 1.27 1.27) 1313 | ) 1314 | ) 1315 | ) 1316 | (number "5" 1317 | (effects 1318 | (font 1319 | (size 1.27 1.27) 1320 | ) 1321 | ) 1322 | ) 1323 | ) 1324 | (pin power_out line 1325 | (at -12.7 -5.08 0) 1326 | (length 2.54) 1327 | (name "VCC" 1328 | (effects 1329 | (font 1330 | (size 1.27 1.27) 1331 | ) 1332 | ) 1333 | ) 1334 | (number "3" 1335 | (effects 1336 | (font 1337 | (size 1.27 1.27) 1338 | ) 1339 | ) 1340 | ) 1341 | ) 1342 | (pin power_in line 1343 | (at 0 -10.16 90) 1344 | (length 2.54) 1345 | (name "GND" 1346 | (effects 1347 | (font 1348 | (size 1.27 1.27) 1349 | ) 1350 | ) 1351 | ) 1352 | (number "7" 1353 | (effects 1354 | (font 1355 | (size 1.27 1.27) 1356 | ) 1357 | ) 1358 | ) 1359 | ) 1360 | (pin power_out line 1361 | (at 12.7 5.08 180) 1362 | (length 2.54) 1363 | (name "LX" 1364 | (effects 1365 | (font 1366 | (size 1.27 1.27) 1367 | ) 1368 | ) 1369 | ) 1370 | (number "8" 1371 | (effects 1372 | (font 1373 | (size 1.27 1.27) 1374 | ) 1375 | ) 1376 | ) 1377 | ) 1378 | (pin input line 1379 | (at 12.7 0 180) 1380 | (length 2.54) 1381 | (name "FB/Vout" 1382 | (effects 1383 | (font 1384 | (size 1.27 1.27) 1385 | ) 1386 | ) 1387 | ) 1388 | (number "4" 1389 | (effects 1390 | (font 1391 | (size 1.27 1.27) 1392 | ) 1393 | ) 1394 | ) 1395 | ) 1396 | (pin open_collector line 1397 | (at 12.7 -5.08 180) 1398 | (length 2.54) 1399 | (name "~{RESET}" 1400 | (effects 1401 | (font 1402 | (size 1.27 1.27) 1403 | ) 1404 | ) 1405 | ) 1406 | (number "6" 1407 | (effects 1408 | (font 1409 | (size 1.27 1.27) 1410 | ) 1411 | ) 1412 | ) 1413 | ) 1414 | ) 1415 | (embedded_fonts no) 1416 | ) 1417 | (symbol "power:GND" 1418 | (power) 1419 | (pin_numbers 1420 | (hide yes) 1421 | ) 1422 | (pin_names 1423 | (offset 0) 1424 | (hide yes) 1425 | ) 1426 | (exclude_from_sim no) 1427 | (in_bom yes) 1428 | (on_board yes) 1429 | (property "Reference" "#PWR" 1430 | (at 0 -6.35 0) 1431 | (effects 1432 | (font 1433 | (size 1.27 1.27) 1434 | ) 1435 | (hide yes) 1436 | ) 1437 | ) 1438 | (property "Value" "GND" 1439 | (at 0 -3.81 0) 1440 | (effects 1441 | (font 1442 | (size 1.27 1.27) 1443 | ) 1444 | ) 1445 | ) 1446 | (property "Footprint" "" 1447 | (at 0 0 0) 1448 | (effects 1449 | (font 1450 | (size 1.27 1.27) 1451 | ) 1452 | (hide yes) 1453 | ) 1454 | ) 1455 | (property "Datasheet" "" 1456 | (at 0 0 0) 1457 | (effects 1458 | (font 1459 | (size 1.27 1.27) 1460 | ) 1461 | (hide yes) 1462 | ) 1463 | ) 1464 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 1465 | (at 0 0 0) 1466 | (effects 1467 | (font 1468 | (size 1.27 1.27) 1469 | ) 1470 | (hide yes) 1471 | ) 1472 | ) 1473 | (property "ki_keywords" "global power" 1474 | (at 0 0 0) 1475 | (effects 1476 | (font 1477 | (size 1.27 1.27) 1478 | ) 1479 | (hide yes) 1480 | ) 1481 | ) 1482 | (symbol "GND_0_1" 1483 | (polyline 1484 | (pts 1485 | (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) 1486 | ) 1487 | (stroke 1488 | (width 0) 1489 | (type default) 1490 | ) 1491 | (fill 1492 | (type none) 1493 | ) 1494 | ) 1495 | ) 1496 | (symbol "GND_1_1" 1497 | (pin power_in line 1498 | (at 0 0 270) 1499 | (length 0) 1500 | (name "~" 1501 | (effects 1502 | (font 1503 | (size 1.27 1.27) 1504 | ) 1505 | ) 1506 | ) 1507 | (number "1" 1508 | (effects 1509 | (font 1510 | (size 1.27 1.27) 1511 | ) 1512 | ) 1513 | ) 1514 | ) 1515 | ) 1516 | (embedded_fonts no) 1517 | ) 1518 | (symbol "power:PWR_FLAG" 1519 | (power) 1520 | (pin_numbers 1521 | (hide yes) 1522 | ) 1523 | (pin_names 1524 | (offset 0) 1525 | (hide yes) 1526 | ) 1527 | (exclude_from_sim no) 1528 | (in_bom yes) 1529 | (on_board yes) 1530 | (property "Reference" "#FLG" 1531 | (at 0 1.905 0) 1532 | (effects 1533 | (font 1534 | (size 1.27 1.27) 1535 | ) 1536 | (hide yes) 1537 | ) 1538 | ) 1539 | (property "Value" "PWR_FLAG" 1540 | (at 0 3.81 0) 1541 | (effects 1542 | (font 1543 | (size 1.27 1.27) 1544 | ) 1545 | ) 1546 | ) 1547 | (property "Footprint" "" 1548 | (at 0 0 0) 1549 | (effects 1550 | (font 1551 | (size 1.27 1.27) 1552 | ) 1553 | (hide yes) 1554 | ) 1555 | ) 1556 | (property "Datasheet" "~" 1557 | (at 0 0 0) 1558 | (effects 1559 | (font 1560 | (size 1.27 1.27) 1561 | ) 1562 | (hide yes) 1563 | ) 1564 | ) 1565 | (property "Description" "Special symbol for telling ERC where power comes from" 1566 | (at 0 0 0) 1567 | (effects 1568 | (font 1569 | (size 1.27 1.27) 1570 | ) 1571 | (hide yes) 1572 | ) 1573 | ) 1574 | (property "ki_keywords" "flag power" 1575 | (at 0 0 0) 1576 | (effects 1577 | (font 1578 | (size 1.27 1.27) 1579 | ) 1580 | (hide yes) 1581 | ) 1582 | ) 1583 | (symbol "PWR_FLAG_0_0" 1584 | (pin power_out line 1585 | (at 0 0 90) 1586 | (length 0) 1587 | (name "~" 1588 | (effects 1589 | (font 1590 | (size 1.27 1.27) 1591 | ) 1592 | ) 1593 | ) 1594 | (number "1" 1595 | (effects 1596 | (font 1597 | (size 1.27 1.27) 1598 | ) 1599 | ) 1600 | ) 1601 | ) 1602 | ) 1603 | (symbol "PWR_FLAG_0_1" 1604 | (polyline 1605 | (pts 1606 | (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) 1607 | ) 1608 | (stroke 1609 | (width 0) 1610 | (type default) 1611 | ) 1612 | (fill 1613 | (type none) 1614 | ) 1615 | ) 1616 | ) 1617 | (embedded_fonts no) 1618 | ) 1619 | ) 1620 | (junction 1621 | (at 64.77 76.2) 1622 | (diameter 0) 1623 | (color 0 0 0 0) 1624 | (uuid "09aa523e-7a2b-4a5c-b2fd-13ccafb17c45") 1625 | ) 1626 | (junction 1627 | (at 92.71 99.06) 1628 | (diameter 0) 1629 | (color 0 0 0 0) 1630 | (uuid "0a7b33be-b8df-4da2-86db-613583ed5a9b") 1631 | ) 1632 | (junction 1633 | (at 107.95 99.06) 1634 | (diameter 0) 1635 | (color 0 0 0 0) 1636 | (uuid "16aff234-e5e6-463a-b62f-df23c3a2c6b5") 1637 | ) 1638 | (junction 1639 | (at 64.77 99.06) 1640 | (diameter 0) 1641 | (color 0 0 0 0) 1642 | (uuid "1feca253-89b5-417a-b522-319240cdfbb4") 1643 | ) 1644 | (junction 1645 | (at 133.35 99.06) 1646 | (diameter 0) 1647 | (color 0 0 0 0) 1648 | (uuid "3a59d364-a23d-4452-9dda-3325fad63793") 1649 | ) 1650 | (junction 1651 | (at 161.29 78.74) 1652 | (diameter 0) 1653 | (color 0 0 0 0) 1654 | (uuid "419866eb-a51e-4e4b-95fb-f52954151f7d") 1655 | ) 1656 | (junction 1657 | (at 154.94 83.82) 1658 | (diameter 0) 1659 | (color 0 0 0 0) 1660 | (uuid "4eb85f08-c357-49d3-80e9-6c00fed377a2") 1661 | ) 1662 | (junction 1663 | (at 92.71 76.2) 1664 | (diameter 0) 1665 | (color 0 0 0 0) 1666 | (uuid "8ed769cb-d39b-43e9-a6ad-3771c6212a9b") 1667 | ) 1668 | (junction 1669 | (at 154.94 95.25) 1670 | (diameter 0) 1671 | (color 0 0 0 0) 1672 | (uuid "a7513e33-5014-4052-a40b-03d9d41e7a47") 1673 | ) 1674 | (junction 1675 | (at 77.47 76.2) 1676 | (diameter 0) 1677 | (color 0 0 0 0) 1678 | (uuid "c628e830-7949-4df0-8a78-9f906d843984") 1679 | ) 1680 | (junction 1681 | (at 118.11 78.74) 1682 | (diameter 0) 1683 | (color 0 0 0 0) 1684 | (uuid "d5e3fb44-0344-4bfe-bb87-05509439f14d") 1685 | ) 1686 | (junction 1687 | (at 133.35 95.25) 1688 | (diameter 0) 1689 | (color 0 0 0 0) 1690 | (uuid "e1728a15-5da9-458a-af6d-eaaa6f3ac4e5") 1691 | ) 1692 | (junction 1693 | (at 113.03 99.06) 1694 | (diameter 0) 1695 | (color 0 0 0 0) 1696 | (uuid "e37c213d-19ce-4610-b4a1-736e352c1b4b") 1697 | ) 1698 | (junction 1699 | (at 77.47 99.06) 1700 | (diameter 0) 1701 | (color 0 0 0 0) 1702 | (uuid "f779158d-3845-4cdf-9057-0aada85194ea") 1703 | ) 1704 | (wire 1705 | (pts 1706 | (xy 113.03 96.52) (xy 113.03 99.06) 1707 | ) 1708 | (stroke 1709 | (width 0) 1710 | (type default) 1711 | ) 1712 | (uuid "0057386d-5a36-4fe4-b313-8e76e3752656") 1713 | ) 1714 | (wire 1715 | (pts 1716 | (xy 120.65 81.28) (xy 118.11 81.28) 1717 | ) 1718 | (stroke 1719 | (width 0) 1720 | (type default) 1721 | ) 1722 | (uuid "0265911b-2d83-4702-b091-f10c2425ef4c") 1723 | ) 1724 | (wire 1725 | (pts 1726 | (xy 118.11 78.74) (xy 118.11 81.28) 1727 | ) 1728 | (stroke 1729 | (width 0) 1730 | (type default) 1731 | ) 1732 | (uuid "1171096f-9123-48be-bf19-cfa97b952cec") 1733 | ) 1734 | (wire 1735 | (pts 1736 | (xy 161.29 78.74) (xy 161.29 83.82) 1737 | ) 1738 | (stroke 1739 | (width 0) 1740 | (type default) 1741 | ) 1742 | (uuid "12b40ab2-e6c6-4632-90e8-f00e7f2f1de4") 1743 | ) 1744 | (wire 1745 | (pts 1746 | (xy 107.95 88.9) (xy 107.95 99.06) 1747 | ) 1748 | (stroke 1749 | (width 0) 1750 | (type default) 1751 | ) 1752 | (uuid "14d6fc41-eeb8-4429-9574-17fc0d354f41") 1753 | ) 1754 | (wire 1755 | (pts 1756 | (xy 133.35 99.06) (xy 133.35 95.25) 1757 | ) 1758 | (stroke 1759 | (width 0) 1760 | (type default) 1761 | ) 1762 | (uuid "157cdb8c-2e6c-412f-a51e-d94860863a18") 1763 | ) 1764 | (wire 1765 | (pts 1766 | (xy 107.95 99.06) (xy 113.03 99.06) 1767 | ) 1768 | (stroke 1769 | (width 0) 1770 | (type default) 1771 | ) 1772 | (uuid "15f660b9-07fa-466c-bb59-2a27933b8ea3") 1773 | ) 1774 | (wire 1775 | (pts 1776 | (xy 170.18 88.9) (xy 177.8 88.9) 1777 | ) 1778 | (stroke 1779 | (width 0) 1780 | (type default) 1781 | ) 1782 | (uuid "26e0b4af-5a9b-414c-826b-b6208a420889") 1783 | ) 1784 | (wire 1785 | (pts 1786 | (xy 64.77 99.06) (xy 77.47 99.06) 1787 | ) 1788 | (stroke 1789 | (width 0) 1790 | (type default) 1791 | ) 1792 | (uuid "27503d62-0259-4b83-a828-60990facacae") 1793 | ) 1794 | (wire 1795 | (pts 1796 | (xy 64.77 76.2) (xy 69.85 76.2) 1797 | ) 1798 | (stroke 1799 | (width 0) 1800 | (type default) 1801 | ) 1802 | (uuid "29b71ae6-e323-4535-a5ec-32742838247f") 1803 | ) 1804 | (wire 1805 | (pts 1806 | (xy 154.94 95.25) (xy 170.18 95.25) 1807 | ) 1808 | (stroke 1809 | (width 0) 1810 | (type default) 1811 | ) 1812 | (uuid "2d4fe725-316c-478f-9c1e-ccd47d26d179") 1813 | ) 1814 | (wire 1815 | (pts 1816 | (xy 64.77 88.9) (xy 62.23 88.9) 1817 | ) 1818 | (stroke 1819 | (width 0) 1820 | (type default) 1821 | ) 1822 | (uuid "2f18aa67-32f4-4195-a48f-194bfd5981ef") 1823 | ) 1824 | (wire 1825 | (pts 1826 | (xy 77.47 99.06) (xy 92.71 99.06) 1827 | ) 1828 | (stroke 1829 | (width 0) 1830 | (type default) 1831 | ) 1832 | (uuid "366eede3-ddc9-4cfd-b180-2c82b34708d7") 1833 | ) 1834 | (wire 1835 | (pts 1836 | (xy 113.03 99.06) (xy 133.35 99.06) 1837 | ) 1838 | (stroke 1839 | (width 0) 1840 | (type default) 1841 | ) 1842 | (uuid "39974ba7-5d64-4d80-99a1-d70f9445e3cd") 1843 | ) 1844 | (wire 1845 | (pts 1846 | (xy 170.18 78.74) (xy 170.18 88.9) 1847 | ) 1848 | (stroke 1849 | (width 0) 1850 | (type default) 1851 | ) 1852 | (uuid "3ac6b89d-6e83-4b1d-a077-3318abbe5655") 1853 | ) 1854 | (wire 1855 | (pts 1856 | (xy 154.94 92.71) (xy 154.94 95.25) 1857 | ) 1858 | (stroke 1859 | (width 0) 1860 | (type default) 1861 | ) 1862 | (uuid "3d4b74fe-bf7e-4dc2-96c6-c018ebcf78b5") 1863 | ) 1864 | (wire 1865 | (pts 1866 | (xy 154.94 83.82) (xy 154.94 87.63) 1867 | ) 1868 | (stroke 1869 | (width 0) 1870 | (type default) 1871 | ) 1872 | (uuid "40bb6a94-bf80-43f8-aa14-d014b502730a") 1873 | ) 1874 | (wire 1875 | (pts 1876 | (xy 62.23 86.36) (xy 64.77 86.36) 1877 | ) 1878 | (stroke 1879 | (width 0) 1880 | (type default) 1881 | ) 1882 | (uuid "41cde3f1-8a2f-4053-b379-58ba3b95bdbf") 1883 | ) 1884 | (wire 1885 | (pts 1886 | (xy 170.18 91.44) (xy 177.8 91.44) 1887 | ) 1888 | (stroke 1889 | (width 0) 1890 | (type default) 1891 | ) 1892 | (uuid "4222c92c-beeb-402a-ab4f-4f54b8719199") 1893 | ) 1894 | (wire 1895 | (pts 1896 | (xy 173.99 86.36) (xy 173.99 100.33) 1897 | ) 1898 | (stroke 1899 | (width 0) 1900 | (type default) 1901 | ) 1902 | (uuid "45f5d58f-8e46-4111-8539-4c2aadf5d397") 1903 | ) 1904 | (wire 1905 | (pts 1906 | (xy 64.77 88.9) (xy 64.77 99.06) 1907 | ) 1908 | (stroke 1909 | (width 0) 1910 | (type default) 1911 | ) 1912 | (uuid "50a66271-38cf-445e-b49a-991d195fd195") 1913 | ) 1914 | (wire 1915 | (pts 1916 | (xy 113.03 88.9) (xy 120.65 88.9) 1917 | ) 1918 | (stroke 1919 | (width 0) 1920 | (type default) 1921 | ) 1922 | (uuid "52380d5b-e9c2-4154-98a9-59ace435f9b2") 1923 | ) 1924 | (wire 1925 | (pts 1926 | (xy 92.71 76.2) (xy 118.11 76.2) 1927 | ) 1928 | (stroke 1929 | (width 0) 1930 | (type default) 1931 | ) 1932 | (uuid "610b3014-5c84-4b06-9ba0-5a1e30e90ef4") 1933 | ) 1934 | (wire 1935 | (pts 1936 | (xy 173.99 86.36) (xy 177.8 86.36) 1937 | ) 1938 | (stroke 1939 | (width 0) 1940 | (type default) 1941 | ) 1942 | (uuid "64494234-c5ed-4602-88e9-ee78497daae1") 1943 | ) 1944 | (wire 1945 | (pts 1946 | (xy 133.35 99.06) (xy 133.35 106.68) 1947 | ) 1948 | (stroke 1949 | (width 0) 1950 | (type default) 1951 | ) 1952 | (uuid "72b3baa3-3c91-4fc6-ad9b-e5cc2fd253d2") 1953 | ) 1954 | (wire 1955 | (pts 1956 | (xy 170.18 95.25) (xy 170.18 91.44) 1957 | ) 1958 | (stroke 1959 | (width 0) 1960 | (type default) 1961 | ) 1962 | (uuid "74237075-4896-4def-a7f8-01ff87e0fb91") 1963 | ) 1964 | (wire 1965 | (pts 1966 | (xy 161.29 83.82) (xy 154.94 83.82) 1967 | ) 1968 | (stroke 1969 | (width 0) 1970 | (type default) 1971 | ) 1972 | (uuid "754dc9a7-cdab-46b6-b471-dfe512fde5c0") 1973 | ) 1974 | (wire 1975 | (pts 1976 | (xy 74.93 76.2) (xy 77.47 76.2) 1977 | ) 1978 | (stroke 1979 | (width 0) 1980 | (type default) 1981 | ) 1982 | (uuid "8b56a0b1-58db-4f8e-b196-d9b67e0690bb") 1983 | ) 1984 | (wire 1985 | (pts 1986 | (xy 77.47 76.2) (xy 92.71 76.2) 1987 | ) 1988 | (stroke 1989 | (width 0) 1990 | (type default) 1991 | ) 1992 | (uuid "91854150-a3f5-4247-a3da-56fb4da47f4b") 1993 | ) 1994 | (wire 1995 | (pts 1996 | (xy 92.71 99.06) (xy 107.95 99.06) 1997 | ) 1998 | (stroke 1999 | (width 0) 2000 | (type default) 2001 | ) 2002 | (uuid "9290ce16-318c-464f-b005-7b9ce760acc0") 2003 | ) 2004 | (wire 2005 | (pts 2006 | (xy 161.29 78.74) (xy 170.18 78.74) 2007 | ) 2008 | (stroke 2009 | (width 0) 2010 | (type default) 2011 | ) 2012 | (uuid "9b6c78a9-2253-4f5b-81d2-dabd4f5f791f") 2013 | ) 2014 | (wire 2015 | (pts 2016 | (xy 92.71 88.9) (xy 92.71 99.06) 2017 | ) 2018 | (stroke 2019 | (width 0) 2020 | (type default) 2021 | ) 2022 | (uuid "a1aac6ac-8530-430f-9d13-8c0b16343f3a") 2023 | ) 2024 | (wire 2025 | (pts 2026 | (xy 146.05 78.74) (xy 151.13 78.74) 2027 | ) 2028 | (stroke 2029 | (width 0) 2030 | (type default) 2031 | ) 2032 | (uuid "ac901fdd-1b65-45f4-97c0-ea7a39a16ef9") 2033 | ) 2034 | (wire 2035 | (pts 2036 | (xy 64.77 76.2) (xy 64.77 86.36) 2037 | ) 2038 | (stroke 2039 | (width 0) 2040 | (type default) 2041 | ) 2042 | (uuid "ae3debc3-14ad-48ee-99f1-a6fb3775b864") 2043 | ) 2044 | (wire 2045 | (pts 2046 | (xy 146.05 100.33) (xy 146.05 88.9) 2047 | ) 2048 | (stroke 2049 | (width 0) 2050 | (type default) 2051 | ) 2052 | (uuid "b15bde1a-91fc-466f-946a-60707201b4c9") 2053 | ) 2054 | (wire 2055 | (pts 2056 | (xy 133.35 93.98) (xy 133.35 95.25) 2057 | ) 2058 | (stroke 2059 | (width 0) 2060 | (type default) 2061 | ) 2062 | (uuid "b7157735-63d4-439a-ada4-14b7945ade30") 2063 | ) 2064 | (wire 2065 | (pts 2066 | (xy 118.11 76.2) (xy 118.11 78.74) 2067 | ) 2068 | (stroke 2069 | (width 0) 2070 | (type default) 2071 | ) 2072 | (uuid "ba8252b9-fe1b-4b42-8d5e-12e5b02b6320") 2073 | ) 2074 | (wire 2075 | (pts 2076 | (xy 173.99 100.33) (xy 146.05 100.33) 2077 | ) 2078 | (stroke 2079 | (width 0) 2080 | (type default) 2081 | ) 2082 | (uuid "c6e57303-d79c-4d36-a1d7-e3928cca03ee") 2083 | ) 2084 | (wire 2085 | (pts 2086 | (xy 77.47 76.2) (xy 77.47 83.82) 2087 | ) 2088 | (stroke 2089 | (width 0) 2090 | (type default) 2091 | ) 2092 | (uuid "d1a25c8e-82bd-499c-8ea0-c96bebdc3c72") 2093 | ) 2094 | (wire 2095 | (pts 2096 | (xy 64.77 99.06) (xy 64.77 100.33) 2097 | ) 2098 | (stroke 2099 | (width 0) 2100 | (type default) 2101 | ) 2102 | (uuid "d3b180f7-0a7d-4937-aa54-4c97d95ca078") 2103 | ) 2104 | (wire 2105 | (pts 2106 | (xy 118.11 78.74) (xy 120.65 78.74) 2107 | ) 2108 | (stroke 2109 | (width 0) 2110 | (type default) 2111 | ) 2112 | (uuid "df3361f2-91d1-4ba2-bf73-830e069ce369") 2113 | ) 2114 | (wire 2115 | (pts 2116 | (xy 133.35 95.25) (xy 154.94 95.25) 2117 | ) 2118 | (stroke 2119 | (width 0) 2120 | (type default) 2121 | ) 2122 | (uuid "e15b6776-a110-4c20-8f08-8a2f807eddc8") 2123 | ) 2124 | (wire 2125 | (pts 2126 | (xy 64.77 73.66) (xy 64.77 76.2) 2127 | ) 2128 | (stroke 2129 | (width 0) 2130 | (type default) 2131 | ) 2132 | (uuid "eef2e3a6-b359-4646-af49-93570197e1aa") 2133 | ) 2134 | (wire 2135 | (pts 2136 | (xy 113.03 91.44) (xy 113.03 88.9) 2137 | ) 2138 | (stroke 2139 | (width 0) 2140 | (type default) 2141 | ) 2142 | (uuid "ef0be38c-6136-4a76-b491-6951eb934ccb") 2143 | ) 2144 | (wire 2145 | (pts 2146 | (xy 146.05 83.82) (xy 154.94 83.82) 2147 | ) 2148 | (stroke 2149 | (width 0) 2150 | (type default) 2151 | ) 2152 | (uuid "ef84f460-fc72-4cb6-8bb2-da712fa33537") 2153 | ) 2154 | (wire 2155 | (pts 2156 | (xy 156.21 78.74) (xy 161.29 78.74) 2157 | ) 2158 | (stroke 2159 | (width 0) 2160 | (type default) 2161 | ) 2162 | (uuid "f1c4dd32-9846-42d8-8aad-b84896f35d45") 2163 | ) 2164 | (wire 2165 | (pts 2166 | (xy 77.47 99.06) (xy 77.47 91.44) 2167 | ) 2168 | (stroke 2169 | (width 0) 2170 | (type default) 2171 | ) 2172 | (uuid "f1e6d3c6-c96b-4cbb-bdd8-9c268551db61") 2173 | ) 2174 | (wire 2175 | (pts 2176 | (xy 120.65 86.36) (xy 107.95 86.36) 2177 | ) 2178 | (stroke 2179 | (width 0) 2180 | (type default) 2181 | ) 2182 | (uuid "f3ddcff9-ce10-454d-8a56-db9051df0944") 2183 | ) 2184 | (wire 2185 | (pts 2186 | (xy 92.71 83.82) (xy 92.71 76.2) 2187 | ) 2188 | (stroke 2189 | (width 0) 2190 | (type default) 2191 | ) 2192 | (uuid "f69265dd-6d26-417c-8ae3-95ee0c93d617") 2193 | ) 2194 | (symbol 2195 | (lib_id "Regulator_Switching:MAX15062A") 2196 | (at 133.35 83.82 0) 2197 | (unit 1) 2198 | (exclude_from_sim no) 2199 | (in_bom yes) 2200 | (on_board yes) 2201 | (dnp no) 2202 | (fields_autoplaced yes) 2203 | (uuid "057e520b-5d0f-4f9c-8b2c-86e86b66f576") 2204 | (property "Reference" "U1" 2205 | (at 133.35 71.12 0) 2206 | (effects 2207 | (font 2208 | (size 1.27 1.27) 2209 | ) 2210 | ) 2211 | ) 2212 | (property "Value" "MAX15062A" 2213 | (at 133.35 73.66 0) 2214 | (effects 2215 | (font 2216 | (size 1.27 1.27) 2217 | ) 2218 | ) 2219 | ) 2220 | (property "Footprint" "Package_DFN_QFN:DFN-8_2x2mm_P0.5mm" 2221 | (at 133.35 69.85 0) 2222 | (effects 2223 | (font 2224 | (size 1.27 1.27) 2225 | (italic yes) 2226 | ) 2227 | (hide yes) 2228 | ) 2229 | ) 2230 | (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/MAX15062.pdf" 2231 | (at 133.35 85.09 0) 2232 | (effects 2233 | (font 2234 | (size 1.27 1.27) 2235 | ) 2236 | (hide yes) 2237 | ) 2238 | ) 2239 | (property "Description" "60V, 300mA, synchronous step-down dc-dc converter, 3.3V fixed output voltage, DFN-8" 2240 | (at 133.35 83.82 0) 2241 | (effects 2242 | (font 2243 | (size 1.27 1.27) 2244 | ) 2245 | (hide yes) 2246 | ) 2247 | ) 2248 | (property "LCSC" "C2846801" 2249 | (at 133.35 83.82 0) 2250 | (effects 2251 | (font 2252 | (size 1.27 1.27) 2253 | ) 2254 | (hide yes) 2255 | ) 2256 | ) 2257 | (pin "4" 2258 | (uuid "4131bfff-72ae-406c-8703-de0c456744ef") 2259 | ) 2260 | (pin "7" 2261 | (uuid "644f73c9-9d8e-4afe-a475-8bb6676009c0") 2262 | ) 2263 | (pin "3" 2264 | (uuid "5a8217f6-e63d-49d8-a47b-8edf5f829bf8") 2265 | ) 2266 | (pin "8" 2267 | (uuid "ff3f7c14-5596-4b63-9cd7-b9ba7c1adff1") 2268 | ) 2269 | (pin "6" 2270 | (uuid "8ed76669-0ed6-4c62-b594-90fce9debf37") 2271 | ) 2272 | (pin "2" 2273 | (uuid "309ff3c4-ffb8-44d2-91a0-9149782f1114") 2274 | ) 2275 | (pin "5" 2276 | (uuid "a343d383-4550-4700-a8f2-cde8e8c63dba") 2277 | ) 2278 | (pin "1" 2279 | (uuid "bb78b2e7-3183-4004-a536-1b17c4aee406") 2280 | ) 2281 | (instances 2282 | (project "" 2283 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2284 | (reference "U1") 2285 | (unit 1) 2286 | ) 2287 | ) 2288 | ) 2289 | ) 2290 | (symbol 2291 | (lib_id "Connector_Generic:Conn_01x03") 2292 | (at 182.88 88.9 0) 2293 | (mirror x) 2294 | (unit 1) 2295 | (exclude_from_sim no) 2296 | (in_bom no) 2297 | (on_board yes) 2298 | (dnp no) 2299 | (uuid "1220c57d-2e97-464b-ade1-63ff1b5dc1d6") 2300 | (property "Reference" "J2" 2301 | (at 185.42 90.1701 0) 2302 | (effects 2303 | (font 2304 | (size 1.27 1.27) 2305 | ) 2306 | (justify left) 2307 | ) 2308 | ) 2309 | (property "Value" "Output" 2310 | (at 185.42 87.6301 0) 2311 | (effects 2312 | (font 2313 | (size 1.27 1.27) 2314 | ) 2315 | (justify left) 2316 | ) 2317 | ) 2318 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" 2319 | (at 182.88 88.9 0) 2320 | (effects 2321 | (font 2322 | (size 1.27 1.27) 2323 | ) 2324 | (hide yes) 2325 | ) 2326 | ) 2327 | (property "Datasheet" "~" 2328 | (at 182.88 88.9 0) 2329 | (effects 2330 | (font 2331 | (size 1.27 1.27) 2332 | ) 2333 | (hide yes) 2334 | ) 2335 | ) 2336 | (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" 2337 | (at 182.88 88.9 0) 2338 | (effects 2339 | (font 2340 | (size 1.27 1.27) 2341 | ) 2342 | (hide yes) 2343 | ) 2344 | ) 2345 | (property "LCSC" "" 2346 | (at 182.88 88.9 0) 2347 | (effects 2348 | (font 2349 | (size 1.27 1.27) 2350 | ) 2351 | ) 2352 | ) 2353 | (pin "3" 2354 | (uuid "798e9aa1-dda4-463f-865d-3473031ce508") 2355 | ) 2356 | (pin "2" 2357 | (uuid "be36a003-3c9f-484e-b103-e28ff1e78afd") 2358 | ) 2359 | (pin "1" 2360 | (uuid "1b6bd074-7211-4bc8-b28a-d0fccff05550") 2361 | ) 2362 | (instances 2363 | (project "" 2364 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2365 | (reference "J2") 2366 | (unit 1) 2367 | ) 2368 | ) 2369 | ) 2370 | ) 2371 | (symbol 2372 | (lib_id "power:GND") 2373 | (at 133.35 106.68 0) 2374 | (unit 1) 2375 | (exclude_from_sim no) 2376 | (in_bom yes) 2377 | (on_board yes) 2378 | (dnp no) 2379 | (fields_autoplaced yes) 2380 | (uuid "211dadcf-2700-4d7f-bab5-e5ce16bafa3a") 2381 | (property "Reference" "#PWR01" 2382 | (at 133.35 113.03 0) 2383 | (effects 2384 | (font 2385 | (size 1.27 1.27) 2386 | ) 2387 | (hide yes) 2388 | ) 2389 | ) 2390 | (property "Value" "GND" 2391 | (at 133.35 111.76 0) 2392 | (effects 2393 | (font 2394 | (size 1.27 1.27) 2395 | ) 2396 | ) 2397 | ) 2398 | (property "Footprint" "" 2399 | (at 133.35 106.68 0) 2400 | (effects 2401 | (font 2402 | (size 1.27 1.27) 2403 | ) 2404 | (hide yes) 2405 | ) 2406 | ) 2407 | (property "Datasheet" "" 2408 | (at 133.35 106.68 0) 2409 | (effects 2410 | (font 2411 | (size 1.27 1.27) 2412 | ) 2413 | (hide yes) 2414 | ) 2415 | ) 2416 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 2417 | (at 133.35 106.68 0) 2418 | (effects 2419 | (font 2420 | (size 1.27 1.27) 2421 | ) 2422 | (hide yes) 2423 | ) 2424 | ) 2425 | (pin "1" 2426 | (uuid "f5d71cd7-cb9c-491c-8ed9-2202b5da1249") 2427 | ) 2428 | (instances 2429 | (project "" 2430 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2431 | (reference "#PWR01") 2432 | (unit 1) 2433 | ) 2434 | ) 2435 | ) 2436 | ) 2437 | (symbol 2438 | (lib_id "Device:D_Schottky_Small") 2439 | (at 72.39 76.2 180) 2440 | (unit 1) 2441 | (exclude_from_sim no) 2442 | (in_bom yes) 2443 | (on_board yes) 2444 | (dnp no) 2445 | (fields_autoplaced yes) 2446 | (uuid "2cafd49b-7fc7-425c-9ce8-a2388e660d5b") 2447 | (property "Reference" "D1" 2448 | (at 72.644 72.39 0) 2449 | (effects 2450 | (font 2451 | (size 1.27 1.27) 2452 | ) 2453 | ) 2454 | ) 2455 | (property "Value" "D_Schottky_Small" 2456 | (at 72.644 72.39 0) 2457 | (effects 2458 | (font 2459 | (size 1.27 1.27) 2460 | ) 2461 | (hide yes) 2462 | ) 2463 | ) 2464 | (property "Footprint" "Diode_SMD:D_SMA" 2465 | (at 72.39 76.2 90) 2466 | (effects 2467 | (font 2468 | (size 1.27 1.27) 2469 | ) 2470 | (hide yes) 2471 | ) 2472 | ) 2473 | (property "Datasheet" "~" 2474 | (at 72.39 76.2 90) 2475 | (effects 2476 | (font 2477 | (size 1.27 1.27) 2478 | ) 2479 | (hide yes) 2480 | ) 2481 | ) 2482 | (property "Description" "Schottky diode, small symbol" 2483 | (at 72.39 76.2 0) 2484 | (effects 2485 | (font 2486 | (size 1.27 1.27) 2487 | ) 2488 | (hide yes) 2489 | ) 2490 | ) 2491 | (property "LCSC" "C14996" 2492 | (at 72.39 76.2 0) 2493 | (effects 2494 | (font 2495 | (size 1.27 1.27) 2496 | ) 2497 | (hide yes) 2498 | ) 2499 | ) 2500 | (pin "1" 2501 | (uuid "2eff7116-a279-4f05-bccb-0248b1a48519") 2502 | ) 2503 | (pin "2" 2504 | (uuid "76378ef9-1c8d-4eb0-8be6-220c8146d530") 2505 | ) 2506 | (instances 2507 | (project "" 2508 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2509 | (reference "D1") 2510 | (unit 1) 2511 | ) 2512 | ) 2513 | ) 2514 | ) 2515 | (symbol 2516 | (lib_id "Device:L_Small") 2517 | (at 153.67 78.74 90) 2518 | (unit 1) 2519 | (exclude_from_sim no) 2520 | (in_bom yes) 2521 | (on_board yes) 2522 | (dnp no) 2523 | (fields_autoplaced yes) 2524 | (uuid "3c3f992b-194c-4cb3-876a-869e72be879d") 2525 | (property "Reference" "L1" 2526 | (at 153.67 73.66 90) 2527 | (effects 2528 | (font 2529 | (size 1.27 1.27) 2530 | ) 2531 | ) 2532 | ) 2533 | (property "Value" "33uH" 2534 | (at 153.67 76.2 90) 2535 | (effects 2536 | (font 2537 | (size 1.27 1.27) 2538 | ) 2539 | ) 2540 | ) 2541 | (property "Footprint" "Inductor_SMD:L_1812_4532Metric" 2542 | (at 153.67 78.74 0) 2543 | (effects 2544 | (font 2545 | (size 1.27 1.27) 2546 | ) 2547 | (hide yes) 2548 | ) 2549 | ) 2550 | (property "Datasheet" "~" 2551 | (at 153.67 78.74 0) 2552 | (effects 2553 | (font 2554 | (size 1.27 1.27) 2555 | ) 2556 | (hide yes) 2557 | ) 2558 | ) 2559 | (property "Description" "Inductor, small symbol" 2560 | (at 153.67 78.74 0) 2561 | (effects 2562 | (font 2563 | (size 1.27 1.27) 2564 | ) 2565 | (hide yes) 2566 | ) 2567 | ) 2568 | (property "LCSC" "C394127" 2569 | (at 153.67 78.74 0) 2570 | (effects 2571 | (font 2572 | (size 1.27 1.27) 2573 | ) 2574 | (hide yes) 2575 | ) 2576 | ) 2577 | (pin "2" 2578 | (uuid "d6a8e086-9f1c-4ae4-a635-c3d6d20265e5") 2579 | ) 2580 | (pin "1" 2581 | (uuid "56340957-d5b0-4a34-bd59-c6fd16e207bd") 2582 | ) 2583 | (instances 2584 | (project "" 2585 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2586 | (reference "L1") 2587 | (unit 1) 2588 | ) 2589 | ) 2590 | ) 2591 | ) 2592 | (symbol 2593 | (lib_id "Mechanical:MountingHole") 2594 | (at 50.8 116.84 0) 2595 | (unit 1) 2596 | (exclude_from_sim no) 2597 | (in_bom no) 2598 | (on_board yes) 2599 | (dnp no) 2600 | (fields_autoplaced yes) 2601 | (uuid "436492d0-832c-4935-88e3-badbedefd129") 2602 | (property "Reference" "H3" 2603 | (at 53.34 115.5699 0) 2604 | (effects 2605 | (font 2606 | (size 1.27 1.27) 2607 | ) 2608 | (justify left) 2609 | (hide yes) 2610 | ) 2611 | ) 2612 | (property "Value" "MountingHole" 2613 | (at 53.34 118.1099 0) 2614 | (effects 2615 | (font 2616 | (size 1.27 1.27) 2617 | ) 2618 | (justify left) 2619 | (hide yes) 2620 | ) 2621 | ) 2622 | (property "Footprint" "MountingHole:MountingHole_2.2mm_M2" 2623 | (at 50.8 116.84 0) 2624 | (effects 2625 | (font 2626 | (size 1.27 1.27) 2627 | ) 2628 | (hide yes) 2629 | ) 2630 | ) 2631 | (property "Datasheet" "~" 2632 | (at 50.8 116.84 0) 2633 | (effects 2634 | (font 2635 | (size 1.27 1.27) 2636 | ) 2637 | (hide yes) 2638 | ) 2639 | ) 2640 | (property "Description" "Mounting Hole without connection" 2641 | (at 50.8 116.84 0) 2642 | (effects 2643 | (font 2644 | (size 1.27 1.27) 2645 | ) 2646 | (hide yes) 2647 | ) 2648 | ) 2649 | (instances 2650 | (project "" 2651 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2652 | (reference "H3") 2653 | (unit 1) 2654 | ) 2655 | ) 2656 | ) 2657 | ) 2658 | (symbol 2659 | (lib_id "Mechanical:MountingHole") 2660 | (at 50.8 60.96 0) 2661 | (unit 1) 2662 | (exclude_from_sim no) 2663 | (in_bom no) 2664 | (on_board yes) 2665 | (dnp no) 2666 | (fields_autoplaced yes) 2667 | (uuid "5daed5ad-c002-4459-88a5-b1528b65fca7") 2668 | (property "Reference" "H1" 2669 | (at 53.34 59.6899 0) 2670 | (effects 2671 | (font 2672 | (size 1.27 1.27) 2673 | ) 2674 | (justify left) 2675 | (hide yes) 2676 | ) 2677 | ) 2678 | (property "Value" "MountingHole" 2679 | (at 53.34 62.2299 0) 2680 | (effects 2681 | (font 2682 | (size 1.27 1.27) 2683 | ) 2684 | (justify left) 2685 | (hide yes) 2686 | ) 2687 | ) 2688 | (property "Footprint" "MountingHole:MountingHole_2.2mm_M2" 2689 | (at 50.8 60.96 0) 2690 | (effects 2691 | (font 2692 | (size 1.27 1.27) 2693 | ) 2694 | (hide yes) 2695 | ) 2696 | ) 2697 | (property "Datasheet" "~" 2698 | (at 50.8 60.96 0) 2699 | (effects 2700 | (font 2701 | (size 1.27 1.27) 2702 | ) 2703 | (hide yes) 2704 | ) 2705 | ) 2706 | (property "Description" "Mounting Hole without connection" 2707 | (at 50.8 60.96 0) 2708 | (effects 2709 | (font 2710 | (size 1.27 1.27) 2711 | ) 2712 | (hide yes) 2713 | ) 2714 | ) 2715 | (instances 2716 | (project "" 2717 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2718 | (reference "H1") 2719 | (unit 1) 2720 | ) 2721 | ) 2722 | ) 2723 | ) 2724 | (symbol 2725 | (lib_id "Connector:Screw_Terminal_01x02") 2726 | (at 57.15 88.9 180) 2727 | (unit 1) 2728 | (exclude_from_sim no) 2729 | (in_bom no) 2730 | (on_board yes) 2731 | (dnp no) 2732 | (uuid "6e4d1d87-b514-4520-8acb-95fffbfa359c") 2733 | (property "Reference" "J1" 2734 | (at 57.15 80.01 0) 2735 | (effects 2736 | (font 2737 | (size 1.27 1.27) 2738 | ) 2739 | ) 2740 | ) 2741 | (property "Value" "Input" 2742 | (at 57.15 82.55 0) 2743 | (effects 2744 | (font 2745 | (size 1.27 1.27) 2746 | ) 2747 | ) 2748 | ) 2749 | (property "Footprint" "Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical" 2750 | (at 57.15 88.9 0) 2751 | (effects 2752 | (font 2753 | (size 1.27 1.27) 2754 | ) 2755 | (hide yes) 2756 | ) 2757 | ) 2758 | (property "Datasheet" "~" 2759 | (at 57.15 88.9 0) 2760 | (effects 2761 | (font 2762 | (size 1.27 1.27) 2763 | ) 2764 | (hide yes) 2765 | ) 2766 | ) 2767 | (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" 2768 | (at 57.15 88.9 0) 2769 | (effects 2770 | (font 2771 | (size 1.27 1.27) 2772 | ) 2773 | (hide yes) 2774 | ) 2775 | ) 2776 | (property "LCSC" "" 2777 | (at 57.15 88.9 0) 2778 | (effects 2779 | (font 2780 | (size 1.27 1.27) 2781 | ) 2782 | ) 2783 | ) 2784 | (pin "1" 2785 | (uuid "18d3a4aa-7cd1-4af6-96dc-8c6d839a53db") 2786 | ) 2787 | (pin "2" 2788 | (uuid "faec876f-e8a9-4dc1-aa32-472731d2e25e") 2789 | ) 2790 | (instances 2791 | (project "" 2792 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2793 | (reference "J1") 2794 | (unit 1) 2795 | ) 2796 | ) 2797 | ) 2798 | ) 2799 | (symbol 2800 | (lib_id "Connector_Generic:Conn_01x02") 2801 | (at 102.87 86.36 0) 2802 | (mirror y) 2803 | (unit 1) 2804 | (exclude_from_sim no) 2805 | (in_bom no) 2806 | (on_board yes) 2807 | (dnp no) 2808 | (uuid "728b6198-c0d3-48cf-9e62-f9a88d4b5c12") 2809 | (property "Reference" "J3" 2810 | (at 102.87 95.25 0) 2811 | (effects 2812 | (font 2813 | (size 1.27 1.27) 2814 | ) 2815 | ) 2816 | ) 2817 | (property "Value" "Mode" 2818 | (at 102.87 92.71 0) 2819 | (effects 2820 | (font 2821 | (size 1.27 1.27) 2822 | ) 2823 | ) 2824 | ) 2825 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" 2826 | (at 102.87 86.36 0) 2827 | (effects 2828 | (font 2829 | (size 1.27 1.27) 2830 | ) 2831 | (hide yes) 2832 | ) 2833 | ) 2834 | (property "Datasheet" "~" 2835 | (at 102.87 86.36 0) 2836 | (effects 2837 | (font 2838 | (size 1.27 1.27) 2839 | ) 2840 | (hide yes) 2841 | ) 2842 | ) 2843 | (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" 2844 | (at 102.87 86.36 0) 2845 | (effects 2846 | (font 2847 | (size 1.27 1.27) 2848 | ) 2849 | (hide yes) 2850 | ) 2851 | ) 2852 | (property "LCSC" "" 2853 | (at 102.87 86.36 0) 2854 | (effects 2855 | (font 2856 | (size 1.27 1.27) 2857 | ) 2858 | ) 2859 | ) 2860 | (pin "1" 2861 | (uuid "ef183716-a2b8-4d00-a4ec-ff6028fcd381") 2862 | ) 2863 | (pin "2" 2864 | (uuid "f960b3f2-18b7-4c9f-aa58-2758ad44612c") 2865 | ) 2866 | (instances 2867 | (project "" 2868 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2869 | (reference "J3") 2870 | (unit 1) 2871 | ) 2872 | ) 2873 | ) 2874 | ) 2875 | (symbol 2876 | (lib_id "Mechanical:MountingHole") 2877 | (at 186.69 113.03 0) 2878 | (unit 1) 2879 | (exclude_from_sim no) 2880 | (in_bom no) 2881 | (on_board yes) 2882 | (dnp no) 2883 | (fields_autoplaced yes) 2884 | (uuid "86205d93-3919-4a03-ba13-46122d570089") 2885 | (property "Reference" "H4" 2886 | (at 189.23 111.7599 0) 2887 | (effects 2888 | (font 2889 | (size 1.27 1.27) 2890 | ) 2891 | (justify left) 2892 | (hide yes) 2893 | ) 2894 | ) 2895 | (property "Value" "MountingHole" 2896 | (at 189.23 114.2999 0) 2897 | (effects 2898 | (font 2899 | (size 1.27 1.27) 2900 | ) 2901 | (justify left) 2902 | (hide yes) 2903 | ) 2904 | ) 2905 | (property "Footprint" "MountingHole:MountingHole_2.2mm_M2" 2906 | (at 186.69 113.03 0) 2907 | (effects 2908 | (font 2909 | (size 1.27 1.27) 2910 | ) 2911 | (hide yes) 2912 | ) 2913 | ) 2914 | (property "Datasheet" "~" 2915 | (at 186.69 113.03 0) 2916 | (effects 2917 | (font 2918 | (size 1.27 1.27) 2919 | ) 2920 | (hide yes) 2921 | ) 2922 | ) 2923 | (property "Description" "Mounting Hole without connection" 2924 | (at 186.69 113.03 0) 2925 | (effects 2926 | (font 2927 | (size 1.27 1.27) 2928 | ) 2929 | (hide yes) 2930 | ) 2931 | ) 2932 | (instances 2933 | (project "" 2934 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 2935 | (reference "H4") 2936 | (unit 1) 2937 | ) 2938 | ) 2939 | ) 2940 | ) 2941 | (symbol 2942 | (lib_id "Diode:SM6T68A") 2943 | (at 77.47 87.63 270) 2944 | (unit 1) 2945 | (exclude_from_sim no) 2946 | (in_bom yes) 2947 | (on_board yes) 2948 | (dnp no) 2949 | (fields_autoplaced yes) 2950 | (uuid "899a5161-cf60-43d0-922d-bf30ad45e54a") 2951 | (property "Reference" "D2" 2952 | (at 80.01 86.3599 90) 2953 | (effects 2954 | (font 2955 | (size 1.27 1.27) 2956 | ) 2957 | (justify left) 2958 | ) 2959 | ) 2960 | (property "Value" "SM6T68A" 2961 | (at 80.01 88.8999 90) 2962 | (effects 2963 | (font 2964 | (size 1.27 1.27) 2965 | ) 2966 | (justify left) 2967 | ) 2968 | ) 2969 | (property "Footprint" "Diode_SMD:D_SMB" 2970 | (at 72.39 87.63 0) 2971 | (effects 2972 | (font 2973 | (size 1.27 1.27) 2974 | ) 2975 | (hide yes) 2976 | ) 2977 | ) 2978 | (property "Datasheet" "https://www.st.com/resource/en/datasheet/sm6t.pdf" 2979 | (at 77.47 86.36 0) 2980 | (effects 2981 | (font 2982 | (size 1.27 1.27) 2983 | ) 2984 | (hide yes) 2985 | ) 2986 | ) 2987 | (property "Description" "600W unidirectional Transil Transient Voltage Suppressor, 68Vrwm, DO-214AA" 2988 | (at 77.47 87.63 0) 2989 | (effects 2990 | (font 2991 | (size 1.27 1.27) 2992 | ) 2993 | (hide yes) 2994 | ) 2995 | ) 2996 | (property "LCSC" "C133686" 2997 | (at 77.47 87.63 0) 2998 | (effects 2999 | (font 3000 | (size 1.27 1.27) 3001 | ) 3002 | (hide yes) 3003 | ) 3004 | ) 3005 | (pin "1" 3006 | (uuid "43efeeb8-19a9-434f-9856-8ee85a17f08a") 3007 | ) 3008 | (pin "2" 3009 | (uuid "66ba5890-ca5f-4959-8859-41c2363c3ae5") 3010 | ) 3011 | (instances 3012 | (project "" 3013 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 3014 | (reference "D2") 3015 | (unit 1) 3016 | ) 3017 | ) 3018 | ) 3019 | ) 3020 | (symbol 3021 | (lib_id "power:PWR_FLAG") 3022 | (at 64.77 73.66 0) 3023 | (unit 1) 3024 | (exclude_from_sim no) 3025 | (in_bom yes) 3026 | (on_board yes) 3027 | (dnp no) 3028 | (fields_autoplaced yes) 3029 | (uuid "a5b9114f-4dab-4ec7-a514-c8d38e38391a") 3030 | (property "Reference" "#FLG01" 3031 | (at 64.77 71.755 0) 3032 | (effects 3033 | (font 3034 | (size 1.27 1.27) 3035 | ) 3036 | (hide yes) 3037 | ) 3038 | ) 3039 | (property "Value" "PWR_FLAG" 3040 | (at 64.77 68.58 0) 3041 | (effects 3042 | (font 3043 | (size 1.27 1.27) 3044 | ) 3045 | (hide yes) 3046 | ) 3047 | ) 3048 | (property "Footprint" "" 3049 | (at 64.77 73.66 0) 3050 | (effects 3051 | (font 3052 | (size 1.27 1.27) 3053 | ) 3054 | (hide yes) 3055 | ) 3056 | ) 3057 | (property "Datasheet" "~" 3058 | (at 64.77 73.66 0) 3059 | (effects 3060 | (font 3061 | (size 1.27 1.27) 3062 | ) 3063 | (hide yes) 3064 | ) 3065 | ) 3066 | (property "Description" "Special symbol for telling ERC where power comes from" 3067 | (at 64.77 73.66 0) 3068 | (effects 3069 | (font 3070 | (size 1.27 1.27) 3071 | ) 3072 | (hide yes) 3073 | ) 3074 | ) 3075 | (pin "1" 3076 | (uuid "9b7c5c2f-6927-4699-ad05-646daac8a995") 3077 | ) 3078 | (instances 3079 | (project "" 3080 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 3081 | (reference "#FLG01") 3082 | (unit 1) 3083 | ) 3084 | ) 3085 | ) 3086 | ) 3087 | (symbol 3088 | (lib_id "Device:C_Small") 3089 | (at 154.94 90.17 0) 3090 | (unit 1) 3091 | (exclude_from_sim no) 3092 | (in_bom yes) 3093 | (on_board yes) 3094 | (dnp no) 3095 | (fields_autoplaced yes) 3096 | (uuid "b0742825-4623-40fa-a4c6-540fb95801f5") 3097 | (property "Reference" "C3" 3098 | (at 157.48 88.9062 0) 3099 | (effects 3100 | (font 3101 | (size 1.27 1.27) 3102 | ) 3103 | (justify left) 3104 | ) 3105 | ) 3106 | (property "Value" "10uF" 3107 | (at 157.48 91.4462 0) 3108 | (effects 3109 | (font 3110 | (size 1.27 1.27) 3111 | ) 3112 | (justify left) 3113 | ) 3114 | ) 3115 | (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" 3116 | (at 154.94 90.17 0) 3117 | (effects 3118 | (font 3119 | (size 1.27 1.27) 3120 | ) 3121 | (hide yes) 3122 | ) 3123 | ) 3124 | (property "Datasheet" "~" 3125 | (at 154.94 90.17 0) 3126 | (effects 3127 | (font 3128 | (size 1.27 1.27) 3129 | ) 3130 | (hide yes) 3131 | ) 3132 | ) 3133 | (property "Description" "Unpolarized capacitor, small symbol" 3134 | (at 154.94 90.17 0) 3135 | (effects 3136 | (font 3137 | (size 1.27 1.27) 3138 | ) 3139 | (hide yes) 3140 | ) 3141 | ) 3142 | (property "LCSC" "C15850" 3143 | (at 154.94 90.17 0) 3144 | (effects 3145 | (font 3146 | (size 1.27 1.27) 3147 | ) 3148 | (hide yes) 3149 | ) 3150 | ) 3151 | (pin "1" 3152 | (uuid "c3b07812-e2cb-4483-a4d0-72a5a255f690") 3153 | ) 3154 | (pin "2" 3155 | (uuid "3b3db70a-9e82-4801-a337-678262e10689") 3156 | ) 3157 | (instances 3158 | (project "" 3159 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 3160 | (reference "C3") 3161 | (unit 1) 3162 | ) 3163 | ) 3164 | ) 3165 | ) 3166 | (symbol 3167 | (lib_id "Device:C_Small") 3168 | (at 92.71 86.36 0) 3169 | (unit 1) 3170 | (exclude_from_sim no) 3171 | (in_bom yes) 3172 | (on_board yes) 3173 | (dnp no) 3174 | (fields_autoplaced yes) 3175 | (uuid "e10679a9-e042-456f-8f6b-b8b9d6a0b434") 3176 | (property "Reference" "C1" 3177 | (at 95.25 85.0962 0) 3178 | (effects 3179 | (font 3180 | (size 1.27 1.27) 3181 | ) 3182 | (justify left) 3183 | ) 3184 | ) 3185 | (property "Value" "1uF" 3186 | (at 95.25 87.6362 0) 3187 | (effects 3188 | (font 3189 | (size 1.27 1.27) 3190 | ) 3191 | (justify left) 3192 | ) 3193 | ) 3194 | (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" 3195 | (at 92.71 86.36 0) 3196 | (effects 3197 | (font 3198 | (size 1.27 1.27) 3199 | ) 3200 | (hide yes) 3201 | ) 3202 | ) 3203 | (property "Datasheet" "~" 3204 | (at 92.71 86.36 0) 3205 | (effects 3206 | (font 3207 | (size 1.27 1.27) 3208 | ) 3209 | (hide yes) 3210 | ) 3211 | ) 3212 | (property "Description" "Unpolarized capacitor, small symbol" 3213 | (at 92.71 86.36 0) 3214 | (effects 3215 | (font 3216 | (size 1.27 1.27) 3217 | ) 3218 | (hide yes) 3219 | ) 3220 | ) 3221 | (property "LCSC" "C70463" 3222 | (at 92.71 86.36 0) 3223 | (effects 3224 | (font 3225 | (size 1.27 1.27) 3226 | ) 3227 | (hide yes) 3228 | ) 3229 | ) 3230 | (pin "1" 3231 | (uuid "f7850d78-e620-4e8a-84fd-d2ac06f093c9") 3232 | ) 3233 | (pin "2" 3234 | (uuid "d0503cbd-68f8-46a4-90a3-233c57f50a0c") 3235 | ) 3236 | (instances 3237 | (project "" 3238 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 3239 | (reference "C1") 3240 | (unit 1) 3241 | ) 3242 | ) 3243 | ) 3244 | ) 3245 | (symbol 3246 | (lib_id "power:PWR_FLAG") 3247 | (at 64.77 100.33 180) 3248 | (unit 1) 3249 | (exclude_from_sim no) 3250 | (in_bom yes) 3251 | (on_board yes) 3252 | (dnp no) 3253 | (fields_autoplaced yes) 3254 | (uuid "f1255c4b-efda-4c98-b410-b2ab0153a548") 3255 | (property "Reference" "#FLG02" 3256 | (at 64.77 102.235 0) 3257 | (effects 3258 | (font 3259 | (size 1.27 1.27) 3260 | ) 3261 | (hide yes) 3262 | ) 3263 | ) 3264 | (property "Value" "PWR_FLAG" 3265 | (at 64.77 105.41 0) 3266 | (effects 3267 | (font 3268 | (size 1.27 1.27) 3269 | ) 3270 | (hide yes) 3271 | ) 3272 | ) 3273 | (property "Footprint" "" 3274 | (at 64.77 100.33 0) 3275 | (effects 3276 | (font 3277 | (size 1.27 1.27) 3278 | ) 3279 | (hide yes) 3280 | ) 3281 | ) 3282 | (property "Datasheet" "~" 3283 | (at 64.77 100.33 0) 3284 | (effects 3285 | (font 3286 | (size 1.27 1.27) 3287 | ) 3288 | (hide yes) 3289 | ) 3290 | ) 3291 | (property "Description" "Special symbol for telling ERC where power comes from" 3292 | (at 64.77 100.33 0) 3293 | (effects 3294 | (font 3295 | (size 1.27 1.27) 3296 | ) 3297 | (hide yes) 3298 | ) 3299 | ) 3300 | (pin "1" 3301 | (uuid "110f17cb-c604-4af4-8aef-f300a3f9f54d") 3302 | ) 3303 | (instances 3304 | (project "" 3305 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 3306 | (reference "#FLG02") 3307 | (unit 1) 3308 | ) 3309 | ) 3310 | ) 3311 | ) 3312 | (symbol 3313 | (lib_id "Mechanical:MountingHole") 3314 | (at 185.42 60.96 0) 3315 | (unit 1) 3316 | (exclude_from_sim no) 3317 | (in_bom no) 3318 | (on_board yes) 3319 | (dnp no) 3320 | (fields_autoplaced yes) 3321 | (uuid "f41828dd-5232-4ae6-b01c-0092504bff0e") 3322 | (property "Reference" "H2" 3323 | (at 187.96 59.6899 0) 3324 | (effects 3325 | (font 3326 | (size 1.27 1.27) 3327 | ) 3328 | (justify left) 3329 | (hide yes) 3330 | ) 3331 | ) 3332 | (property "Value" "MountingHole" 3333 | (at 187.96 62.2299 0) 3334 | (effects 3335 | (font 3336 | (size 1.27 1.27) 3337 | ) 3338 | (justify left) 3339 | (hide yes) 3340 | ) 3341 | ) 3342 | (property "Footprint" "MountingHole:MountingHole_2.2mm_M2" 3343 | (at 185.42 60.96 0) 3344 | (effects 3345 | (font 3346 | (size 1.27 1.27) 3347 | ) 3348 | (hide yes) 3349 | ) 3350 | ) 3351 | (property "Datasheet" "~" 3352 | (at 185.42 60.96 0) 3353 | (effects 3354 | (font 3355 | (size 1.27 1.27) 3356 | ) 3357 | (hide yes) 3358 | ) 3359 | ) 3360 | (property "Description" "Mounting Hole without connection" 3361 | (at 185.42 60.96 0) 3362 | (effects 3363 | (font 3364 | (size 1.27 1.27) 3365 | ) 3366 | (hide yes) 3367 | ) 3368 | ) 3369 | (instances 3370 | (project "" 3371 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 3372 | (reference "H2") 3373 | (unit 1) 3374 | ) 3375 | ) 3376 | ) 3377 | ) 3378 | (symbol 3379 | (lib_id "Device:C_Small") 3380 | (at 113.03 93.98 0) 3381 | (unit 1) 3382 | (exclude_from_sim no) 3383 | (in_bom yes) 3384 | (on_board yes) 3385 | (dnp no) 3386 | (fields_autoplaced yes) 3387 | (uuid "ff196b08-41e1-43f5-9d92-f98fc6422393") 3388 | (property "Reference" "C2" 3389 | (at 115.57 92.7162 0) 3390 | (effects 3391 | (font 3392 | (size 1.27 1.27) 3393 | ) 3394 | (justify left) 3395 | ) 3396 | ) 3397 | (property "Value" "1uF" 3398 | (at 115.57 95.2562 0) 3399 | (effects 3400 | (font 3401 | (size 1.27 1.27) 3402 | ) 3403 | (justify left) 3404 | ) 3405 | ) 3406 | (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" 3407 | (at 113.03 93.98 0) 3408 | (effects 3409 | (font 3410 | (size 1.27 1.27) 3411 | ) 3412 | (hide yes) 3413 | ) 3414 | ) 3415 | (property "Datasheet" "~" 3416 | (at 113.03 93.98 0) 3417 | (effects 3418 | (font 3419 | (size 1.27 1.27) 3420 | ) 3421 | (hide yes) 3422 | ) 3423 | ) 3424 | (property "Description" "Unpolarized capacitor, small symbol" 3425 | (at 113.03 93.98 0) 3426 | (effects 3427 | (font 3428 | (size 1.27 1.27) 3429 | ) 3430 | (hide yes) 3431 | ) 3432 | ) 3433 | (property "LCSC" "C70463" 3434 | (at 113.03 93.98 0) 3435 | (effects 3436 | (font 3437 | (size 1.27 1.27) 3438 | ) 3439 | (hide yes) 3440 | ) 3441 | ) 3442 | (pin "1" 3443 | (uuid "783eeb0d-5b2e-443e-96dd-a2c685b77f32") 3444 | ) 3445 | (pin "2" 3446 | (uuid "497ed806-500c-4ff7-8eee-ae10f70fdcef") 3447 | ) 3448 | (instances 3449 | (project "" 3450 | (path "/8ac06a75-cb1a-4ec7-ad05-a159880d696b" 3451 | (reference "C2") 3452 | (unit 1) 3453 | ) 3454 | ) 3455 | ) 3456 | ) 3457 | (sheet_instances 3458 | (path "/" 3459 | (page "1") 3460 | ) 3461 | ) 3462 | (embedded_fonts no) 3463 | ) 3464 | -------------------------------------------------------------------------------- /kicad-max15062-breakout.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb 2 | (version 20241229) 3 | (generator "pcbnew") 4 | (generator_version "9.0") 5 | (general 6 | (thickness 1.6) 7 | (legacy_teardrops no) 8 | ) 9 | (paper "A4") 10 | (layers 11 | (0 "F.Cu" mixed) 12 | (2 "B.Cu" power) 13 | (13 "F.Paste" user) 14 | (15 "B.Paste" user) 15 | (5 "F.SilkS" user "F.Silkscreen") 16 | (7 "B.SilkS" user "B.Silkscreen") 17 | (1 "F.Mask" user) 18 | (3 "B.Mask" user) 19 | (25 "Edge.Cuts" user) 20 | (27 "Margin" user) 21 | (31 "F.CrtYd" user "F.Courtyard") 22 | (29 "B.CrtYd" user "B.Courtyard") 23 | (35 "F.Fab" user) 24 | (33 "B.Fab" user) 25 | ) 26 | (setup 27 | (stackup 28 | (layer "F.SilkS" 29 | (type "Top Silk Screen") 30 | ) 31 | (layer "F.Paste" 32 | (type "Top Solder Paste") 33 | ) 34 | (layer "F.Mask" 35 | (type "Top Solder Mask") 36 | (thickness 0.01) 37 | ) 38 | (layer "F.Cu" 39 | (type "copper") 40 | (thickness 0.035) 41 | ) 42 | (layer "dielectric 1" 43 | (type "core") 44 | (thickness 1.51) 45 | (material "FR4") 46 | (epsilon_r 4.5) 47 | (loss_tangent 0.02) 48 | ) 49 | (layer "B.Cu" 50 | (type "copper") 51 | (thickness 0.035) 52 | ) 53 | (layer "B.Mask" 54 | (type "Bottom Solder Mask") 55 | (thickness 0.01) 56 | ) 57 | (layer "B.Paste" 58 | (type "Bottom Solder Paste") 59 | ) 60 | (layer "B.SilkS" 61 | (type "Bottom Silk Screen") 62 | ) 63 | (copper_finish "None") 64 | (dielectric_constraints no) 65 | ) 66 | (pad_to_mask_clearance 0) 67 | (allow_soldermask_bridges_in_footprints no) 68 | (tenting front back) 69 | (grid_origin 45 55) 70 | (pcbplotparams 71 | (layerselection 0x00000000_00000000_55555555_5755f5ff) 72 | (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000) 73 | (disableapertmacros no) 74 | (usegerberextensions no) 75 | (usegerberattributes yes) 76 | (usegerberadvancedattributes yes) 77 | (creategerberjobfile yes) 78 | (dashed_line_dash_ratio 12.000000) 79 | (dashed_line_gap_ratio 3.000000) 80 | (svgprecision 4) 81 | (plotframeref no) 82 | (mode 1) 83 | (useauxorigin no) 84 | (hpglpennumber 1) 85 | (hpglpenspeed 20) 86 | (hpglpendiameter 15.000000) 87 | (pdf_front_fp_property_popups yes) 88 | (pdf_back_fp_property_popups yes) 89 | (pdf_metadata yes) 90 | (pdf_single_document no) 91 | (dxfpolygonmode yes) 92 | (dxfimperialunits yes) 93 | (dxfusepcbnewfont yes) 94 | (psnegative no) 95 | (psa4output no) 96 | (plot_black_and_white yes) 97 | (sketchpadsonfab no) 98 | (plotpadnumbers no) 99 | (hidednponfab no) 100 | (sketchdnponfab yes) 101 | (crossoutdnponfab yes) 102 | (subtractmaskfromsilk no) 103 | (outputformat 4) 104 | (mirror no) 105 | (drillshape 0) 106 | (scaleselection 1) 107 | (outputdirectory "jlcpcb-gerbers/") 108 | ) 109 | ) 110 | (net 0 "") 111 | (net 1 "GND") 112 | (net 2 "Net-(U1-VCC)") 113 | (net 3 "Net-(J2-Pin_2)") 114 | (net 4 "Net-(J2-Pin_3)") 115 | (net 5 "Net-(J3-Pin_1)") 116 | (net 6 "Net-(U1-LX)") 117 | (net 7 "Net-(D1-K)") 118 | (net 8 "Net-(D1-A)") 119 | (footprint "Connector_Phoenix_MC:PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical" 120 | (layer "F.Cu") 121 | (uuid "19d5814a-2cfc-4738-af20-078f242baf39") 122 | (at 51.3925 69.25 90) 123 | (descr "Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical || order number: 1843606 8A 160V") 124 | (tags "phoenix_contact connector MCV_01x02_G_3.5mm") 125 | (property "Reference" "J1" 126 | (at -4 0 180) 127 | (layer "F.SilkS") 128 | (uuid "fe6968a5-54fc-44e2-be4c-f1fcb57875e6") 129 | (effects 130 | (font 131 | (size 1 1) 132 | (thickness 0.15) 133 | ) 134 | ) 135 | ) 136 | (property "Value" "Input" 137 | (at 7.25 -2.6425 180) 138 | (layer "F.SilkS") 139 | (uuid "e22a30b9-cca9-49c1-906c-6a947dae9641") 140 | (effects 141 | (font 142 | (size 1 1) 143 | (thickness 0.15) 144 | ) 145 | ) 146 | ) 147 | (property "Datasheet" "" 148 | (at 0 0 90) 149 | (layer "F.Fab") 150 | (hide yes) 151 | (uuid "08af4eab-471d-4de8-8c4a-ae33e02ec5ea") 152 | (effects 153 | (font 154 | (size 1.27 1.27) 155 | (thickness 0.15) 156 | ) 157 | ) 158 | ) 159 | (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" 160 | (at 0 0 90) 161 | (layer "F.Fab") 162 | (hide yes) 163 | (uuid "6fd0e7db-30e4-4781-8b97-cb2b8a0efce7") 164 | (effects 165 | (font 166 | (size 1.27 1.27) 167 | (thickness 0.15) 168 | ) 169 | ) 170 | ) 171 | (property "LCSC" "" 172 | (at 0 0 90) 173 | (unlocked yes) 174 | (layer "F.Fab") 175 | (hide yes) 176 | (uuid "8918cd44-b020-49d3-8da1-1429bb2b2fca") 177 | (effects 178 | (font 179 | (size 1 1) 180 | (thickness 0.15) 181 | ) 182 | ) 183 | ) 184 | (property ki_fp_filters "TerminalBlock*:*") 185 | (path "/6e4d1d87-b514-4520-8acb-95fffbfa359c") 186 | (sheetname "/") 187 | (sheetfile "kicad-max15062-breakout.kicad_sch") 188 | (attr through_hole exclude_from_pos_files exclude_from_bom) 189 | (fp_line 190 | (start -2.95 -4.75) 191 | (end -0.95 -4.75) 192 | (stroke 193 | (width 0.12) 194 | (type solid) 195 | ) 196 | (layer "F.SilkS") 197 | (uuid "f61db0e8-f6c5-436c-9976-52672b8eee56") 198 | ) 199 | (fp_line 200 | (start 6.06 -4.36) 201 | (end -2.56 -4.36) 202 | (stroke 203 | (width 0.12) 204 | (type solid) 205 | ) 206 | (layer "F.SilkS") 207 | (uuid "99fcf242-76df-471a-ab75-fb325aedd024") 208 | ) 209 | (fp_line 210 | (start -2.56 -4.36) 211 | (end -2.56 3.11) 212 | (stroke 213 | (width 0.12) 214 | (type solid) 215 | ) 216 | (layer "F.SilkS") 217 | (uuid "afbcd091-f443-49b3-8562-fc3f51380991") 218 | ) 219 | (fp_line 220 | (start -2.95 -3.5) 221 | (end -2.95 -4.75) 222 | (stroke 223 | (width 0.12) 224 | (type solid) 225 | ) 226 | (layer "F.SilkS") 227 | (uuid "62268bf4-bd12-4f11-abc8-d0aa0d92f4b5") 228 | ) 229 | (fp_line 230 | (start 5 -3.4) 231 | (end 4.75 -2.4) 232 | (stroke 233 | (width 0.12) 234 | (type solid) 235 | ) 236 | (layer "F.SilkS") 237 | (uuid "4a6d8ac0-0a0a-4333-a423-be101c0a6a30") 238 | ) 239 | (fp_line 240 | (start 2 -3.4) 241 | (end 5 -3.4) 242 | (stroke 243 | (width 0.12) 244 | (type solid) 245 | ) 246 | (layer "F.SilkS") 247 | (uuid "2717ef53-78f8-4666-9f4e-6864b8edbed5") 248 | ) 249 | (fp_line 250 | (start 1.5 -3.4) 251 | (end 1.25 -2.4) 252 | (stroke 253 | (width 0.12) 254 | (type solid) 255 | ) 256 | (layer "F.SilkS") 257 | (uuid "27bb859d-5951-4273-b22e-fed874a1be46") 258 | ) 259 | (fp_line 260 | (start -1.5 -3.4) 261 | (end 1.5 -3.4) 262 | (stroke 263 | (width 0.12) 264 | (type solid) 265 | ) 266 | (layer "F.SilkS") 267 | (uuid "93161c93-30d2-4a64-91e3-2ac0f9aae4fe") 268 | ) 269 | (fp_line 270 | (start 4.75 -2.4) 271 | (end 4.25 -2.4) 272 | (stroke 273 | (width 0.12) 274 | (type solid) 275 | ) 276 | (layer "F.SilkS") 277 | (uuid "7c5da06c-b0fc-4f3d-8b99-f2a6f5f4faa2") 278 | ) 279 | (fp_line 280 | (start 4.25 -2.4) 281 | (end 4.25 -2.05) 282 | (stroke 283 | (width 0.12) 284 | (type solid) 285 | ) 286 | (layer "F.SilkS") 287 | (uuid "55c64a84-00c8-4d9e-9726-00ee236a8847") 288 | ) 289 | (fp_line 290 | (start 2.75 -2.4) 291 | (end 2.25 -2.4) 292 | (stroke 293 | (width 0.12) 294 | (type solid) 295 | ) 296 | (layer "F.SilkS") 297 | (uuid "08507c99-8f25-43a2-b272-de8d41a597e6") 298 | ) 299 | (fp_line 300 | (start 2.25 -2.4) 301 | (end 2 -3.4) 302 | (stroke 303 | (width 0.12) 304 | (type solid) 305 | ) 306 | (layer "F.SilkS") 307 | (uuid "cc9c8699-9991-4d62-ab29-facb583d54c9") 308 | ) 309 | (fp_line 310 | (start 1.25 -2.4) 311 | (end 0.75 -2.4) 312 | (stroke 313 | (width 0.12) 314 | (type solid) 315 | ) 316 | (layer "F.SilkS") 317 | (uuid "b773cd64-89ac-4a01-bcbe-076761631508") 318 | ) 319 | (fp_line 320 | (start 0.75 -2.4) 321 | (end 0.75 -2.05) 322 | (stroke 323 | (width 0.12) 324 | (type solid) 325 | ) 326 | (layer "F.SilkS") 327 | (uuid "c03d291d-3de3-4e8c-8969-2f2e34dc4b68") 328 | ) 329 | (fp_line 330 | (start -0.75 -2.4) 331 | (end -1.25 -2.4) 332 | (stroke 333 | (width 0.12) 334 | (type solid) 335 | ) 336 | (layer "F.SilkS") 337 | (uuid "8a965dcf-0f9a-44c4-98d0-097fbc4cd53a") 338 | ) 339 | (fp_line 340 | (start -1.25 -2.4) 341 | (end -1.5 -3.4) 342 | (stroke 343 | (width 0.12) 344 | (type solid) 345 | ) 346 | (layer "F.SilkS") 347 | (uuid "0f1b1cc2-36df-4ff2-b53b-1af3c47a2f4e") 348 | ) 349 | (fp_line 350 | (start 5 -2.05) 351 | (end 5 2.25) 352 | (stroke 353 | (width 0.12) 354 | (type solid) 355 | ) 356 | (layer "F.SilkS") 357 | (uuid "61200f1e-7804-4712-b932-e75e80975110") 358 | ) 359 | (fp_line 360 | (start 4.25 -2.05) 361 | (end 5 -2.05) 362 | (stroke 363 | (width 0.12) 364 | (type solid) 365 | ) 366 | (layer "F.SilkS") 367 | (uuid "4a7cc8bd-63f8-4aee-be6c-024a594ead76") 368 | ) 369 | (fp_line 370 | (start 2.75 -2.05) 371 | (end 2.75 -2.4) 372 | (stroke 373 | (width 0.12) 374 | (type solid) 375 | ) 376 | (layer "F.SilkS") 377 | (uuid "23d68721-69cc-4a5c-9733-0f75848629c3") 378 | ) 379 | (fp_line 380 | (start 2 -2.05) 381 | (end 2.75 -2.05) 382 | (stroke 383 | (width 0.12) 384 | (type solid) 385 | ) 386 | (layer "F.SilkS") 387 | (uuid "33b44375-6ae5-4c55-a8c9-8bd3cb626ad1") 388 | ) 389 | (fp_line 390 | (start 1.5 -2.05) 391 | (end 1.5 2.25) 392 | (stroke 393 | (width 0.12) 394 | (type solid) 395 | ) 396 | (layer "F.SilkS") 397 | (uuid "766274ad-2452-41fb-9cb0-91f9e4286400") 398 | ) 399 | (fp_line 400 | (start 0.75 -2.05) 401 | (end 1.5 -2.05) 402 | (stroke 403 | (width 0.12) 404 | (type solid) 405 | ) 406 | (layer "F.SilkS") 407 | (uuid "0265b538-7306-4a7d-aa7a-32e0e0d19b7d") 408 | ) 409 | (fp_line 410 | (start -0.75 -2.05) 411 | (end -0.75 -2.4) 412 | (stroke 413 | (width 0.12) 414 | (type solid) 415 | ) 416 | (layer "F.SilkS") 417 | (uuid "3b0a6377-57f1-4ff4-8db5-ae6560b6f3d3") 418 | ) 419 | (fp_line 420 | (start -1.5 -2.05) 421 | (end -0.75 -2.05) 422 | (stroke 423 | (width 0.12) 424 | (type solid) 425 | ) 426 | (layer "F.SilkS") 427 | (uuid "51217f07-b427-444c-bba2-3b30f1e0476b") 428 | ) 429 | (fp_line 430 | (start 5 2.25) 431 | (end 4.25 2.25) 432 | (stroke 433 | (width 0.12) 434 | (type solid) 435 | ) 436 | (layer "F.SilkS") 437 | (uuid "83b2bd2f-99de-41ac-a683-e0e81ba53535") 438 | ) 439 | (fp_line 440 | (start 2.75 2.25) 441 | (end 2 2.25) 442 | (stroke 443 | (width 0.12) 444 | (type solid) 445 | ) 446 | (layer "F.SilkS") 447 | (uuid "e4b7cf09-00d7-41bd-8de8-21e27b471044") 448 | ) 449 | (fp_line 450 | (start 2 2.25) 451 | (end 2 -2.05) 452 | (stroke 453 | (width 0.12) 454 | (type solid) 455 | ) 456 | (layer "F.SilkS") 457 | (uuid "d2d8255b-8f7e-4d60-ba71-d701141adde0") 458 | ) 459 | (fp_line 460 | (start 1.5 2.25) 461 | (end 0.75 2.25) 462 | (stroke 463 | (width 0.12) 464 | (type solid) 465 | ) 466 | (layer "F.SilkS") 467 | (uuid "53844c8d-32fa-4178-a1e6-7cdb518a5e7a") 468 | ) 469 | (fp_line 470 | (start -0.75 2.25) 471 | (end -1.5 2.25) 472 | (stroke 473 | (width 0.12) 474 | (type solid) 475 | ) 476 | (layer "F.SilkS") 477 | (uuid "fc256554-c704-475a-ad5b-3fb15517276d") 478 | ) 479 | (fp_line 480 | (start -1.5 2.25) 481 | (end -1.5 -2.05) 482 | (stroke 483 | (width 0.12) 484 | (type solid) 485 | ) 486 | (layer "F.SilkS") 487 | (uuid "ee6a4c18-8269-4226-b053-5f3839271ba4") 488 | ) 489 | (fp_line 490 | (start 6.06 3.11) 491 | (end 6.06 -4.36) 492 | (stroke 493 | (width 0.12) 494 | (type solid) 495 | ) 496 | (layer "F.SilkS") 497 | (uuid "4f2859a1-1e71-4aa7-b37c-a584ee0b8bc0") 498 | ) 499 | (fp_line 500 | (start -2.56 3.11) 501 | (end 6.06 3.11) 502 | (stroke 503 | (width 0.12) 504 | (type solid) 505 | ) 506 | (layer "F.SilkS") 507 | (uuid "60cb4501-1fcf-4b53-950a-68ca22ce46c1") 508 | ) 509 | (fp_arc 510 | (start 2.75 2.25) 511 | (mid 3.499807 2.09191) 512 | (end 4.249647 2.249844) 513 | (stroke 514 | (width 0.12) 515 | (type solid) 516 | ) 517 | (layer "F.SilkS") 518 | (uuid "0305001d-e65e-47b9-af3e-4a7c1c54abe1") 519 | ) 520 | (fp_arc 521 | (start -0.75 2.25) 522 | (mid -0.000193 2.09191) 523 | (end 0.749647 2.249844) 524 | (stroke 525 | (width 0.12) 526 | (type solid) 527 | ) 528 | (layer "F.SilkS") 529 | (uuid "fe509c17-611a-4aeb-844e-ea541bdb380a") 530 | ) 531 | (fp_line 532 | (start 6.45 -4.75) 533 | (end -2.95 -4.75) 534 | (stroke 535 | (width 0.05) 536 | (type solid) 537 | ) 538 | (layer "F.CrtYd") 539 | (uuid "1805bded-bf66-4067-a76f-3e0eb3b46a97") 540 | ) 541 | (fp_line 542 | (start -2.95 -4.75) 543 | (end -2.95 3.5) 544 | (stroke 545 | (width 0.05) 546 | (type solid) 547 | ) 548 | (layer "F.CrtYd") 549 | (uuid "1c31f15c-7060-46f1-b214-4cfcf3fcc30a") 550 | ) 551 | (fp_line 552 | (start 6.45 3.5) 553 | (end 6.45 -4.75) 554 | (stroke 555 | (width 0.05) 556 | (type solid) 557 | ) 558 | (layer "F.CrtYd") 559 | (uuid "2d4b4311-6c31-44d0-bb6c-876b0725645a") 560 | ) 561 | (fp_line 562 | (start -2.95 3.5) 563 | (end 6.45 3.5) 564 | (stroke 565 | (width 0.05) 566 | (type solid) 567 | ) 568 | (layer "F.CrtYd") 569 | (uuid "78673978-54a1-4526-91e1-1cf9dd0487ea") 570 | ) 571 | (fp_line 572 | (start -2.95 -4.75) 573 | (end -0.95 -4.75) 574 | (stroke 575 | (width 0.1) 576 | (type solid) 577 | ) 578 | (layer "F.Fab") 579 | (uuid "96050c7f-d9e7-4c32-a1ba-0f5d227ee03f") 580 | ) 581 | (fp_line 582 | (start 5.95 -4.25) 583 | (end -2.45 -4.25) 584 | (stroke 585 | (width 0.1) 586 | (type solid) 587 | ) 588 | (layer "F.Fab") 589 | (uuid "b9b8a100-9077-4df8-8689-63178d9ca227") 590 | ) 591 | (fp_line 592 | (start -2.45 -4.25) 593 | (end -2.45 3) 594 | (stroke 595 | (width 0.1) 596 | (type solid) 597 | ) 598 | (layer "F.Fab") 599 | (uuid "87189d43-2b66-47e8-88c3-db335c0b330f") 600 | ) 601 | (fp_line 602 | (start -2.95 -3.5) 603 | (end -2.95 -4.75) 604 | (stroke 605 | (width 0.1) 606 | (type solid) 607 | ) 608 | (layer "F.Fab") 609 | (uuid "a5473684-1ce5-4ec8-be0e-05a42aa88272") 610 | ) 611 | (fp_line 612 | (start 5.95 3) 613 | (end 5.95 -4.25) 614 | (stroke 615 | (width 0.1) 616 | (type solid) 617 | ) 618 | (layer "F.Fab") 619 | (uuid "4605835d-0e73-4501-894e-0711c064806c") 620 | ) 621 | (fp_line 622 | (start -2.45 3) 623 | (end 5.95 3) 624 | (stroke 625 | (width 0.1) 626 | (type solid) 627 | ) 628 | (layer "F.Fab") 629 | (uuid "345e436a-442f-4aae-8859-e71309f3ebbd") 630 | ) 631 | (fp_text user "${REFERENCE}" 632 | (at 1.75 -3.55 90) 633 | (layer "F.Fab") 634 | (uuid "88c40017-d41b-44fa-bd15-265ff5c41694") 635 | (effects 636 | (font 637 | (size 1 1) 638 | (thickness 0.15) 639 | ) 640 | ) 641 | ) 642 | (pad "1" thru_hole roundrect 643 | (at 0 0 90) 644 | (size 1.8 3.6) 645 | (drill 1.2) 646 | (layers "*.Cu" "*.Mask") 647 | (remove_unused_layers no) 648 | (roundrect_rratio 0.138889) 649 | (net 1 "GND") 650 | (pinfunction "Pin_1") 651 | (pintype "passive") 652 | (uuid "a0497edb-dd7a-4cbb-93a9-eb1abf9e71c9") 653 | ) 654 | (pad "2" thru_hole oval 655 | (at 3.5 0 90) 656 | (size 1.8 3.6) 657 | (drill 1.2) 658 | (layers "*.Cu" "*.Mask") 659 | (remove_unused_layers no) 660 | (net 8 "Net-(D1-A)") 661 | (pinfunction "Pin_2") 662 | (pintype "passive") 663 | (uuid "8ad771d6-5809-4f58-a4a4-e218156f9e66") 664 | ) 665 | (embedded_fonts no) 666 | (model "${KICAD9_3DMODEL_DIR}/Connector_Phoenix_MC.3dshapes/PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical.wrl" 667 | (offset 668 | (xyz 0 0 0) 669 | ) 670 | (scale 671 | (xyz 1 1 1) 672 | ) 673 | (rotate 674 | (xyz 0 0 0) 675 | ) 676 | ) 677 | ) 678 | (footprint "Capacitor_SMD:C_1206_3216Metric" 679 | (layer "F.Cu") 680 | (uuid "1fc8b72b-8ccc-4dbd-bdd5-15effb27e383") 681 | (at 65.15 65.25) 682 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 683 | (tags "capacitor") 684 | (property "Reference" "C1" 685 | (at 0 -1.85 0) 686 | (layer "F.SilkS") 687 | (uuid "507c0296-fdb1-4797-aa60-0a0fe8b050d0") 688 | (effects 689 | (font 690 | (size 1 1) 691 | (thickness 0.15) 692 | ) 693 | ) 694 | ) 695 | (property "Value" "1uF" 696 | (at 0 1.85 0) 697 | (layer "F.Fab") 698 | (hide yes) 699 | (uuid "d073772d-e683-4d1e-a712-ae4195ac03ba") 700 | (effects 701 | (font 702 | (size 1 1) 703 | (thickness 0.15) 704 | ) 705 | ) 706 | ) 707 | (property "Datasheet" "" 708 | (at 0 0 0) 709 | (layer "F.Fab") 710 | (hide yes) 711 | (uuid "39c074dc-21e9-4b10-acf5-2c2ef5d6aacb") 712 | (effects 713 | (font 714 | (size 1.27 1.27) 715 | (thickness 0.15) 716 | ) 717 | ) 718 | ) 719 | (property "Description" "Unpolarized capacitor, small symbol" 720 | (at 0 0 0) 721 | (layer "F.Fab") 722 | (hide yes) 723 | (uuid "88f596b3-95e6-49df-ac66-7d01cc4f1dbc") 724 | (effects 725 | (font 726 | (size 1.27 1.27) 727 | (thickness 0.15) 728 | ) 729 | ) 730 | ) 731 | (property "LCSC" "C70463" 732 | (at 0 0 0) 733 | (unlocked yes) 734 | (layer "F.Fab") 735 | (hide yes) 736 | (uuid "1449847b-30df-4fdd-98f3-870a086e131e") 737 | (effects 738 | (font 739 | (size 1 1) 740 | (thickness 0.15) 741 | ) 742 | ) 743 | ) 744 | (property ki_fp_filters "C_*") 745 | (path "/e10679a9-e042-456f-8f6b-b8b9d6a0b434") 746 | (sheetname "/") 747 | (sheetfile "kicad-max15062-breakout.kicad_sch") 748 | (attr smd) 749 | (fp_line 750 | (start -0.711252 -0.91) 751 | (end 0.711252 -0.91) 752 | (stroke 753 | (width 0.12) 754 | (type solid) 755 | ) 756 | (layer "F.SilkS") 757 | (uuid "e424d9c2-afe1-485a-bc05-d394fe37144c") 758 | ) 759 | (fp_line 760 | (start -0.711252 0.91) 761 | (end 0.711252 0.91) 762 | (stroke 763 | (width 0.12) 764 | (type solid) 765 | ) 766 | (layer "F.SilkS") 767 | (uuid "76abe7d3-b0e2-45d8-8d92-38115302974f") 768 | ) 769 | (fp_line 770 | (start -2.3 -1.15) 771 | (end 2.3 -1.15) 772 | (stroke 773 | (width 0.05) 774 | (type solid) 775 | ) 776 | (layer "F.CrtYd") 777 | (uuid "50538fd2-aaef-47f5-91df-15ac5c1aa62b") 778 | ) 779 | (fp_line 780 | (start -2.3 1.15) 781 | (end -2.3 -1.15) 782 | (stroke 783 | (width 0.05) 784 | (type solid) 785 | ) 786 | (layer "F.CrtYd") 787 | (uuid "26082412-31ba-4e87-9288-a525d3480590") 788 | ) 789 | (fp_line 790 | (start 2.3 -1.15) 791 | (end 2.3 1.15) 792 | (stroke 793 | (width 0.05) 794 | (type solid) 795 | ) 796 | (layer "F.CrtYd") 797 | (uuid "78616a0c-848f-4789-8859-2482e9dea7d2") 798 | ) 799 | (fp_line 800 | (start 2.3 1.15) 801 | (end -2.3 1.15) 802 | (stroke 803 | (width 0.05) 804 | (type solid) 805 | ) 806 | (layer "F.CrtYd") 807 | (uuid "a46c205a-818e-4bec-93ab-420c2d8cc8a9") 808 | ) 809 | (fp_line 810 | (start -1.6 -0.8) 811 | (end 1.6 -0.8) 812 | (stroke 813 | (width 0.1) 814 | (type solid) 815 | ) 816 | (layer "F.Fab") 817 | (uuid "9a52b4e4-9fa6-44f1-b0b3-f1adacf76714") 818 | ) 819 | (fp_line 820 | (start -1.6 0.8) 821 | (end -1.6 -0.8) 822 | (stroke 823 | (width 0.1) 824 | (type solid) 825 | ) 826 | (layer "F.Fab") 827 | (uuid "12600cb7-2e23-433d-84e1-dba0b584821a") 828 | ) 829 | (fp_line 830 | (start 1.6 -0.8) 831 | (end 1.6 0.8) 832 | (stroke 833 | (width 0.1) 834 | (type solid) 835 | ) 836 | (layer "F.Fab") 837 | (uuid "6b5bc00c-f53c-4abe-aa70-3281d7d92cab") 838 | ) 839 | (fp_line 840 | (start 1.6 0.8) 841 | (end -1.6 0.8) 842 | (stroke 843 | (width 0.1) 844 | (type solid) 845 | ) 846 | (layer "F.Fab") 847 | (uuid "cb20c9af-b02d-4d56-9d7d-29d657503320") 848 | ) 849 | (fp_text user "${REFERENCE}" 850 | (at 0 0 0) 851 | (layer "F.Fab") 852 | (uuid "e101e92d-71cb-4b7b-b418-87ba1a0f5ea7") 853 | (effects 854 | (font 855 | (size 0.8 0.8) 856 | (thickness 0.12) 857 | ) 858 | ) 859 | ) 860 | (pad "1" smd roundrect 861 | (at -1.475 0) 862 | (size 1.15 1.8) 863 | (layers "F.Cu" "F.Mask" "F.Paste") 864 | (roundrect_rratio 0.217391) 865 | (net 7 "Net-(D1-K)") 866 | (pintype "passive") 867 | (uuid "4eb84022-0485-4b2e-8c86-5fc88b34d003") 868 | ) 869 | (pad "2" smd roundrect 870 | (at 1.475 0) 871 | (size 1.15 1.8) 872 | (layers "F.Cu" "F.Mask" "F.Paste") 873 | (roundrect_rratio 0.217391) 874 | (net 1 "GND") 875 | (pintype "passive") 876 | (uuid "ddf778f0-ade8-486d-8e77-89b155652519") 877 | ) 878 | (embedded_fonts no) 879 | (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" 880 | (offset 881 | (xyz 0 0 0) 882 | ) 883 | (scale 884 | (xyz 1 1 1) 885 | ) 886 | (rotate 887 | (xyz 0 0 0) 888 | ) 889 | ) 890 | ) 891 | (footprint "Diode_SMD:D_SMA" 892 | (layer "F.Cu") 893 | (uuid "292e20e7-f888-496a-8ca7-d5fe689b62e5") 894 | (at 58.75 68.6 180) 895 | (descr "Diode SMA (DO-214AC)") 896 | (tags "Diode SMA (DO-214AC)") 897 | (property "Reference" "D1" 898 | (at 0 -2.5 0) 899 | (layer "F.SilkS") 900 | (uuid "7f87c9b5-e318-4b7e-b687-ce1a2eba7321") 901 | (effects 902 | (font 903 | (size 1 1) 904 | (thickness 0.15) 905 | ) 906 | ) 907 | ) 908 | (property "Value" "D_Schottky_Small" 909 | (at 0 2.6 0) 910 | (layer "F.Fab") 911 | (hide yes) 912 | (uuid "0e00cf23-ca04-4bdd-8b8d-6ebee4dd9993") 913 | (effects 914 | (font 915 | (size 1 1) 916 | (thickness 0.15) 917 | ) 918 | ) 919 | ) 920 | (property "Datasheet" "" 921 | (at 0 0 180) 922 | (unlocked yes) 923 | (layer "F.Fab") 924 | (hide yes) 925 | (uuid "3cc442be-57a2-4b66-b557-c90127f111c5") 926 | (effects 927 | (font 928 | (size 1.27 1.27) 929 | (thickness 0.15) 930 | ) 931 | ) 932 | ) 933 | (property "Description" "Schottky diode, small symbol" 934 | (at 0 0 180) 935 | (unlocked yes) 936 | (layer "F.Fab") 937 | (hide yes) 938 | (uuid "050ed92d-e466-4e4e-8554-588eb34d4ee7") 939 | (effects 940 | (font 941 | (size 1.27 1.27) 942 | (thickness 0.15) 943 | ) 944 | ) 945 | ) 946 | (property "LCSC" "C14996" 947 | (at 0 0 180) 948 | (unlocked yes) 949 | (layer "F.Fab") 950 | (hide yes) 951 | (uuid "95b63309-5751-4f89-b3df-1ee853a8d504") 952 | (effects 953 | (font 954 | (size 1 1) 955 | (thickness 0.15) 956 | ) 957 | ) 958 | ) 959 | (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") 960 | (path "/2cafd49b-7fc7-425c-9ce8-a2388e660d5b") 961 | (sheetname "/") 962 | (sheetfile "kicad-max15062-breakout.kicad_sch") 963 | (attr smd) 964 | (fp_line 965 | (start -3.51 1.65) 966 | (end 2 1.65) 967 | (stroke 968 | (width 0.12) 969 | (type solid) 970 | ) 971 | (layer "F.SilkS") 972 | (uuid "ebf87cde-570f-417e-b1ae-6eb1f409fc67") 973 | ) 974 | (fp_line 975 | (start -3.51 -1.65) 976 | (end 2 -1.65) 977 | (stroke 978 | (width 0.12) 979 | (type solid) 980 | ) 981 | (layer "F.SilkS") 982 | (uuid "1fc5d38f-4b15-4e8d-8186-7c9a90a0fa93") 983 | ) 984 | (fp_line 985 | (start -3.51 -1.65) 986 | (end -3.51 1.65) 987 | (stroke 988 | (width 0.12) 989 | (type solid) 990 | ) 991 | (layer "F.SilkS") 992 | (uuid "91ef3015-a6bf-4ef9-aa94-c744ff711b3f") 993 | ) 994 | (fp_line 995 | (start 3.5 1.75) 996 | (end -3.5 1.75) 997 | (stroke 998 | (width 0.05) 999 | (type solid) 1000 | ) 1001 | (layer "F.CrtYd") 1002 | (uuid "1e24e2a3-865a-4670-8fea-52a40e04c4ee") 1003 | ) 1004 | (fp_line 1005 | (start 3.5 -1.75) 1006 | (end 3.5 1.75) 1007 | (stroke 1008 | (width 0.05) 1009 | (type solid) 1010 | ) 1011 | (layer "F.CrtYd") 1012 | (uuid "f809f5fb-bae2-48e3-96e2-d315729e2ef6") 1013 | ) 1014 | (fp_line 1015 | (start -3.5 1.75) 1016 | (end -3.5 -1.75) 1017 | (stroke 1018 | (width 0.05) 1019 | (type solid) 1020 | ) 1021 | (layer "F.CrtYd") 1022 | (uuid "da9b9326-6ba6-4bf8-867c-69d7031650ea") 1023 | ) 1024 | (fp_line 1025 | (start -3.5 -1.75) 1026 | (end 3.5 -1.75) 1027 | (stroke 1028 | (width 0.05) 1029 | (type solid) 1030 | ) 1031 | (layer "F.CrtYd") 1032 | (uuid "3fac8384-2b04-4683-958d-f912b918a349") 1033 | ) 1034 | (fp_line 1035 | (start 2.3 1.5) 1036 | (end -2.3 1.5) 1037 | (stroke 1038 | (width 0.1) 1039 | (type solid) 1040 | ) 1041 | (layer "F.Fab") 1042 | (uuid "3d82ce53-6858-4117-8ddf-9b0c4b478ffd") 1043 | ) 1044 | (fp_line 1045 | (start 2.3 -1.5) 1046 | (end 2.3 1.5) 1047 | (stroke 1048 | (width 0.1) 1049 | (type solid) 1050 | ) 1051 | (layer "F.Fab") 1052 | (uuid "7598ba40-376a-43e6-84dc-32822ec50088") 1053 | ) 1054 | (fp_line 1055 | (start 2.3 -1.5) 1056 | (end -2.3 -1.5) 1057 | (stroke 1058 | (width 0.1) 1059 | (type solid) 1060 | ) 1061 | (layer "F.Fab") 1062 | (uuid "8dc1ae3c-c0bc-48c2-8308-e207dfd5be0a") 1063 | ) 1064 | (fp_line 1065 | (start 0.50118 0.75032) 1066 | (end 0.50118 -0.79908) 1067 | (stroke 1068 | (width 0.1) 1069 | (type solid) 1070 | ) 1071 | (layer "F.Fab") 1072 | (uuid "10d6fec4-973b-4292-9ca4-292023eb1056") 1073 | ) 1074 | (fp_line 1075 | (start 0.50118 0.00102) 1076 | (end 1.4994 0.00102) 1077 | (stroke 1078 | (width 0.1) 1079 | (type solid) 1080 | ) 1081 | (layer "F.Fab") 1082 | (uuid "689805b5-bbc7-4872-bd78-93379bb09b04") 1083 | ) 1084 | (fp_line 1085 | (start -0.64944 0.00102) 1086 | (end 0.50118 0.75032) 1087 | (stroke 1088 | (width 0.1) 1089 | (type solid) 1090 | ) 1091 | (layer "F.Fab") 1092 | (uuid "60cafb49-a620-483a-903a-025a93258c00") 1093 | ) 1094 | (fp_line 1095 | (start -0.64944 0.00102) 1096 | (end 0.50118 -0.79908) 1097 | (stroke 1098 | (width 0.1) 1099 | (type solid) 1100 | ) 1101 | (layer "F.Fab") 1102 | (uuid "e29b431b-5bb4-4285-93ae-cb025dcd58c3") 1103 | ) 1104 | (fp_line 1105 | (start -0.64944 0.00102) 1106 | (end -1.55114 0.00102) 1107 | (stroke 1108 | (width 0.1) 1109 | (type solid) 1110 | ) 1111 | (layer "F.Fab") 1112 | (uuid "ad4b1c77-a709-47b7-a544-d1be337feeec") 1113 | ) 1114 | (fp_line 1115 | (start -0.64944 -0.79908) 1116 | (end -0.64944 0.80112) 1117 | (stroke 1118 | (width 0.1) 1119 | (type solid) 1120 | ) 1121 | (layer "F.Fab") 1122 | (uuid "d5adec45-11bf-45ad-bb56-8ffaf37a4f30") 1123 | ) 1124 | (fp_line 1125 | (start -2.3 1.5) 1126 | (end -2.3 -1.5) 1127 | (stroke 1128 | (width 0.1) 1129 | (type solid) 1130 | ) 1131 | (layer "F.Fab") 1132 | (uuid "92f22097-9324-4b28-a676-45f0fcbd727c") 1133 | ) 1134 | (fp_text user "${REFERENCE}" 1135 | (at 0 -2.5 0) 1136 | (layer "F.Fab") 1137 | (uuid "5713e0ad-fe37-4020-a3b3-6e290d413384") 1138 | (effects 1139 | (font 1140 | (size 1 1) 1141 | (thickness 0.15) 1142 | ) 1143 | ) 1144 | ) 1145 | (pad "1" smd roundrect 1146 | (at -2 0 180) 1147 | (size 2.5 1.8) 1148 | (layers "F.Cu" "F.Mask" "F.Paste") 1149 | (roundrect_rratio 0.1388888889) 1150 | (net 7 "Net-(D1-K)") 1151 | (pinfunction "K") 1152 | (pintype "passive") 1153 | (uuid "fe1b043c-5fbf-4476-a25f-defac31838fa") 1154 | ) 1155 | (pad "2" smd roundrect 1156 | (at 2 0 180) 1157 | (size 2.5 1.8) 1158 | (layers "F.Cu" "F.Mask" "F.Paste") 1159 | (roundrect_rratio 0.1388888889) 1160 | (net 8 "Net-(D1-A)") 1161 | (pinfunction "A") 1162 | (pintype "passive") 1163 | (uuid "b4e8ff48-bb1b-4817-b09f-8d0661e56239") 1164 | ) 1165 | (embedded_fonts no) 1166 | (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl" 1167 | (offset 1168 | (xyz 0 0 0) 1169 | ) 1170 | (scale 1171 | (xyz 1 1 1) 1172 | ) 1173 | (rotate 1174 | (xyz 0 0 0) 1175 | ) 1176 | ) 1177 | ) 1178 | (footprint "MountingHole:MountingHole_2.2mm_M2" 1179 | (layer "F.Cu") 1180 | (uuid "39b94375-6358-4892-b56a-c05e935302e5") 1181 | (at 47.75 77.25) 1182 | (descr "Mounting Hole 2.2mm, no annular, M2") 1183 | (tags "mounting hole 2.2mm no annular m2") 1184 | (property "Reference" "H3" 1185 | (at 0 -3.2 0) 1186 | (layer "F.SilkS") 1187 | (hide yes) 1188 | (uuid "806ecd5f-125a-4941-a00d-acd5a205b8d3") 1189 | (effects 1190 | (font 1191 | (size 1 1) 1192 | (thickness 0.15) 1193 | ) 1194 | ) 1195 | ) 1196 | (property "Value" "MountingHole" 1197 | (at 0 3.2 0) 1198 | (layer "F.Fab") 1199 | (uuid "86fe09cd-d5c2-4ee0-b0b0-f835a8fd7e33") 1200 | (effects 1201 | (font 1202 | (size 1 1) 1203 | (thickness 0.15) 1204 | ) 1205 | ) 1206 | ) 1207 | (property "Datasheet" "" 1208 | (at 0 0 0) 1209 | (unlocked yes) 1210 | (layer "F.Fab") 1211 | (hide yes) 1212 | (uuid "647a7b54-f4de-47dc-a58d-a591a88c5a07") 1213 | (effects 1214 | (font 1215 | (size 1.27 1.27) 1216 | (thickness 0.15) 1217 | ) 1218 | ) 1219 | ) 1220 | (property "Description" "Mounting Hole without connection" 1221 | (at 0 0 0) 1222 | (unlocked yes) 1223 | (layer "F.Fab") 1224 | (hide yes) 1225 | (uuid "ddb7b9c9-ef0c-4a1f-bf6b-77f6bc0c9e49") 1226 | (effects 1227 | (font 1228 | (size 1.27 1.27) 1229 | (thickness 0.15) 1230 | ) 1231 | ) 1232 | ) 1233 | (property ki_fp_filters "MountingHole*") 1234 | (path "/436492d0-832c-4935-88e3-badbedefd129") 1235 | (sheetname "/") 1236 | (sheetfile "kicad-max15062-breakout.kicad_sch") 1237 | (attr exclude_from_pos_files exclude_from_bom) 1238 | (fp_circle 1239 | (center 0 0) 1240 | (end 2.2 0) 1241 | (stroke 1242 | (width 0.15) 1243 | (type solid) 1244 | ) 1245 | (fill no) 1246 | (layer "Cmts.User") 1247 | (uuid "0aa671b0-5e91-4ed9-8ca1-b62f2bcfe0d8") 1248 | ) 1249 | (fp_circle 1250 | (center 0 0) 1251 | (end 2.45 0) 1252 | (stroke 1253 | (width 0.05) 1254 | (type solid) 1255 | ) 1256 | (fill no) 1257 | (layer "F.CrtYd") 1258 | (uuid "0f94801a-ce82-4a1d-9d1d-b800544f087a") 1259 | ) 1260 | (fp_text user "${REFERENCE}" 1261 | (at 0 0 0) 1262 | (layer "F.Fab") 1263 | (uuid "05914d3c-42e6-43c7-83ce-18b2fa510efa") 1264 | (effects 1265 | (font 1266 | (size 1 1) 1267 | (thickness 0.15) 1268 | ) 1269 | ) 1270 | ) 1271 | (pad "" np_thru_hole circle 1272 | (at 0 0) 1273 | (size 2.2 2.2) 1274 | (drill 2.2) 1275 | (layers "*.Cu" "*.Mask") 1276 | (uuid "801b7a2d-250b-4b82-83d9-e20f54391310") 1277 | ) 1278 | (embedded_fonts no) 1279 | ) 1280 | (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" 1281 | (layer "F.Cu") 1282 | (uuid "44574368-42b3-4ed1-be53-888584e8dfff") 1283 | (at 77.5 69.04 180) 1284 | (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") 1285 | (tags "Through hole pin header THT 1x03 2.54mm single row") 1286 | (property "Reference" "J2" 1287 | (at 0 -2.38 0) 1288 | (layer "F.SilkS") 1289 | (uuid "c5e08ac5-3cff-4a59-8dcf-c3e551deb6a6") 1290 | (effects 1291 | (font 1292 | (size 1 1) 1293 | (thickness 0.15) 1294 | ) 1295 | ) 1296 | ) 1297 | (property "Value" "Output" 1298 | (at 1.4 7.68 0) 1299 | (layer "F.SilkS") 1300 | (uuid "e471ab12-cc4a-4904-b53c-68c4dde97ad5") 1301 | (effects 1302 | (font 1303 | (size 1 1) 1304 | (thickness 0.15) 1305 | ) 1306 | ) 1307 | ) 1308 | (property "Datasheet" "" 1309 | (at 0 0 0) 1310 | (layer "F.Fab") 1311 | (hide yes) 1312 | (uuid "1bea1c6d-62c6-4b49-aa78-d7577c168389") 1313 | (effects 1314 | (font 1315 | (size 1.27 1.27) 1316 | (thickness 0.15) 1317 | ) 1318 | ) 1319 | ) 1320 | (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" 1321 | (at 0 0 0) 1322 | (layer "F.Fab") 1323 | (hide yes) 1324 | (uuid "ce8781c3-ca7c-4dd6-b73a-3bc8d47d1bab") 1325 | (effects 1326 | (font 1327 | (size 1.27 1.27) 1328 | (thickness 0.15) 1329 | ) 1330 | ) 1331 | ) 1332 | (property "LCSC" "" 1333 | (at 0 0 180) 1334 | (unlocked yes) 1335 | (layer "F.Fab") 1336 | (hide yes) 1337 | (uuid "4481b1c5-927e-43bf-80f6-efc2c26dd017") 1338 | (effects 1339 | (font 1340 | (size 1 1) 1341 | (thickness 0.15) 1342 | ) 1343 | ) 1344 | ) 1345 | (property ki_fp_filters "Connector*:*_1x??_*") 1346 | (path "/1220c57d-2e97-464b-ade1-63ff1b5dc1d6") 1347 | (sheetname "/") 1348 | (sheetfile "kicad-max15062-breakout.kicad_sch") 1349 | (attr through_hole exclude_from_pos_files exclude_from_bom) 1350 | (fp_line 1351 | (start 1.38 1.27) 1352 | (end 1.38 6.46) 1353 | (stroke 1354 | (width 0.12) 1355 | (type solid) 1356 | ) 1357 | (layer "F.SilkS") 1358 | (uuid "ddf0f18f-5318-4223-b0b9-be8327d551cb") 1359 | ) 1360 | (fp_line 1361 | (start -1.38 6.46) 1362 | (end 1.38 6.46) 1363 | (stroke 1364 | (width 0.12) 1365 | (type solid) 1366 | ) 1367 | (layer "F.SilkS") 1368 | (uuid "e8f2cf91-45fa-4675-b346-b5fc5cb1a0c3") 1369 | ) 1370 | (fp_line 1371 | (start -1.38 1.27) 1372 | (end 1.38 1.27) 1373 | (stroke 1374 | (width 0.12) 1375 | (type solid) 1376 | ) 1377 | (layer "F.SilkS") 1378 | (uuid "82d4a3f3-fb43-414e-b65f-a6911401b817") 1379 | ) 1380 | (fp_line 1381 | (start -1.38 1.27) 1382 | (end -1.38 6.46) 1383 | (stroke 1384 | (width 0.12) 1385 | (type solid) 1386 | ) 1387 | (layer "F.SilkS") 1388 | (uuid "715c80dd-fd52-4d24-987b-23768386015c") 1389 | ) 1390 | (fp_line 1391 | (start -1.38 0) 1392 | (end -1.38 -1.38) 1393 | (stroke 1394 | (width 0.12) 1395 | (type solid) 1396 | ) 1397 | (layer "F.SilkS") 1398 | (uuid "2e74095f-3192-4f3c-b52a-13b408c4fa1f") 1399 | ) 1400 | (fp_line 1401 | (start -1.38 -1.38) 1402 | (end 0 -1.38) 1403 | (stroke 1404 | (width 0.12) 1405 | (type solid) 1406 | ) 1407 | (layer "F.SilkS") 1408 | (uuid "f31a4636-6e44-40b5-af75-96b742fb4fba") 1409 | ) 1410 | (fp_line 1411 | (start 1.77 6.85) 1412 | (end 1.77 -1.77) 1413 | (stroke 1414 | (width 0.05) 1415 | (type solid) 1416 | ) 1417 | (layer "F.CrtYd") 1418 | (uuid "d6254965-2149-402a-8e95-1db946363f27") 1419 | ) 1420 | (fp_line 1421 | (start 1.77 -1.77) 1422 | (end -1.77 -1.77) 1423 | (stroke 1424 | (width 0.05) 1425 | (type solid) 1426 | ) 1427 | (layer "F.CrtYd") 1428 | (uuid "52ecc8f7-e1a8-4522-ba59-3c326a2967ad") 1429 | ) 1430 | (fp_line 1431 | (start -1.77 6.85) 1432 | (end 1.77 6.85) 1433 | (stroke 1434 | (width 0.05) 1435 | (type solid) 1436 | ) 1437 | (layer "F.CrtYd") 1438 | (uuid "726131be-59b9-42ff-8e8f-7e3e9455ea02") 1439 | ) 1440 | (fp_line 1441 | (start -1.77 -1.77) 1442 | (end -1.77 6.85) 1443 | (stroke 1444 | (width 0.05) 1445 | (type solid) 1446 | ) 1447 | (layer "F.CrtYd") 1448 | (uuid "bff55319-f802-4ccd-ae34-e20a3b24d98c") 1449 | ) 1450 | (fp_line 1451 | (start 1.27 6.35) 1452 | (end -1.27 6.35) 1453 | (stroke 1454 | (width 0.1) 1455 | (type solid) 1456 | ) 1457 | (layer "F.Fab") 1458 | (uuid "8df475f4-8c95-456b-90ed-995bb0e320df") 1459 | ) 1460 | (fp_line 1461 | (start 1.27 -1.27) 1462 | (end 1.27 6.35) 1463 | (stroke 1464 | (width 0.1) 1465 | (type solid) 1466 | ) 1467 | (layer "F.Fab") 1468 | (uuid "7fad8d03-ff75-4010-b348-43c29355f54f") 1469 | ) 1470 | (fp_line 1471 | (start -0.635 -1.27) 1472 | (end 1.27 -1.27) 1473 | (stroke 1474 | (width 0.1) 1475 | (type solid) 1476 | ) 1477 | (layer "F.Fab") 1478 | (uuid "95681076-30a5-43aa-9677-07ace228439f") 1479 | ) 1480 | (fp_line 1481 | (start -1.27 6.35) 1482 | (end -1.27 -0.635) 1483 | (stroke 1484 | (width 0.1) 1485 | (type solid) 1486 | ) 1487 | (layer "F.Fab") 1488 | (uuid "40926a3d-c530-4bde-bc49-592e9a7bc717") 1489 | ) 1490 | (fp_line 1491 | (start -1.27 -0.635) 1492 | (end -0.635 -1.27) 1493 | (stroke 1494 | (width 0.1) 1495 | (type solid) 1496 | ) 1497 | (layer "F.Fab") 1498 | (uuid "37b4c31e-c693-4d92-86a6-fe68588291f0") 1499 | ) 1500 | (fp_text user "${REFERENCE}" 1501 | (at 0 2.54 90) 1502 | (layer "F.Fab") 1503 | (uuid "fcae953a-dd79-4215-8c0a-8a6471e589a5") 1504 | (effects 1505 | (font 1506 | (size 1 1) 1507 | (thickness 0.15) 1508 | ) 1509 | ) 1510 | ) 1511 | (pad "1" thru_hole rect 1512 | (at 0 0 180) 1513 | (size 1.7 1.7) 1514 | (drill 1) 1515 | (layers "*.Cu" "*.Mask") 1516 | (remove_unused_layers no) 1517 | (net 1 "GND") 1518 | (pinfunction "Pin_1") 1519 | (pintype "passive") 1520 | (uuid "c3610b6b-3398-4011-bccb-e7df60daea6a") 1521 | ) 1522 | (pad "2" thru_hole circle 1523 | (at 0 2.54 180) 1524 | (size 1.7 1.7) 1525 | (drill 1) 1526 | (layers "*.Cu" "*.Mask") 1527 | (remove_unused_layers no) 1528 | (net 3 "Net-(J2-Pin_2)") 1529 | (pinfunction "Pin_2") 1530 | (pintype "passive") 1531 | (uuid "3fb5e0e5-708b-49f2-9f1a-e4aff7432abb") 1532 | ) 1533 | (pad "3" thru_hole circle 1534 | (at 0 5.08 180) 1535 | (size 1.7 1.7) 1536 | (drill 1) 1537 | (layers "*.Cu" "*.Mask") 1538 | (remove_unused_layers no) 1539 | (net 4 "Net-(J2-Pin_3)") 1540 | (pinfunction "Pin_3") 1541 | (pintype "passive") 1542 | (uuid "0109fbc6-e6a3-4919-8b4e-1079f75ffc57") 1543 | ) 1544 | (embedded_fonts no) 1545 | (model "${KICAD9_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" 1546 | (offset 1547 | (xyz 0 0 0) 1548 | ) 1549 | (scale 1550 | (xyz 1 1 1) 1551 | ) 1552 | (rotate 1553 | (xyz 0 0 0) 1554 | ) 1555 | ) 1556 | ) 1557 | (footprint "MountingHole:MountingHole_2.2mm_M2" 1558 | (layer "F.Cu") 1559 | (uuid "8508bce1-c121-441a-8b97-eb2344bd94ea") 1560 | (at 77.25 77.25) 1561 | (descr "Mounting Hole 2.2mm, no annular, M2") 1562 | (tags "mounting hole 2.2mm no annular m2") 1563 | (property "Reference" "H4" 1564 | (at 0 -3.2 0) 1565 | (layer "F.SilkS") 1566 | (hide yes) 1567 | (uuid "3b414691-3ae3-4c18-aeaf-22a6c3c95e23") 1568 | (effects 1569 | (font 1570 | (size 1 1) 1571 | (thickness 0.15) 1572 | ) 1573 | ) 1574 | ) 1575 | (property "Value" "MountingHole" 1576 | (at 0 3.2 0) 1577 | (layer "F.Fab") 1578 | (uuid "a7628f98-cfab-4488-a9d1-6905a38bb257") 1579 | (effects 1580 | (font 1581 | (size 1 1) 1582 | (thickness 0.15) 1583 | ) 1584 | ) 1585 | ) 1586 | (property "Datasheet" "" 1587 | (at 0 0 0) 1588 | (unlocked yes) 1589 | (layer "F.Fab") 1590 | (hide yes) 1591 | (uuid "fce02760-2dc7-4fb1-b784-f194b90aa8ee") 1592 | (effects 1593 | (font 1594 | (size 1.27 1.27) 1595 | (thickness 0.15) 1596 | ) 1597 | ) 1598 | ) 1599 | (property "Description" "Mounting Hole without connection" 1600 | (at 0 0 0) 1601 | (unlocked yes) 1602 | (layer "F.Fab") 1603 | (hide yes) 1604 | (uuid "b510a767-abe1-45b3-bf80-c70876d05567") 1605 | (effects 1606 | (font 1607 | (size 1.27 1.27) 1608 | (thickness 0.15) 1609 | ) 1610 | ) 1611 | ) 1612 | (property ki_fp_filters "MountingHole*") 1613 | (path "/86205d93-3919-4a03-ba13-46122d570089") 1614 | (sheetname "/") 1615 | (sheetfile "kicad-max15062-breakout.kicad_sch") 1616 | (attr exclude_from_pos_files exclude_from_bom) 1617 | (fp_circle 1618 | (center 0 0) 1619 | (end 2.2 0) 1620 | (stroke 1621 | (width 0.15) 1622 | (type solid) 1623 | ) 1624 | (fill no) 1625 | (layer "Cmts.User") 1626 | (uuid "7b15f377-6eec-4638-9ed4-b18d338b73f7") 1627 | ) 1628 | (fp_circle 1629 | (center 0 0) 1630 | (end 2.45 0) 1631 | (stroke 1632 | (width 0.05) 1633 | (type solid) 1634 | ) 1635 | (fill no) 1636 | (layer "F.CrtYd") 1637 | (uuid "848bb9f2-ad1e-4f17-899b-d48cbbe50f8d") 1638 | ) 1639 | (fp_text user "${REFERENCE}" 1640 | (at 0 0 0) 1641 | (layer "F.Fab") 1642 | (uuid "c72f76b2-705e-4118-ace0-32fbe3020292") 1643 | (effects 1644 | (font 1645 | (size 1 1) 1646 | (thickness 0.15) 1647 | ) 1648 | ) 1649 | ) 1650 | (pad "" np_thru_hole circle 1651 | (at 0 0) 1652 | (size 2.2 2.2) 1653 | (drill 2.2) 1654 | (layers "*.Cu" "*.Mask") 1655 | (uuid "56070835-51ce-4fb4-941a-1ff73b4b710a") 1656 | ) 1657 | (embedded_fonts no) 1658 | ) 1659 | (footprint "Capacitor_SMD:C_0805_2012Metric" 1660 | (layer "F.Cu") 1661 | (uuid "973e0ae5-c5a0-49d6-b5fd-0691193617b0") 1662 | (at 63.95 74.55 -90) 1663 | (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") 1664 | (tags "capacitor") 1665 | (property "Reference" "C3" 1666 | (at 0 -1.68 90) 1667 | (layer "F.SilkS") 1668 | (uuid "5ff5e06e-71cb-42d0-ad19-820a52970141") 1669 | (effects 1670 | (font 1671 | (size 1 1) 1672 | (thickness 0.15) 1673 | ) 1674 | ) 1675 | ) 1676 | (property "Value" "10uF" 1677 | (at 0 1.68 90) 1678 | (layer "F.Fab") 1679 | (hide yes) 1680 | (uuid "0753cf59-e260-4704-877e-55f43b3c5ad6") 1681 | (effects 1682 | (font 1683 | (size 1 1) 1684 | (thickness 0.15) 1685 | ) 1686 | ) 1687 | ) 1688 | (property "Datasheet" "" 1689 | (at 0 0 90) 1690 | (layer "F.Fab") 1691 | (hide yes) 1692 | (uuid "020cab16-9f60-40de-bd63-5e9443b53a67") 1693 | (effects 1694 | (font 1695 | (size 1.27 1.27) 1696 | (thickness 0.15) 1697 | ) 1698 | ) 1699 | ) 1700 | (property "Description" "Unpolarized capacitor, small symbol" 1701 | (at 0 0 90) 1702 | (layer "F.Fab") 1703 | (hide yes) 1704 | (uuid "5499e467-563a-4b45-a7ea-c02127446cfb") 1705 | (effects 1706 | (font 1707 | (size 1.27 1.27) 1708 | (thickness 0.15) 1709 | ) 1710 | ) 1711 | ) 1712 | (property "LCSC" "C15850" 1713 | (at 0 0 270) 1714 | (unlocked yes) 1715 | (layer "F.Fab") 1716 | (hide yes) 1717 | (uuid "6666a443-72a5-42bd-b77b-b5e5d81a0dd1") 1718 | (effects 1719 | (font 1720 | (size 1 1) 1721 | (thickness 0.15) 1722 | ) 1723 | ) 1724 | ) 1725 | (property ki_fp_filters "C_*") 1726 | (path "/b0742825-4623-40fa-a4c6-540fb95801f5") 1727 | (sheetname "/") 1728 | (sheetfile "kicad-max15062-breakout.kicad_sch") 1729 | (attr smd) 1730 | (fp_line 1731 | (start -0.261252 0.735) 1732 | (end 0.261252 0.735) 1733 | (stroke 1734 | (width 0.12) 1735 | (type solid) 1736 | ) 1737 | (layer "F.SilkS") 1738 | (uuid "303d5395-f954-46cf-9d8e-003a90b71994") 1739 | ) 1740 | (fp_line 1741 | (start -0.261252 -0.735) 1742 | (end 0.261252 -0.735) 1743 | (stroke 1744 | (width 0.12) 1745 | (type solid) 1746 | ) 1747 | (layer "F.SilkS") 1748 | (uuid "a18c36a9-8a4f-45d5-89b1-b890b6063091") 1749 | ) 1750 | (fp_line 1751 | (start -1.7 0.98) 1752 | (end -1.7 -0.98) 1753 | (stroke 1754 | (width 0.05) 1755 | (type solid) 1756 | ) 1757 | (layer "F.CrtYd") 1758 | (uuid "8fbbc6a8-bd5e-4de3-9e02-97e9c182003c") 1759 | ) 1760 | (fp_line 1761 | (start 1.7 0.98) 1762 | (end -1.7 0.98) 1763 | (stroke 1764 | (width 0.05) 1765 | (type solid) 1766 | ) 1767 | (layer "F.CrtYd") 1768 | (uuid "92e3048a-1f52-4335-840d-6e61af060d39") 1769 | ) 1770 | (fp_line 1771 | (start -1.7 -0.98) 1772 | (end 1.7 -0.98) 1773 | (stroke 1774 | (width 0.05) 1775 | (type solid) 1776 | ) 1777 | (layer "F.CrtYd") 1778 | (uuid "8688bfff-a746-4f13-b7cc-2c53d35e6afe") 1779 | ) 1780 | (fp_line 1781 | (start 1.7 -0.98) 1782 | (end 1.7 0.98) 1783 | (stroke 1784 | (width 0.05) 1785 | (type solid) 1786 | ) 1787 | (layer "F.CrtYd") 1788 | (uuid "a84cd51f-66b6-4e32-bb03-4a63f349fcaa") 1789 | ) 1790 | (fp_line 1791 | (start -1 0.625) 1792 | (end -1 -0.625) 1793 | (stroke 1794 | (width 0.1) 1795 | (type solid) 1796 | ) 1797 | (layer "F.Fab") 1798 | (uuid "aee983cb-c23d-4ef7-b1f0-8ca4859f334c") 1799 | ) 1800 | (fp_line 1801 | (start 1 0.625) 1802 | (end -1 0.625) 1803 | (stroke 1804 | (width 0.1) 1805 | (type solid) 1806 | ) 1807 | (layer "F.Fab") 1808 | (uuid "14421a24-d7dc-44e4-b457-9bc470a5a52e") 1809 | ) 1810 | (fp_line 1811 | (start -1 -0.625) 1812 | (end 1 -0.625) 1813 | (stroke 1814 | (width 0.1) 1815 | (type solid) 1816 | ) 1817 | (layer "F.Fab") 1818 | (uuid "fd7ad056-9b64-4d61-86bf-e347297dbb49") 1819 | ) 1820 | (fp_line 1821 | (start 1 -0.625) 1822 | (end 1 0.625) 1823 | (stroke 1824 | (width 0.1) 1825 | (type solid) 1826 | ) 1827 | (layer "F.Fab") 1828 | (uuid "a9f9347d-c206-4ec1-85a3-467f0b931dde") 1829 | ) 1830 | (fp_text user "${REFERENCE}" 1831 | (at 0 0 90) 1832 | (layer "F.Fab") 1833 | (uuid "d4b1d140-c10d-41b6-b3a8-392266e37c89") 1834 | (effects 1835 | (font 1836 | (size 0.5 0.5) 1837 | (thickness 0.08) 1838 | ) 1839 | ) 1840 | ) 1841 | (pad "1" smd roundrect 1842 | (at -0.95 0 270) 1843 | (size 1 1.45) 1844 | (layers "F.Cu" "F.Mask" "F.Paste") 1845 | (roundrect_rratio 0.25) 1846 | (net 3 "Net-(J2-Pin_2)") 1847 | (pintype "passive") 1848 | (uuid "872a00f1-cbfb-469a-a3d8-c66faa8152a4") 1849 | ) 1850 | (pad "2" smd roundrect 1851 | (at 0.95 0 270) 1852 | (size 1 1.45) 1853 | (layers "F.Cu" "F.Mask" "F.Paste") 1854 | (roundrect_rratio 0.25) 1855 | (net 1 "GND") 1856 | (pintype "passive") 1857 | (uuid "7d9d0ed3-c867-4cb2-8baa-f2f58e779e4f") 1858 | ) 1859 | (embedded_fonts no) 1860 | (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" 1861 | (offset 1862 | (xyz 0 0 0) 1863 | ) 1864 | (scale 1865 | (xyz 1 1 1) 1866 | ) 1867 | (rotate 1868 | (xyz 0 0 0) 1869 | ) 1870 | ) 1871 | ) 1872 | (footprint "Inductor_SMD:L_1812_4532Metric" 1873 | (layer "F.Cu") 1874 | (uuid "99b33664-0cbf-46ac-a995-7ce8f30cb095") 1875 | (at 71.5 68.5) 1876 | (descr "Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator") 1877 | (tags "inductor") 1878 | (property "Reference" "L1" 1879 | (at -1.35 -2.8 0) 1880 | (layer "F.SilkS") 1881 | (uuid "353ab51d-5888-402f-a176-357c87a4293d") 1882 | (effects 1883 | (font 1884 | (size 1 1) 1885 | (thickness 0.15) 1886 | ) 1887 | ) 1888 | ) 1889 | (property "Value" "33uH" 1890 | (at 0 2.65 0) 1891 | (layer "F.Fab") 1892 | (hide yes) 1893 | (uuid "8ec01f0f-646d-49cf-ab51-b13ab6b6d4f8") 1894 | (effects 1895 | (font 1896 | (size 1 1) 1897 | (thickness 0.15) 1898 | ) 1899 | ) 1900 | ) 1901 | (property "Datasheet" "" 1902 | (at 0 0 0) 1903 | (layer "F.Fab") 1904 | (hide yes) 1905 | (uuid "6637d890-d708-492c-bb36-c594938b1616") 1906 | (effects 1907 | (font 1908 | (size 1.27 1.27) 1909 | (thickness 0.15) 1910 | ) 1911 | ) 1912 | ) 1913 | (property "Description" "Inductor, small symbol" 1914 | (at 0 0 0) 1915 | (layer "F.Fab") 1916 | (hide yes) 1917 | (uuid "0b57fea6-4363-4407-90cb-5294e1f35c10") 1918 | (effects 1919 | (font 1920 | (size 1.27 1.27) 1921 | (thickness 0.15) 1922 | ) 1923 | ) 1924 | ) 1925 | (property "LCSC" "C394127" 1926 | (at 0 0 0) 1927 | (unlocked yes) 1928 | (layer "F.Fab") 1929 | (hide yes) 1930 | (uuid "c6b2f25f-31a9-4df6-aa8e-c59cae615039") 1931 | (effects 1932 | (font 1933 | (size 1 1) 1934 | (thickness 0.15) 1935 | ) 1936 | ) 1937 | ) 1938 | (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") 1939 | (path "/3c3f992b-194c-4cb3-876a-869e72be879d") 1940 | (sheetname "/") 1941 | (sheetfile "kicad-max15062-breakout.kicad_sch") 1942 | (attr smd) 1943 | (fp_line 1944 | (start -1.386252 -1.71) 1945 | (end 1.386252 -1.71) 1946 | (stroke 1947 | (width 0.12) 1948 | (type solid) 1949 | ) 1950 | (layer "F.SilkS") 1951 | (uuid "1aca3e53-8f0b-4df4-9587-ab1e39d75d46") 1952 | ) 1953 | (fp_line 1954 | (start -1.386252 1.71) 1955 | (end 1.386252 1.71) 1956 | (stroke 1957 | (width 0.12) 1958 | (type solid) 1959 | ) 1960 | (layer "F.SilkS") 1961 | (uuid "78268db6-24ea-45fa-a41c-1f9651369050") 1962 | ) 1963 | (fp_line 1964 | (start -2.95 -1.95) 1965 | (end 2.95 -1.95) 1966 | (stroke 1967 | (width 0.05) 1968 | (type solid) 1969 | ) 1970 | (layer "F.CrtYd") 1971 | (uuid "2e666c0f-03c8-43a2-9bde-0e5526e91a0f") 1972 | ) 1973 | (fp_line 1974 | (start -2.95 1.95) 1975 | (end -2.95 -1.95) 1976 | (stroke 1977 | (width 0.05) 1978 | (type solid) 1979 | ) 1980 | (layer "F.CrtYd") 1981 | (uuid "607cc73c-8986-4386-8a06-45b6f9d5e45a") 1982 | ) 1983 | (fp_line 1984 | (start 2.95 -1.95) 1985 | (end 2.95 1.95) 1986 | (stroke 1987 | (width 0.05) 1988 | (type solid) 1989 | ) 1990 | (layer "F.CrtYd") 1991 | (uuid "4c38d0ce-f469-4357-9ab8-d4a3da44ac19") 1992 | ) 1993 | (fp_line 1994 | (start 2.95 1.95) 1995 | (end -2.95 1.95) 1996 | (stroke 1997 | (width 0.05) 1998 | (type solid) 1999 | ) 2000 | (layer "F.CrtYd") 2001 | (uuid "05f86412-e838-462c-8ec5-34144a5480a1") 2002 | ) 2003 | (fp_line 2004 | (start -2.25 -1.6) 2005 | (end 2.25 -1.6) 2006 | (stroke 2007 | (width 0.1) 2008 | (type solid) 2009 | ) 2010 | (layer "F.Fab") 2011 | (uuid "5521c17e-17a8-4f6a-9ce4-cafd18cb127a") 2012 | ) 2013 | (fp_line 2014 | (start -2.25 1.6) 2015 | (end -2.25 -1.6) 2016 | (stroke 2017 | (width 0.1) 2018 | (type solid) 2019 | ) 2020 | (layer "F.Fab") 2021 | (uuid "d4db0640-b6be-4c4f-8a89-0ece6fffdc49") 2022 | ) 2023 | (fp_line 2024 | (start 2.25 -1.6) 2025 | (end 2.25 1.6) 2026 | (stroke 2027 | (width 0.1) 2028 | (type solid) 2029 | ) 2030 | (layer "F.Fab") 2031 | (uuid "56171326-ea8f-429a-b1f7-efd532f8338b") 2032 | ) 2033 | (fp_line 2034 | (start 2.25 1.6) 2035 | (end -2.25 1.6) 2036 | (stroke 2037 | (width 0.1) 2038 | (type solid) 2039 | ) 2040 | (layer "F.Fab") 2041 | (uuid "3c404525-df52-4e35-954b-72719dd3dc35") 2042 | ) 2043 | (fp_text user "${REFERENCE}" 2044 | (at 0 0 0) 2045 | (layer "F.Fab") 2046 | (uuid "79432337-f425-4645-ba77-26e33eccefec") 2047 | (effects 2048 | (font 2049 | (size 1 1) 2050 | (thickness 0.15) 2051 | ) 2052 | ) 2053 | ) 2054 | (pad "1" smd roundrect 2055 | (at -2.1375 0) 2056 | (size 1.125 3.4) 2057 | (layers "F.Cu" "F.Mask" "F.Paste") 2058 | (roundrect_rratio 0.222222) 2059 | (net 6 "Net-(U1-LX)") 2060 | (pintype "passive") 2061 | (uuid "c337805c-7858-4a28-bfe8-0c427ebae7bd") 2062 | ) 2063 | (pad "2" smd roundrect 2064 | (at 2.1375 0) 2065 | (size 1.125 3.4) 2066 | (layers "F.Cu" "F.Mask" "F.Paste") 2067 | (roundrect_rratio 0.222222) 2068 | (net 3 "Net-(J2-Pin_2)") 2069 | (pintype "passive") 2070 | (uuid "f462b42f-517e-4c4f-9dde-b0e45471cc93") 2071 | ) 2072 | (embedded_fonts no) 2073 | (model "${KICAD9_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_1812_4532Metric.wrl" 2074 | (offset 2075 | (xyz 0 0 0) 2076 | ) 2077 | (scale 2078 | (xyz 1 1 1) 2079 | ) 2080 | (rotate 2081 | (xyz 0 0 0) 2082 | ) 2083 | ) 2084 | ) 2085 | (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" 2086 | (layer "F.Cu") 2087 | (uuid "c2ffc2ef-f831-4800-8c8f-cc69da3c6f98") 2088 | (at 68.95 72.45) 2089 | (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") 2090 | (tags "Through hole pin header THT 1x02 2.54mm single row") 2091 | (property "Reference" "J3" 2092 | (at 2.8 1.6 0) 2093 | (layer "F.SilkS") 2094 | (uuid "60ff4a38-38af-4bb8-8705-fd0da29d1fa3") 2095 | (effects 2096 | (font 2097 | (size 1 1) 2098 | (thickness 0.15) 2099 | ) 2100 | ) 2101 | ) 2102 | (property "Value" "Mode" 2103 | (at 0 4.92 0) 2104 | (layer "F.SilkS") 2105 | (uuid "37ca02dd-3453-4ccd-aed3-db28234b8050") 2106 | (effects 2107 | (font 2108 | (size 1 1) 2109 | (thickness 0.15) 2110 | ) 2111 | ) 2112 | ) 2113 | (property "Datasheet" "" 2114 | (at 0 0 0) 2115 | (layer "F.Fab") 2116 | (hide yes) 2117 | (uuid "fa0cbf63-ad1e-4fb1-9ab0-eb793ec07cf8") 2118 | (effects 2119 | (font 2120 | (size 1.27 1.27) 2121 | (thickness 0.15) 2122 | ) 2123 | ) 2124 | ) 2125 | (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" 2126 | (at 0 0 0) 2127 | (layer "F.Fab") 2128 | (hide yes) 2129 | (uuid "8f8c07cd-7cc5-4c7e-8805-76ee75193490") 2130 | (effects 2131 | (font 2132 | (size 1.27 1.27) 2133 | (thickness 0.15) 2134 | ) 2135 | ) 2136 | ) 2137 | (property "LCSC" "" 2138 | (at 0 0 0) 2139 | (unlocked yes) 2140 | (layer "F.Fab") 2141 | (hide yes) 2142 | (uuid "9717f783-8539-4ff2-a6f8-2326ebf6ca52") 2143 | (effects 2144 | (font 2145 | (size 1 1) 2146 | (thickness 0.15) 2147 | ) 2148 | ) 2149 | ) 2150 | (property ki_fp_filters "Connector*:*_1x??_*") 2151 | (path "/728b6198-c0d3-48cf-9e62-f9a88d4b5c12") 2152 | (sheetname "/") 2153 | (sheetfile "kicad-max15062-breakout.kicad_sch") 2154 | (attr through_hole exclude_from_pos_files exclude_from_bom) 2155 | (fp_line 2156 | (start -1.38 -1.38) 2157 | (end 0 -1.38) 2158 | (stroke 2159 | (width 0.12) 2160 | (type solid) 2161 | ) 2162 | (layer "F.SilkS") 2163 | (uuid "cb92be62-4685-4a38-bb0c-28a56c824326") 2164 | ) 2165 | (fp_line 2166 | (start -1.38 0) 2167 | (end -1.38 -1.38) 2168 | (stroke 2169 | (width 0.12) 2170 | (type solid) 2171 | ) 2172 | (layer "F.SilkS") 2173 | (uuid "edaf1a4a-e200-4b89-aa2a-d80c86032887") 2174 | ) 2175 | (fp_line 2176 | (start -1.38 1.27) 2177 | (end -1.38 3.92) 2178 | (stroke 2179 | (width 0.12) 2180 | (type solid) 2181 | ) 2182 | (layer "F.SilkS") 2183 | (uuid "a6d46796-b432-46eb-8772-b6c8fae88ba4") 2184 | ) 2185 | (fp_line 2186 | (start -1.38 1.27) 2187 | (end 1.38 1.27) 2188 | (stroke 2189 | (width 0.12) 2190 | (type solid) 2191 | ) 2192 | (layer "F.SilkS") 2193 | (uuid "acbd14c9-68da-4575-8557-66cb29afa701") 2194 | ) 2195 | (fp_line 2196 | (start -1.38 3.92) 2197 | (end 1.38 3.92) 2198 | (stroke 2199 | (width 0.12) 2200 | (type solid) 2201 | ) 2202 | (layer "F.SilkS") 2203 | (uuid "8f57e64a-30cc-4459-95fb-f8304b6f3494") 2204 | ) 2205 | (fp_line 2206 | (start 1.38 1.27) 2207 | (end 1.38 3.92) 2208 | (stroke 2209 | (width 0.12) 2210 | (type solid) 2211 | ) 2212 | (layer "F.SilkS") 2213 | (uuid "f1a4725f-0003-4947-9120-40ac95ecce88") 2214 | ) 2215 | (fp_line 2216 | (start -1.77 -1.77) 2217 | (end -1.77 4.32) 2218 | (stroke 2219 | (width 0.05) 2220 | (type solid) 2221 | ) 2222 | (layer "F.CrtYd") 2223 | (uuid "0510df2c-1c75-4b9c-9b3d-8a0146ac1e71") 2224 | ) 2225 | (fp_line 2226 | (start -1.77 4.32) 2227 | (end 1.77 4.32) 2228 | (stroke 2229 | (width 0.05) 2230 | (type solid) 2231 | ) 2232 | (layer "F.CrtYd") 2233 | (uuid "8d36e788-d8c8-4dca-81b2-8a19021cf3d0") 2234 | ) 2235 | (fp_line 2236 | (start 1.77 -1.77) 2237 | (end -1.77 -1.77) 2238 | (stroke 2239 | (width 0.05) 2240 | (type solid) 2241 | ) 2242 | (layer "F.CrtYd") 2243 | (uuid "efc3deaf-c84b-49c0-97cc-ae97a54e3a32") 2244 | ) 2245 | (fp_line 2246 | (start 1.77 4.32) 2247 | (end 1.77 -1.77) 2248 | (stroke 2249 | (width 0.05) 2250 | (type solid) 2251 | ) 2252 | (layer "F.CrtYd") 2253 | (uuid "b4c157cf-3724-4b74-b688-8b7b1de660b0") 2254 | ) 2255 | (fp_line 2256 | (start -1.27 -0.635) 2257 | (end -0.635 -1.27) 2258 | (stroke 2259 | (width 0.1) 2260 | (type solid) 2261 | ) 2262 | (layer "F.Fab") 2263 | (uuid "f7167343-2ef7-45a8-b063-360f59ff2628") 2264 | ) 2265 | (fp_line 2266 | (start -1.27 3.81) 2267 | (end -1.27 -0.635) 2268 | (stroke 2269 | (width 0.1) 2270 | (type solid) 2271 | ) 2272 | (layer "F.Fab") 2273 | (uuid "89f58211-8e41-4fce-b0bc-7215115801aa") 2274 | ) 2275 | (fp_line 2276 | (start -0.635 -1.27) 2277 | (end 1.27 -1.27) 2278 | (stroke 2279 | (width 0.1) 2280 | (type solid) 2281 | ) 2282 | (layer "F.Fab") 2283 | (uuid "e5033e7d-a562-41a9-8725-17bfc517ef33") 2284 | ) 2285 | (fp_line 2286 | (start 1.27 -1.27) 2287 | (end 1.27 3.81) 2288 | (stroke 2289 | (width 0.1) 2290 | (type solid) 2291 | ) 2292 | (layer "F.Fab") 2293 | (uuid "e939b722-38a7-4b8e-8d03-1e8dcc2c67a4") 2294 | ) 2295 | (fp_line 2296 | (start 1.27 3.81) 2297 | (end -1.27 3.81) 2298 | (stroke 2299 | (width 0.1) 2300 | (type solid) 2301 | ) 2302 | (layer "F.Fab") 2303 | (uuid "d419bd6d-a31d-4f1f-a4e6-7b3a7a1a17fc") 2304 | ) 2305 | (fp_text user "${REFERENCE}" 2306 | (at 0 1.27 90) 2307 | (layer "F.Fab") 2308 | (uuid "c328d075-255d-4ab4-8865-d70d20bffd12") 2309 | (effects 2310 | (font 2311 | (size 1 1) 2312 | (thickness 0.15) 2313 | ) 2314 | ) 2315 | ) 2316 | (pad "1" thru_hole rect 2317 | (at 0 0) 2318 | (size 1.7 1.7) 2319 | (drill 1) 2320 | (layers "*.Cu" "*.Mask") 2321 | (remove_unused_layers no) 2322 | (net 5 "Net-(J3-Pin_1)") 2323 | (pinfunction "Pin_1") 2324 | (pintype "passive") 2325 | (uuid "0b14a13a-b3f2-409c-8ca9-e9546cae467c") 2326 | ) 2327 | (pad "2" thru_hole circle 2328 | (at 0 2.54) 2329 | (size 1.7 1.7) 2330 | (drill 1) 2331 | (layers "*.Cu" "*.Mask") 2332 | (remove_unused_layers no) 2333 | (net 1 "GND") 2334 | (pinfunction "Pin_2") 2335 | (pintype "passive") 2336 | (uuid "d2985d30-31b2-4aa4-8bb9-1fefb93730ee") 2337 | ) 2338 | (embedded_fonts no) 2339 | (model "${KICAD9_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" 2340 | (offset 2341 | (xyz 0 0 0) 2342 | ) 2343 | (scale 2344 | (xyz 1 1 1) 2345 | ) 2346 | (rotate 2347 | (xyz 0 0 0) 2348 | ) 2349 | ) 2350 | ) 2351 | (footprint "MountingHole:MountingHole_2.2mm_M2" 2352 | (layer "F.Cu") 2353 | (uuid "ccbda759-a13b-4844-8da8-ae893e088ed3") 2354 | (at 47.75 57.75) 2355 | (descr "Mounting Hole 2.2mm, no annular, M2") 2356 | (tags "mounting hole 2.2mm no annular m2") 2357 | (property "Reference" "H1" 2358 | (at 0 -3.2 0) 2359 | (layer "F.SilkS") 2360 | (hide yes) 2361 | (uuid "5a389995-0522-45c9-89ec-d062f421fb55") 2362 | (effects 2363 | (font 2364 | (size 1 1) 2365 | (thickness 0.15) 2366 | ) 2367 | ) 2368 | ) 2369 | (property "Value" "MountingHole" 2370 | (at 0 3.2 0) 2371 | (layer "F.Fab") 2372 | (uuid "25c575ab-8bd4-4eab-9584-197bb09f3850") 2373 | (effects 2374 | (font 2375 | (size 1 1) 2376 | (thickness 0.15) 2377 | ) 2378 | ) 2379 | ) 2380 | (property "Datasheet" "" 2381 | (at 0 0 0) 2382 | (unlocked yes) 2383 | (layer "F.Fab") 2384 | (hide yes) 2385 | (uuid "efabebd2-b796-4002-8778-62521da94b25") 2386 | (effects 2387 | (font 2388 | (size 1.27 1.27) 2389 | (thickness 0.15) 2390 | ) 2391 | ) 2392 | ) 2393 | (property "Description" "Mounting Hole without connection" 2394 | (at 0 0 0) 2395 | (unlocked yes) 2396 | (layer "F.Fab") 2397 | (hide yes) 2398 | (uuid "bce18089-6b82-4079-91ae-e846b790a949") 2399 | (effects 2400 | (font 2401 | (size 1.27 1.27) 2402 | (thickness 0.15) 2403 | ) 2404 | ) 2405 | ) 2406 | (property ki_fp_filters "MountingHole*") 2407 | (path "/5daed5ad-c002-4459-88a5-b1528b65fca7") 2408 | (sheetname "/") 2409 | (sheetfile "kicad-max15062-breakout.kicad_sch") 2410 | (attr exclude_from_pos_files exclude_from_bom) 2411 | (fp_circle 2412 | (center 0 0) 2413 | (end 2.2 0) 2414 | (stroke 2415 | (width 0.15) 2416 | (type solid) 2417 | ) 2418 | (fill no) 2419 | (layer "Cmts.User") 2420 | (uuid "83545fe4-51c7-4f12-b14a-ea762b05f86b") 2421 | ) 2422 | (fp_circle 2423 | (center 0 0) 2424 | (end 2.45 0) 2425 | (stroke 2426 | (width 0.05) 2427 | (type solid) 2428 | ) 2429 | (fill no) 2430 | (layer "F.CrtYd") 2431 | (uuid "c6b3f1f1-ac6a-4857-9086-94c9105e9bd8") 2432 | ) 2433 | (fp_text user "${REFERENCE}" 2434 | (at 0 0 0) 2435 | (layer "F.Fab") 2436 | (uuid "70682852-1fc5-4b28-bc4d-73164768c483") 2437 | (effects 2438 | (font 2439 | (size 1 1) 2440 | (thickness 0.15) 2441 | ) 2442 | ) 2443 | ) 2444 | (pad "" np_thru_hole circle 2445 | (at 0 0) 2446 | (size 2.2 2.2) 2447 | (drill 2.2) 2448 | (layers "*.Cu" "*.Mask") 2449 | (uuid "3e378d59-f9af-40bf-89d5-654dec70d7db") 2450 | ) 2451 | (embedded_fonts no) 2452 | ) 2453 | (footprint "MountingHole:MountingHole_2.2mm_M2" 2454 | (layer "F.Cu") 2455 | (uuid "ce3563a8-9f9e-493d-b4b2-084514142862") 2456 | (at 77.25 57.75) 2457 | (descr "Mounting Hole 2.2mm, no annular, M2") 2458 | (tags "mounting hole 2.2mm no annular m2") 2459 | (property "Reference" "H2" 2460 | (at 0 -3.2 0) 2461 | (layer "F.SilkS") 2462 | (hide yes) 2463 | (uuid "cca109cb-56ee-4708-bc87-a150d92eb105") 2464 | (effects 2465 | (font 2466 | (size 1 1) 2467 | (thickness 0.15) 2468 | ) 2469 | ) 2470 | ) 2471 | (property "Value" "MountingHole" 2472 | (at 0 3.2 0) 2473 | (layer "F.Fab") 2474 | (uuid "6e6b6930-39be-4035-b6ca-0dfc6f82c59a") 2475 | (effects 2476 | (font 2477 | (size 1 1) 2478 | (thickness 0.15) 2479 | ) 2480 | ) 2481 | ) 2482 | (property "Datasheet" "" 2483 | (at 0 0 0) 2484 | (unlocked yes) 2485 | (layer "F.Fab") 2486 | (hide yes) 2487 | (uuid "4a01f4d4-24e9-43c0-b894-aad84a7cb092") 2488 | (effects 2489 | (font 2490 | (size 1.27 1.27) 2491 | (thickness 0.15) 2492 | ) 2493 | ) 2494 | ) 2495 | (property "Description" "Mounting Hole without connection" 2496 | (at 0 0 0) 2497 | (unlocked yes) 2498 | (layer "F.Fab") 2499 | (hide yes) 2500 | (uuid "fada9e41-b61c-443f-9ed2-8de23ce03635") 2501 | (effects 2502 | (font 2503 | (size 1.27 1.27) 2504 | (thickness 0.15) 2505 | ) 2506 | ) 2507 | ) 2508 | (property ki_fp_filters "MountingHole*") 2509 | (path "/f41828dd-5232-4ae6-b01c-0092504bff0e") 2510 | (sheetname "/") 2511 | (sheetfile "kicad-max15062-breakout.kicad_sch") 2512 | (attr exclude_from_pos_files exclude_from_bom) 2513 | (fp_circle 2514 | (center 0 0) 2515 | (end 2.2 0) 2516 | (stroke 2517 | (width 0.15) 2518 | (type solid) 2519 | ) 2520 | (fill no) 2521 | (layer "Cmts.User") 2522 | (uuid "ab7f2df0-39f8-4c62-a66c-51e688edd31d") 2523 | ) 2524 | (fp_circle 2525 | (center 0 0) 2526 | (end 2.45 0) 2527 | (stroke 2528 | (width 0.05) 2529 | (type solid) 2530 | ) 2531 | (fill no) 2532 | (layer "F.CrtYd") 2533 | (uuid "ee8af1e3-961c-44d8-b306-5cf9b6762fef") 2534 | ) 2535 | (fp_text user "${REFERENCE}" 2536 | (at 0 0 0) 2537 | (layer "F.Fab") 2538 | (uuid "a557c48a-2214-4feb-b3ff-d2bd049f4cd9") 2539 | (effects 2540 | (font 2541 | (size 1 1) 2542 | (thickness 0.15) 2543 | ) 2544 | ) 2545 | ) 2546 | (pad "" np_thru_hole circle 2547 | (at 0 0) 2548 | (size 2.2 2.2) 2549 | (drill 2.2) 2550 | (layers "*.Cu" "*.Mask") 2551 | (uuid "8dd18da3-38ad-4333-a9df-8859a2cafe53") 2552 | ) 2553 | (embedded_fonts no) 2554 | ) 2555 | (footprint "Package_DFN_QFN:DFN-8_2x2mm_P0.5mm" 2556 | (layer "F.Cu") 2557 | (uuid "ebf25aaa-100d-4b37-b38b-58756429678f") 2558 | (at 64.7 71) 2559 | (descr "DFN8 2x2, 0.5P; No exposed pad - Ref http://pdfserv.maximintegrated.com/land_patterns/90-0349.PDF") 2560 | (tags "DFN 0.5") 2561 | (property "Reference" "U1" 2562 | (at 0 -2.075 0) 2563 | (layer "F.SilkS") 2564 | (uuid "03399c4e-6817-4c77-9f7f-c93a0cc128dd") 2565 | (effects 2566 | (font 2567 | (size 1 1) 2568 | (thickness 0.15) 2569 | ) 2570 | ) 2571 | ) 2572 | (property "Value" "MAX15062A" 2573 | (at 0 2.075 0) 2574 | (layer "F.Fab") 2575 | (hide yes) 2576 | (uuid "bd8365c7-7974-422b-8841-0d904c8a188e") 2577 | (effects 2578 | (font 2579 | (size 1 1) 2580 | (thickness 0.15) 2581 | ) 2582 | ) 2583 | ) 2584 | (property "Datasheet" "http://datasheets.maximintegrated.com/en/ds/MAX15062.pdf" 2585 | (at 0 0 0) 2586 | (unlocked yes) 2587 | (layer "F.Fab") 2588 | (hide yes) 2589 | (uuid "d4e82ad5-b8b3-4821-9626-43f88b20ce23") 2590 | (effects 2591 | (font 2592 | (size 1.27 1.27) 2593 | (thickness 0.15) 2594 | ) 2595 | ) 2596 | ) 2597 | (property "Description" "60V, 300mA, synchronous step-down dc-dc converter, 3.3V fixed output voltage, DFN-8" 2598 | (at 0 0 0) 2599 | (unlocked yes) 2600 | (layer "F.Fab") 2601 | (hide yes) 2602 | (uuid "2d38e3a7-fd74-40ee-980e-1818da8b5f7f") 2603 | (effects 2604 | (font 2605 | (size 1.27 1.27) 2606 | (thickness 0.15) 2607 | ) 2608 | ) 2609 | ) 2610 | (property "LCSC" "C2846801" 2611 | (at 0 0 0) 2612 | (unlocked yes) 2613 | (layer "F.Fab") 2614 | (hide yes) 2615 | (uuid "1bbac5ce-262c-4b02-ad94-53b0dd501d0a") 2616 | (effects 2617 | (font 2618 | (size 1 1) 2619 | (thickness 0.15) 2620 | ) 2621 | ) 2622 | ) 2623 | (property ki_fp_filters "DFN*2x2mm*P0.5mm*") 2624 | (path "/057e520b-5d0f-4f9c-8b2c-86e86b66f576") 2625 | (sheetname "/") 2626 | (sheetfile "kicad-max15062-breakout.kicad_sch") 2627 | (attr smd) 2628 | (fp_line 2629 | (start -1 -1.11) 2630 | (end 1 -1.11) 2631 | (stroke 2632 | (width 0.12) 2633 | (type solid) 2634 | ) 2635 | (layer "F.SilkS") 2636 | (uuid "cb251af0-a90c-4b85-abd5-7299b1b164ee") 2637 | ) 2638 | (fp_line 2639 | (start -1 1.11) 2640 | (end 1 1.11) 2641 | (stroke 2642 | (width 0.12) 2643 | (type solid) 2644 | ) 2645 | (layer "F.SilkS") 2646 | (uuid "8478d765-a1c1-4a38-997d-9f479693d991") 2647 | ) 2648 | (fp_poly 2649 | (pts 2650 | (xy -1.56 -1.09) (xy -1.84 -1.09) (xy -1.56 -1.37) (xy -1.56 -1.09) 2651 | ) 2652 | (stroke 2653 | (width 0.12) 2654 | (type solid) 2655 | ) 2656 | (fill yes) 2657 | (layer "F.SilkS") 2658 | (uuid "c45a4878-0d67-4c0f-b672-06cf624d9f6f") 2659 | ) 2660 | (fp_line 2661 | (start -1.65 -1.35) 2662 | (end -1.65 1.35) 2663 | (stroke 2664 | (width 0.05) 2665 | (type solid) 2666 | ) 2667 | (layer "F.CrtYd") 2668 | (uuid "b6cf9a09-9828-48bd-be5f-222dfc5665bd") 2669 | ) 2670 | (fp_line 2671 | (start -1.65 -1.35) 2672 | (end 1.65 -1.35) 2673 | (stroke 2674 | (width 0.05) 2675 | (type solid) 2676 | ) 2677 | (layer "F.CrtYd") 2678 | (uuid "b63ee817-5c71-44fc-80d8-911fbc7bf26c") 2679 | ) 2680 | (fp_line 2681 | (start -1.65 1.35) 2682 | (end 1.65 1.35) 2683 | (stroke 2684 | (width 0.05) 2685 | (type solid) 2686 | ) 2687 | (layer "F.CrtYd") 2688 | (uuid "e221d827-93de-452e-81a2-6ec89bbf0345") 2689 | ) 2690 | (fp_line 2691 | (start 1.65 -1.35) 2692 | (end 1.65 1.35) 2693 | (stroke 2694 | (width 0.05) 2695 | (type solid) 2696 | ) 2697 | (layer "F.CrtYd") 2698 | (uuid "cb79e122-aaad-4741-a3fb-bc0afe84fa17") 2699 | ) 2700 | (fp_line 2701 | (start -1 -0.5) 2702 | (end -0.5 -1) 2703 | (stroke 2704 | (width 0.1) 2705 | (type solid) 2706 | ) 2707 | (layer "F.Fab") 2708 | (uuid "c3cd83d0-62d6-46a7-93f9-b1a444ae2e17") 2709 | ) 2710 | (fp_line 2711 | (start -1 1) 2712 | (end -1 -0.5) 2713 | (stroke 2714 | (width 0.1) 2715 | (type solid) 2716 | ) 2717 | (layer "F.Fab") 2718 | (uuid "c8b7e475-d4b9-4e66-9f47-b8f771a4a5ac") 2719 | ) 2720 | (fp_line 2721 | (start -0.5 -1) 2722 | (end 1 -1) 2723 | (stroke 2724 | (width 0.1) 2725 | (type solid) 2726 | ) 2727 | (layer "F.Fab") 2728 | (uuid "9d425717-2ad5-4bea-9035-25d86eda5d0e") 2729 | ) 2730 | (fp_line 2731 | (start 1 -1) 2732 | (end 1 1) 2733 | (stroke 2734 | (width 0.1) 2735 | (type solid) 2736 | ) 2737 | (layer "F.Fab") 2738 | (uuid "0a681a72-f43f-491c-8221-a7054a978435") 2739 | ) 2740 | (fp_line 2741 | (start 1 1) 2742 | (end -1 1) 2743 | (stroke 2744 | (width 0.1) 2745 | (type solid) 2746 | ) 2747 | (layer "F.Fab") 2748 | (uuid "b757668e-cd58-4a4e-a889-641275c860f6") 2749 | ) 2750 | (fp_text user "${REFERENCE}" 2751 | (at 0 0 0) 2752 | (layer "F.Fab") 2753 | (uuid "8421e9e1-fa70-4606-933c-9223620f1d5e") 2754 | (effects 2755 | (font 2756 | (size 0.5 0.5) 2757 | (thickness 0.075) 2758 | ) 2759 | ) 2760 | ) 2761 | (pad "1" smd rect 2762 | (at -0.95 -0.75) 2763 | (size 0.85 0.3) 2764 | (layers "F.Cu" "F.Mask" "F.Paste") 2765 | (net 7 "Net-(D1-K)") 2766 | (pinfunction "VIN") 2767 | (pintype "power_in") 2768 | (uuid "7842bcbc-5689-48c8-8980-9cfedb1d163d") 2769 | ) 2770 | (pad "2" smd rect 2771 | (at -0.95 -0.25) 2772 | (size 0.85 0.3) 2773 | (layers "F.Cu" "F.Mask" "F.Paste") 2774 | (net 7 "Net-(D1-K)") 2775 | (pinfunction "EN/UVLO") 2776 | (pintype "input") 2777 | (uuid "a590e5ce-231e-4d55-953e-03361217485c") 2778 | ) 2779 | (pad "3" smd rect 2780 | (at -0.95 0.25) 2781 | (size 0.85 0.3) 2782 | (layers "F.Cu" "F.Mask" "F.Paste") 2783 | (net 2 "Net-(U1-VCC)") 2784 | (pinfunction "VCC") 2785 | (pintype "power_out") 2786 | (uuid "a9c1b4bc-4c61-49f6-a22a-27dc19950de2") 2787 | ) 2788 | (pad "4" smd rect 2789 | (at -0.95 0.75) 2790 | (size 0.85 0.3) 2791 | (layers "F.Cu" "F.Mask" "F.Paste") 2792 | (net 3 "Net-(J2-Pin_2)") 2793 | (pinfunction "FB/Vout") 2794 | (pintype "input") 2795 | (uuid "ea056c6f-f362-44cd-b2ea-e8e7410f4307") 2796 | ) 2797 | (pad "5" smd rect 2798 | (at 0.95 0.75) 2799 | (size 0.85 0.3) 2800 | (layers "F.Cu" "F.Mask" "F.Paste") 2801 | (net 5 "Net-(J3-Pin_1)") 2802 | (pinfunction "MODE") 2803 | (pintype "input") 2804 | (uuid "e14b48f1-ff8a-4232-a7c2-81e7001b9875") 2805 | ) 2806 | (pad "6" smd rect 2807 | (at 0.95 0.25) 2808 | (size 0.85 0.3) 2809 | (layers "F.Cu" "F.Mask" "F.Paste") 2810 | (net 4 "Net-(J2-Pin_3)") 2811 | (pinfunction "~{RESET}") 2812 | (pintype "open_collector") 2813 | (uuid "555964a9-0c2b-466c-971a-92f35d6b9b2e") 2814 | ) 2815 | (pad "7" smd rect 2816 | (at 0.95 -0.25) 2817 | (size 0.85 0.3) 2818 | (layers "F.Cu" "F.Mask" "F.Paste") 2819 | (net 1 "GND") 2820 | (pinfunction "GND") 2821 | (pintype "power_in") 2822 | (uuid "aa87ca85-8b1c-4980-9df7-9ead3746bc05") 2823 | ) 2824 | (pad "8" smd rect 2825 | (at 0.95 -0.75) 2826 | (size 0.85 0.3) 2827 | (layers "F.Cu" "F.Mask" "F.Paste") 2828 | (net 6 "Net-(U1-LX)") 2829 | (pinfunction "LX") 2830 | (pintype "power_out") 2831 | (uuid "3b16a1a2-95cb-4eb6-a8c0-1cc5a3efcd8b") 2832 | ) 2833 | (embedded_fonts no) 2834 | (model "${KICAD9_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/DFN-8_2x2mm_P0.5mm.wrl" 2835 | (offset 2836 | (xyz 0 0 0) 2837 | ) 2838 | (scale 2839 | (xyz 1 1 1) 2840 | ) 2841 | (rotate 2842 | (xyz 0 0 0) 2843 | ) 2844 | ) 2845 | ) 2846 | (footprint "Diode_SMD:D_SMB" 2847 | (layer "F.Cu") 2848 | (uuid "f8f56cf0-582e-4116-89fe-01fdfe5388a5") 2849 | (at 65.15 60.25) 2850 | (descr "Diode SMB (DO-214AA)") 2851 | (tags "Diode SMB (DO-214AA)") 2852 | (property "Reference" "D2" 2853 | (at -4.813205 0.102413 0) 2854 | (layer "F.SilkS") 2855 | (uuid "a81f1d39-08e0-4a6d-9bc2-8177ca2ae530") 2856 | (effects 2857 | (font 2858 | (size 1 1) 2859 | (thickness 0.15) 2860 | ) 2861 | ) 2862 | ) 2863 | (property "Value" "SM6T68A" 2864 | (at 0 3.1 0) 2865 | (layer "F.Fab") 2866 | (hide yes) 2867 | (uuid "55dc1338-29ca-4693-8d5e-877b49bc2cb9") 2868 | (effects 2869 | (font 2870 | (size 1 1) 2871 | (thickness 0.15) 2872 | ) 2873 | ) 2874 | ) 2875 | (property "Datasheet" "https://www.st.com/resource/en/datasheet/sm6t.pdf" 2876 | (at 0 0 0) 2877 | (unlocked yes) 2878 | (layer "F.Fab") 2879 | (hide yes) 2880 | (uuid "98bad47b-cbcf-4042-bd76-c20c389a3aeb") 2881 | (effects 2882 | (font 2883 | (size 1.27 1.27) 2884 | (thickness 0.15) 2885 | ) 2886 | ) 2887 | ) 2888 | (property "Description" "600W unidirectional Transil Transient Voltage Suppressor, 68Vrwm, DO-214AA" 2889 | (at 0 0 0) 2890 | (unlocked yes) 2891 | (layer "F.Fab") 2892 | (hide yes) 2893 | (uuid "d703df23-a89a-4139-b227-f1e32473ca0c") 2894 | (effects 2895 | (font 2896 | (size 1.27 1.27) 2897 | (thickness 0.15) 2898 | ) 2899 | ) 2900 | ) 2901 | (property "LCSC" "C133686" 2902 | (at 0 0 0) 2903 | (unlocked yes) 2904 | (layer "F.Fab") 2905 | (hide yes) 2906 | (uuid "2ab4c677-5e75-4e3f-9483-cee9075d1cb7") 2907 | (effects 2908 | (font 2909 | (size 1 1) 2910 | (thickness 0.15) 2911 | ) 2912 | ) 2913 | ) 2914 | (property ki_fp_filters "D*SMB*") 2915 | (path "/899a5161-cf60-43d0-922d-bf30ad45e54a") 2916 | (sheetname "/") 2917 | (sheetfile "kicad-max15062-breakout.kicad_sch") 2918 | (attr smd) 2919 | (fp_line 2920 | (start -3.66 -2.15) 2921 | (end -3.66 2.15) 2922 | (stroke 2923 | (width 0.12) 2924 | (type solid) 2925 | ) 2926 | (layer "F.SilkS") 2927 | (uuid "49062c0c-b85e-406c-b58f-7e6f1ea53d0e") 2928 | ) 2929 | (fp_line 2930 | (start -3.66 -2.15) 2931 | (end 2.15 -2.15) 2932 | (stroke 2933 | (width 0.12) 2934 | (type solid) 2935 | ) 2936 | (layer "F.SilkS") 2937 | (uuid "bf331b8b-7150-4aaa-b9c8-1bcd2932ee15") 2938 | ) 2939 | (fp_line 2940 | (start -3.66 2.15) 2941 | (end 2.15 2.15) 2942 | (stroke 2943 | (width 0.12) 2944 | (type solid) 2945 | ) 2946 | (layer "F.SilkS") 2947 | (uuid "cf372677-b9b8-488b-ad1c-f5f42373e24d") 2948 | ) 2949 | (fp_line 2950 | (start -3.65 -2.25) 2951 | (end 3.65 -2.25) 2952 | (stroke 2953 | (width 0.05) 2954 | (type solid) 2955 | ) 2956 | (layer "F.CrtYd") 2957 | (uuid "5098bd09-6020-4330-8eea-3b1012dbce09") 2958 | ) 2959 | (fp_line 2960 | (start -3.65 2.25) 2961 | (end -3.65 -2.25) 2962 | (stroke 2963 | (width 0.05) 2964 | (type solid) 2965 | ) 2966 | (layer "F.CrtYd") 2967 | (uuid "d200eac8-f33d-453e-a85e-1c517b27e726") 2968 | ) 2969 | (fp_line 2970 | (start 3.65 -2.25) 2971 | (end 3.65 2.25) 2972 | (stroke 2973 | (width 0.05) 2974 | (type solid) 2975 | ) 2976 | (layer "F.CrtYd") 2977 | (uuid "4138b84a-464e-4df6-9cbf-1944da04bc21") 2978 | ) 2979 | (fp_line 2980 | (start 3.65 2.25) 2981 | (end -3.65 2.25) 2982 | (stroke 2983 | (width 0.05) 2984 | (type solid) 2985 | ) 2986 | (layer "F.CrtYd") 2987 | (uuid "c6d7d870-bbd1-407e-9bf9-16b3a9744847") 2988 | ) 2989 | (fp_line 2990 | (start -2.3 2) 2991 | (end -2.3 -2) 2992 | (stroke 2993 | (width 0.1) 2994 | (type solid) 2995 | ) 2996 | (layer "F.Fab") 2997 | (uuid "a9f51311-d382-4e3a-8d6f-3185f17a8108") 2998 | ) 2999 | (fp_line 3000 | (start -0.64944 -0.79908) 3001 | (end -0.64944 0.80112) 3002 | (stroke 3003 | (width 0.1) 3004 | (type solid) 3005 | ) 3006 | (layer "F.Fab") 3007 | (uuid "87f2440d-9c58-40f6-b128-bec0b95f2461") 3008 | ) 3009 | (fp_line 3010 | (start -0.64944 0.00102) 3011 | (end -1.55114 0.00102) 3012 | (stroke 3013 | (width 0.1) 3014 | (type solid) 3015 | ) 3016 | (layer "F.Fab") 3017 | (uuid "7b39586a-9bcf-4cf8-9a4f-1c0c7ae2cb88") 3018 | ) 3019 | (fp_line 3020 | (start -0.64944 0.00102) 3021 | (end 0.50118 -0.79908) 3022 | (stroke 3023 | (width 0.1) 3024 | (type solid) 3025 | ) 3026 | (layer "F.Fab") 3027 | (uuid "98332f4e-a62b-4e06-bd3d-0b2c2713824f") 3028 | ) 3029 | (fp_line 3030 | (start -0.64944 0.00102) 3031 | (end 0.50118 0.75032) 3032 | (stroke 3033 | (width 0.1) 3034 | (type solid) 3035 | ) 3036 | (layer "F.Fab") 3037 | (uuid "73e82fed-80f5-41c5-a381-3779b414528a") 3038 | ) 3039 | (fp_line 3040 | (start 0.50118 0.00102) 3041 | (end 1.4994 0.00102) 3042 | (stroke 3043 | (width 0.1) 3044 | (type solid) 3045 | ) 3046 | (layer "F.Fab") 3047 | (uuid "b8b04639-b50a-48ca-8b5d-01b0b4aaf586") 3048 | ) 3049 | (fp_line 3050 | (start 0.50118 0.75032) 3051 | (end 0.50118 -0.79908) 3052 | (stroke 3053 | (width 0.1) 3054 | (type solid) 3055 | ) 3056 | (layer "F.Fab") 3057 | (uuid "5189cfff-d649-47b9-aa38-5f5e96a562d1") 3058 | ) 3059 | (fp_line 3060 | (start 2.3 -2) 3061 | (end -2.3 -2) 3062 | (stroke 3063 | (width 0.1) 3064 | (type solid) 3065 | ) 3066 | (layer "F.Fab") 3067 | (uuid "396a0313-038b-4dae-a072-3f6c430e9c5e") 3068 | ) 3069 | (fp_line 3070 | (start 2.3 -2) 3071 | (end 2.3 2) 3072 | (stroke 3073 | (width 0.1) 3074 | (type solid) 3075 | ) 3076 | (layer "F.Fab") 3077 | (uuid "657f5fd8-9610-4e51-8ab5-40df0ecec07d") 3078 | ) 3079 | (fp_line 3080 | (start 2.3 2) 3081 | (end -2.3 2) 3082 | (stroke 3083 | (width 0.1) 3084 | (type solid) 3085 | ) 3086 | (layer "F.Fab") 3087 | (uuid "964f36b4-c1e1-4808-aee7-dc70b64ef5ca") 3088 | ) 3089 | (fp_text user "${REFERENCE}" 3090 | (at 0 -3 0) 3091 | (layer "F.Fab") 3092 | (uuid "8f44d168-91ba-42d9-a443-f00650297199") 3093 | (effects 3094 | (font 3095 | (size 1 1) 3096 | (thickness 0.15) 3097 | ) 3098 | ) 3099 | ) 3100 | (pad "1" smd roundrect 3101 | (at -2.15 0) 3102 | (size 2.5 2.3) 3103 | (layers "F.Cu" "F.Mask" "F.Paste") 3104 | (roundrect_rratio 0.1086956522) 3105 | (net 7 "Net-(D1-K)") 3106 | (pinfunction "A1") 3107 | (pintype "passive") 3108 | (uuid "9491e23e-c1da-4ab0-b9f4-0e17f921082f") 3109 | ) 3110 | (pad "2" smd roundrect 3111 | (at 2.15 0) 3112 | (size 2.5 2.3) 3113 | (layers "F.Cu" "F.Mask" "F.Paste") 3114 | (roundrect_rratio 0.1086956522) 3115 | (net 1 "GND") 3116 | (pinfunction "A2") 3117 | (pintype "passive") 3118 | (uuid "3b7f71e1-2edf-4311-9e98-a57f793355f0") 3119 | ) 3120 | (embedded_fonts no) 3121 | (model "${KICAD9_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.wrl" 3122 | (offset 3123 | (xyz 0 0 0) 3124 | ) 3125 | (scale 3126 | (xyz 1 1 1) 3127 | ) 3128 | (rotate 3129 | (xyz 0 0 0) 3130 | ) 3131 | ) 3132 | ) 3133 | (footprint "Capacitor_SMD:C_1206_3216Metric" 3134 | (layer "F.Cu") 3135 | (uuid "fac5a6e6-8294-4a78-b0f1-322b9f33c78e") 3136 | (at 61.15 73.85 -90) 3137 | (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") 3138 | (tags "capacitor") 3139 | (property "Reference" "C2" 3140 | (at 0 1.8 90) 3141 | (layer "F.SilkS") 3142 | (uuid "e057078e-e978-4475-9941-57aa159e4177") 3143 | (effects 3144 | (font 3145 | (size 1 1) 3146 | (thickness 0.15) 3147 | ) 3148 | ) 3149 | ) 3150 | (property "Value" "1uF" 3151 | (at 0 1.85 90) 3152 | (layer "F.Fab") 3153 | (hide yes) 3154 | (uuid "224accc7-0d4a-4419-bad8-336c7444e1b3") 3155 | (effects 3156 | (font 3157 | (size 1 1) 3158 | (thickness 0.15) 3159 | ) 3160 | ) 3161 | ) 3162 | (property "Datasheet" "" 3163 | (at 0 0 90) 3164 | (layer "F.Fab") 3165 | (hide yes) 3166 | (uuid "bbad29aa-bf67-4e82-a7c2-f672a9c2918a") 3167 | (effects 3168 | (font 3169 | (size 1.27 1.27) 3170 | (thickness 0.15) 3171 | ) 3172 | ) 3173 | ) 3174 | (property "Description" "Unpolarized capacitor, small symbol" 3175 | (at 0 0 90) 3176 | (layer "F.Fab") 3177 | (hide yes) 3178 | (uuid "c576549f-c755-47e2-bb8b-26ab02a24582") 3179 | (effects 3180 | (font 3181 | (size 1.27 1.27) 3182 | (thickness 0.15) 3183 | ) 3184 | ) 3185 | ) 3186 | (property "LCSC" "C70463" 3187 | (at 0 0 0) 3188 | (unlocked yes) 3189 | (layer "F.Fab") 3190 | (hide yes) 3191 | (uuid "16795357-46d9-442d-91ec-f7959cef5425") 3192 | (effects 3193 | (font 3194 | (size 1 1) 3195 | (thickness 0.15) 3196 | ) 3197 | ) 3198 | ) 3199 | (property ki_fp_filters "C_*") 3200 | (path "/ff196b08-41e1-43f5-9d92-f98fc6422393") 3201 | (sheetname "/") 3202 | (sheetfile "kicad-max15062-breakout.kicad_sch") 3203 | (attr smd) 3204 | (fp_line 3205 | (start -0.711252 0.91) 3206 | (end 0.711252 0.91) 3207 | (stroke 3208 | (width 0.12) 3209 | (type solid) 3210 | ) 3211 | (layer "F.SilkS") 3212 | (uuid "a6d33042-a971-4b25-afed-8af437fbb1e0") 3213 | ) 3214 | (fp_line 3215 | (start -0.711252 -0.91) 3216 | (end 0.711252 -0.91) 3217 | (stroke 3218 | (width 0.12) 3219 | (type solid) 3220 | ) 3221 | (layer "F.SilkS") 3222 | (uuid "a49b15f7-ebce-464d-8ce2-98cd3c777399") 3223 | ) 3224 | (fp_line 3225 | (start -2.3 1.15) 3226 | (end -2.3 -1.15) 3227 | (stroke 3228 | (width 0.05) 3229 | (type solid) 3230 | ) 3231 | (layer "F.CrtYd") 3232 | (uuid "0e035d31-1259-465c-a1e7-298dfd216a00") 3233 | ) 3234 | (fp_line 3235 | (start 2.3 1.15) 3236 | (end -2.3 1.15) 3237 | (stroke 3238 | (width 0.05) 3239 | (type solid) 3240 | ) 3241 | (layer "F.CrtYd") 3242 | (uuid "c0c05056-a5a4-4e0b-84a3-aa4e9497cd81") 3243 | ) 3244 | (fp_line 3245 | (start -2.3 -1.15) 3246 | (end 2.3 -1.15) 3247 | (stroke 3248 | (width 0.05) 3249 | (type solid) 3250 | ) 3251 | (layer "F.CrtYd") 3252 | (uuid "8f389b20-bcdc-489c-aa09-49646f8154b1") 3253 | ) 3254 | (fp_line 3255 | (start 2.3 -1.15) 3256 | (end 2.3 1.15) 3257 | (stroke 3258 | (width 0.05) 3259 | (type solid) 3260 | ) 3261 | (layer "F.CrtYd") 3262 | (uuid "a4669cf3-bf98-4c28-a787-98ea02f55fe0") 3263 | ) 3264 | (fp_line 3265 | (start -1.6 0.8) 3266 | (end -1.6 -0.8) 3267 | (stroke 3268 | (width 0.1) 3269 | (type solid) 3270 | ) 3271 | (layer "F.Fab") 3272 | (uuid "9162c8c4-c6d1-40d0-9848-0202de4f0f4d") 3273 | ) 3274 | (fp_line 3275 | (start 1.6 0.8) 3276 | (end -1.6 0.8) 3277 | (stroke 3278 | (width 0.1) 3279 | (type solid) 3280 | ) 3281 | (layer "F.Fab") 3282 | (uuid "9e8bc7f4-e372-4d4b-95d9-2efbecc6683a") 3283 | ) 3284 | (fp_line 3285 | (start -1.6 -0.8) 3286 | (end 1.6 -0.8) 3287 | (stroke 3288 | (width 0.1) 3289 | (type solid) 3290 | ) 3291 | (layer "F.Fab") 3292 | (uuid "5ca3b68f-8cb3-4cdc-ac8a-79c9d84daaf0") 3293 | ) 3294 | (fp_line 3295 | (start 1.6 -0.8) 3296 | (end 1.6 0.8) 3297 | (stroke 3298 | (width 0.1) 3299 | (type solid) 3300 | ) 3301 | (layer "F.Fab") 3302 | (uuid "7c34e9ab-db4b-43c4-bede-127663d9f23c") 3303 | ) 3304 | (fp_text user "${REFERENCE}" 3305 | (at 0 0 90) 3306 | (layer "F.Fab") 3307 | (uuid "dc2c19df-02b7-4fd8-8668-4688eb742993") 3308 | (effects 3309 | (font 3310 | (size 0.8 0.8) 3311 | (thickness 0.12) 3312 | ) 3313 | ) 3314 | ) 3315 | (pad "1" smd roundrect 3316 | (at -1.475 0 270) 3317 | (size 1.15 1.8) 3318 | (layers "F.Cu" "F.Mask" "F.Paste") 3319 | (roundrect_rratio 0.217391) 3320 | (net 2 "Net-(U1-VCC)") 3321 | (pintype "passive") 3322 | (uuid "444513b7-9676-4a86-b3fe-71f901d6a1e0") 3323 | ) 3324 | (pad "2" smd roundrect 3325 | (at 1.475 0 270) 3326 | (size 1.15 1.8) 3327 | (layers "F.Cu" "F.Mask" "F.Paste") 3328 | (roundrect_rratio 0.217391) 3329 | (net 1 "GND") 3330 | (pintype "passive") 3331 | (uuid "7bca9fb3-0e33-44ec-bb8f-55d403f5e0eb") 3332 | ) 3333 | (embedded_fonts no) 3334 | (model "${KICAD9_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" 3335 | (offset 3336 | (xyz 0 0 0) 3337 | ) 3338 | (scale 3339 | (xyz 1 1 1) 3340 | ) 3341 | (rotate 3342 | (xyz 0 0 0) 3343 | ) 3344 | ) 3345 | ) 3346 | (gr_line 3347 | (start 61.15 71.35) 3348 | (end 61.15 72.35) 3349 | (stroke 3350 | (width 0.5) 3351 | (type solid) 3352 | ) 3353 | (layer "F.Cu") 3354 | (net 2) 3355 | (uuid "943fb2fe-5d72-4385-9825-f2700adc0d0d") 3356 | ) 3357 | (gr_line 3358 | (start 63.75 71.25) 3359 | (end 61.15 71.25) 3360 | (stroke 3361 | (width 0.3) 3362 | (type solid) 3363 | ) 3364 | (layer "F.Cu") 3365 | (net 2) 3366 | (uuid "cf40df25-b873-4a62-b247-6b3bbf4a3b8c") 3367 | ) 3368 | (gr_rect 3369 | (start 45 55) 3370 | (end 80 80) 3371 | (stroke 3372 | (width 0.2) 3373 | (type solid) 3374 | ) 3375 | (fill no) 3376 | (layer "Edge.Cuts") 3377 | (uuid "3a827a68-54fe-4e4c-97a0-efc59a29d780") 3378 | ) 3379 | (gr_text "JLCJLCJLCJLC" 3380 | (at 50.5 79.25 0) 3381 | (layer "F.SilkS") 3382 | (uuid "4971ea6f-4eab-4094-8c2a-d04fc5ed6b7f") 3383 | (effects 3384 | (font 3385 | (size 0.8 0.8) 3386 | (thickness 0.1) 3387 | ) 3388 | (justify left bottom) 3389 | ) 3390 | ) 3391 | (gr_text "æ" 3392 | (at 51.75 61.5 0) 3393 | (layer "F.SilkS") 3394 | (uuid "595a0d63-5a1c-4183-85c0-13d86f771d5d") 3395 | (effects 3396 | (font 3397 | (face "Helvetica") 3398 | (size 4 4) 3399 | (thickness 0.3) 3400 | (bold yes) 3401 | ) 3402 | (justify left bottom) 3403 | ) 3404 | (render_cache "æ" 0 3405 | (polygon 3406 | (pts 3407 | (xy 55.453838 57.795121) (xy 55.707696 57.860656) (xy 55.921892 57.964501) (xy 56.102937 58.106208) 3408 | (xy 56.254867 58.288848) (xy 56.37889 58.518743) (xy 56.467167 58.788676) (xy 56.521251 59.119281) 3409 | (xy 56.534473 59.522581) (xy 54.496022 59.522581) (xy 54.517268 59.80911) (xy 54.570027 59.990795) 3410 | (xy 54.652652 60.119519) (xy 54.763184 60.210474) (xy 54.907073 60.267726) (xy 55.094661 60.288527) 3411 | (xy 55.303856 60.26879) (xy 55.474459 60.213545) (xy 55.568778 60.150598) (xy 55.647911 60.054521) 3412 | (xy 55.712107 59.917034) (xy 56.501744 59.917034) (xy 56.460094 60.091188) (xy 56.372738 60.272541) 3413 | (xy 56.231367 60.46487) (xy 56.06638 60.622963) (xy 55.877111 60.746509) (xy 55.660073 60.837053) 3414 | (xy 55.410331 60.893828) (xy 55.121772 60.913789) (xy 54.879145 60.897095) (xy 54.670062 60.849716) 3415 | (xy 54.489183 60.774326) (xy 54.323172 60.66995) (xy 54.188229 60.550772) (xy 54.080809 60.416266) 3416 | (xy 53.935031 60.574836) (xy 53.7739 60.69987) (xy 53.595743 60.79411) (xy 53.403686 60.859108) 3417 | (xy 53.188569 60.899658) (xy 52.946789 60.913789) (xy 52.667579 60.893739) (xy 52.449185 60.839153) 3418 | (xy 52.279432 60.755892) (xy 52.148848 60.646099) (xy 52.012189 60.455683) (xy 51.930922 60.244797) 3419 | (xy 51.90314 60.006671) (xy 51.903877 59.999588) (xy 52.681786 59.999588) (xy 52.704819 60.121408) 3420 | (xy 52.777285 60.239434) (xy 52.849263 60.297774) (xy 52.95378 60.336392) (xy 53.102616 60.351053) 3421 | (xy 53.327387 60.327703) (xy 53.498778 60.263859) (xy 53.619848 60.172262) (xy 53.707157 60.051359) 3422 | (xy 53.762797 59.894725) (xy 53.783077 59.691842) (xy 53.783077 59.394842) (xy 53.67903 59.453461) 3423 | (xy 53.471423 59.503775) (xy 53.173691 59.563859) (xy 52.939616 59.62407) (xy 52.829309 59.675478) 3424 | (xy 52.749654 59.751771) (xy 52.699985 59.856531) (xy 52.681786 59.999588) (xy 51.903877 59.999588) 3425 | (xy 51.928663 59.761334) (xy 52.000234 59.56269) (xy 52.115165 59.400608) (xy 52.27732 59.269057) 3426 | (xy 52.421512 59.198947) (xy 52.626511 59.13405) (xy 52.908688 59.077815) (xy 53.28155 59.022372) 3427 | (xy 54.507013 59.022372) (xy 55.725785 59.022372) (xy 55.697138 58.833244) (xy 55.641707 58.680631) 3428 | (xy 55.561898 58.557578) (xy 55.45387 58.464213) (xy 55.311759 58.405529) (xy 55.124703 58.384166) 3429 | (xy 54.934042 58.403682) (xy 54.788026 58.457109) (xy 54.676273 58.540969) (xy 54.594178 58.655107) 3430 | (xy 54.536251 58.811372) (xy 54.507013 59.022372) (xy 53.28155 59.022372) (xy 53.386671 59.006741) 3431 | (xy 53.558851 58.971303) (xy 53.657292 58.932735) (xy 53.731298 58.876016) (xy 53.773792 58.806176) 3432 | (xy 53.78845 58.718778) (xy 53.764091 58.589408) (xy 53.694072 58.493235) (xy 53.569853 58.422512) 3433 | (xy 53.442019 58.393024) (xy 53.255512 58.381479) (xy 53.063318 58.403343) (xy 52.929289 58.461339) 3434 | (xy 52.837613 58.550983) (xy 52.790242 58.652926) (xy 52.766538 58.804996) (xy 52.006943 58.804996) 3435 | (xy 52.039405 58.563521) (xy 52.10754 58.362491) (xy 52.208829 58.194564) (xy 52.344196 58.054552) 3436 | (xy 52.517899 57.939888) (xy 52.737451 57.850457) (xy 53.005529 57.79269) (xy 53.332205 57.771849) 3437 | (xy 53.564723 57.786037) (xy 53.771112 57.826737) (xy 53.955024 57.892016) (xy 54.103454 57.971431) 3438 | (xy 54.269364 58.091563) (xy 54.446794 57.963679) (xy 54.651849 57.860753) (xy 54.878624 57.795188) 3439 | (xy 55.151814 57.771849) 3440 | ) 3441 | ) 3442 | ) 3443 | ) 3444 | (gr_text "AL100 v1.0 ${CURRENT_DATE}" 3445 | (at 50.75 56.75 0) 3446 | (layer "F.SilkS") 3447 | (uuid "8e789fd5-775f-463b-90cf-c34858076208") 3448 | (effects 3449 | (font 3450 | (size 0.9 0.9) 3451 | (thickness 0.1) 3452 | ) 3453 | (justify left bottom) 3454 | ) 3455 | ) 3456 | (segment 3457 | (start 61.15 75.325) 3458 | (end 61.15 77.05) 3459 | (width 1) 3460 | (layer "F.Cu") 3461 | (net 1) 3462 | (uuid "021c5e32-7855-444a-8735-42e38fed58fa") 3463 | ) 3464 | (segment 3465 | (start 67.3 63.85) 3466 | (end 67.3 65.275) 3467 | (width 1) 3468 | (layer "F.Cu") 3469 | (net 1) 3470 | (uuid "1783991e-5317-44b6-9c9a-c808eb598d94") 3471 | ) 3472 | (segment 3473 | (start 63.95 75.6) 3474 | (end 63.95 77.05) 3475 | (width 1) 3476 | (layer "F.Cu") 3477 | (net 1) 3478 | (uuid "24afde93-0759-4310-9ebd-f479c702b9e7") 3479 | ) 3480 | (segment 3481 | (start 65.45 65.95) 3482 | (end 66.625 65.95) 3483 | (width 0.4) 3484 | (layer "F.Cu") 3485 | (net 1) 3486 | (uuid "29ece032-460c-4f75-9ddf-78ad455bd1e2") 3487 | ) 3488 | (segment 3489 | (start 64.75 70.65) 3490 | (end 64.75 70.6) 3491 | (width 0.4) 3492 | (layer "F.Cu") 3493 | (net 1) 3494 | (uuid "3101b995-cec7-4e53-a6ae-4e50e126a9dd") 3495 | ) 3496 | (segment 3497 | (start 64.75 66.65) 3498 | (end 65.45 65.95) 3499 | (width 0.4) 3500 | (layer "F.Cu") 3501 | (net 1) 3502 | (uuid "3b84e983-f93d-4f1b-92e5-5ea45d8c75b9") 3503 | ) 3504 | (segment 3505 | (start 64.75 70.6) 3506 | (end 64.75 66.65) 3507 | (width 0.4) 3508 | (layer "F.Cu") 3509 | (net 1) 3510 | (uuid "85c44a65-12d8-471a-bf17-ab74b21fc938") 3511 | ) 3512 | (segment 3513 | (start 67.3 60.45) 3514 | (end 67.3 63.85) 3515 | (width 1) 3516 | (layer "F.Cu") 3517 | (net 1) 3518 | (uuid "9d432e2b-a53e-4684-81eb-352acdb72a2b") 3519 | ) 3520 | (segment 3521 | (start 65.65 70.75) 3522 | (end 64.85 70.75) 3523 | (width 0.3) 3524 | (layer "F.Cu") 3525 | (net 1) 3526 | (uuid "a14155df-135b-42fa-9a32-4d9b9961f158") 3527 | ) 3528 | (segment 3529 | (start 64.85 70.75) 3530 | (end 64.75 70.65) 3531 | (width 0.2) 3532 | (layer "F.Cu") 3533 | (net 1) 3534 | (uuid "a786072f-7482-43e6-944c-4972cb6d0a03") 3535 | ) 3536 | (segment 3537 | (start 67.3 65.275) 3538 | (end 66.625 65.95) 3539 | (width 0.2) 3540 | (layer "F.Cu") 3541 | (net 1) 3542 | (uuid "dbf75c73-927a-44cc-8a7d-eded4ad13805") 3543 | ) 3544 | (via 3545 | (at 63.95 77.05) 3546 | (size 0.6) 3547 | (drill 0.3) 3548 | (layers "F.Cu" "B.Cu") 3549 | (free yes) 3550 | (net 1) 3551 | (uuid "0669317c-d4e9-4159-94b2-886d77a6b897") 3552 | ) 3553 | (via 3554 | (at 64.75 70.6) 3555 | (size 0.6) 3556 | (drill 0.3) 3557 | (layers "F.Cu" "B.Cu") 3558 | (net 1) 3559 | (uuid "3655bade-ea5e-426b-b35c-5e9482ae2278") 3560 | ) 3561 | (via 3562 | (at 61.15 77.05) 3563 | (size 0.6) 3564 | (drill 0.3) 3565 | (layers "F.Cu" "B.Cu") 3566 | (free yes) 3567 | (net 1) 3568 | (uuid "770fbfae-f49e-4bbd-9d43-a7d76352ba3e") 3569 | ) 3570 | (via 3571 | (at 67.3 63.85) 3572 | (size 0.6) 3573 | (drill 0.3) 3574 | (layers "F.Cu" "B.Cu") 3575 | (net 1) 3576 | (uuid "77cee515-c84c-47d8-b66b-d07873dcb05a") 3577 | ) 3578 | (segment 3579 | (start 63.75 71.75) 3580 | (end 63.75 73.5) 3581 | (width 0.3) 3582 | (layer "F.Cu") 3583 | (net 3) 3584 | (uuid "16dd60c5-5248-466d-a0c5-80d54499d688") 3585 | ) 3586 | (segment 3587 | (start 63.75 73.5) 3588 | (end 63.95 73.7) 3589 | (width 0.2) 3590 | (layer "F.Cu") 3591 | (net 3) 3592 | (uuid "2b5d905f-c7bc-4d95-b97d-b511fcb0c7a9") 3593 | ) 3594 | (segment 3595 | (start 71.25 71.25) 3596 | (end 71.25 64) 3597 | (width 0.3) 3598 | (layer "F.Cu") 3599 | (net 4) 3600 | (uuid "5a4635a5-bf3d-4c7d-bf90-616b3c414d8d") 3601 | ) 3602 | (segment 3603 | (start 71.25 64) 3604 | (end 71.29 63.96) 3605 | (width 0.3) 3606 | (layer "F.Cu") 3607 | (net 4) 3608 | (uuid "866abc09-9048-4c30-80e4-c2e66c7fac8f") 3609 | ) 3610 | (segment 3611 | (start 71.29 63.96) 3612 | (end 77.5 63.96) 3613 | (width 0.3) 3614 | (layer "F.Cu") 3615 | (net 4) 3616 | (uuid "89066eb7-0bd6-4c96-97ec-ce954b676271") 3617 | ) 3618 | (segment 3619 | (start 65.65 71.25) 3620 | (end 71.25 71.25) 3621 | (width 0.3) 3622 | (layer "F.Cu") 3623 | (net 4) 3624 | (uuid "9b519772-49b2-4abf-ab44-cc925a2c309e") 3625 | ) 3626 | (segment 3627 | (start 68.25 71.75) 3628 | (end 68.95 72.45) 3629 | (width 0.2) 3630 | (layer "F.Cu") 3631 | (net 5) 3632 | (uuid "12c98319-295d-4744-ace5-11f2d3e09fe9") 3633 | ) 3634 | (segment 3635 | (start 65.65 71.75) 3636 | (end 68.25 71.75) 3637 | (width 0.3) 3638 | (layer "F.Cu") 3639 | (net 5) 3640 | (uuid "1ca097e2-91ba-4bc4-935d-20dec0a789c7") 3641 | ) 3642 | (segment 3643 | (start 65.65 70.25) 3644 | (end 67.2125 70.25) 3645 | (width 0.3) 3646 | (layer "F.Cu") 3647 | (net 6) 3648 | (uuid "5c70b602-f78a-4323-aaf9-b3a13dc0b4b3") 3649 | ) 3650 | (segment 3651 | (start 67.2125 70.25) 3652 | (end 68.8125 68.65) 3653 | (width 0.3) 3654 | (layer "F.Cu") 3655 | (net 6) 3656 | (uuid "7044a78b-634c-4727-891e-5285bdedb401") 3657 | ) 3658 | (segment 3659 | (start 63.75 70.25) 3660 | (end 63.75 70.75) 3661 | (width 0.3) 3662 | (layer "F.Cu") 3663 | (net 7) 3664 | (uuid "838b0fd5-0669-4f87-a4a9-6e197d5c2086") 3665 | ) 3666 | (segment 3667 | (start 51.3925 65.75) 3668 | (end 53.9 65.75) 3669 | (width 1) 3670 | (layer "F.Cu") 3671 | (net 8) 3672 | (uuid "72d9e964-48a6-405a-bf3d-7667bc5a3c9f") 3673 | ) 3674 | (segment 3675 | (start 53.9 65.75) 3676 | (end 56.75 68.6) 3677 | (width 1) 3678 | (layer "F.Cu") 3679 | (net 8) 3680 | (uuid "a8612739-579a-4f4b-8839-191cb143e125") 3681 | ) 3682 | (segment 3683 | (start 51.9 65.75) 3684 | (end 50 65.75) 3685 | (width 0.8) 3686 | (layer "F.Cu") 3687 | (net 8) 3688 | (uuid "c80ec295-aa73-4350-8b1b-e1591a0fe613") 3689 | ) 3690 | (zone 3691 | (net 3) 3692 | (net_name "Net-(J2-Pin_2)") 3693 | (layer "F.Cu") 3694 | (uuid "002ba722-3280-42c5-a07c-1bc831cdabde") 3695 | (name "Vout") 3696 | (hatch edge 0.5) 3697 | (priority 2) 3698 | (connect_pads yes 3699 | (clearance 0.5) 3700 | ) 3701 | (min_thickness 0.25) 3702 | (filled_areas_thickness no) 3703 | (fill yes 3704 | (thermal_gap 0.5) 3705 | (thermal_bridge_width 0.5) 3706 | ) 3707 | (polygon 3708 | (pts 3709 | (xy 72.1 79.55) (xy 72.000423 55.352722) (xy 79.75 55.352722) (xy 79.75 79.5) 3710 | ) 3711 | ) 3712 | (filled_polygon 3713 | (layer "F.Cu") 3714 | (pts 3715 | (xy 79.442539 55.520185) (xy 79.488294 55.572989) (xy 79.4995 55.6245) (xy 79.4995 79.3755) (xy 79.479815 79.442539) 3716 | (xy 79.427011 79.488294) (xy 79.3755 79.4995) (xy 72.1 79.4995) (xy 72.1 77.143713) (xy 75.8995 77.143713) 3717 | (xy 75.8995 77.356286) (xy 75.932753 77.566239) (xy 75.998444 77.768414) (xy 76.094951 77.95782) 3718 | (xy 76.21989 78.129786) (xy 76.370213 78.280109) (xy 76.542179 78.405048) (xy 76.542181 78.405049) 3719 | (xy 76.542184 78.405051) (xy 76.731588 78.501557) (xy 76.933757 78.567246) (xy 77.143713 78.6005) 3720 | (xy 77.143714 78.6005) (xy 77.356286 78.6005) (xy 77.356287 78.6005) (xy 77.566243 78.567246) (xy 77.768412 78.501557) 3721 | (xy 77.957816 78.405051) (xy 77.979789 78.389086) (xy 78.129786 78.280109) (xy 78.129788 78.280106) 3722 | (xy 78.129792 78.280104) (xy 78.280104 78.129792) (xy 78.280106 78.129788) (xy 78.280109 78.129786) 3723 | (xy 78.405048 77.95782) (xy 78.405047 77.95782) (xy 78.405051 77.957816) (xy 78.501557 77.768412) 3724 | (xy 78.567246 77.566243) (xy 78.6005 77.356287) (xy 78.6005 77.143713) (xy 78.567246 76.933757) 3725 | (xy 78.501557 76.731588) (xy 78.405051 76.542184) (xy 78.405049 76.542181) (xy 78.405048 76.542179) 3726 | (xy 78.280109 76.370213) (xy 78.129786 76.21989) (xy 77.95782 76.094951) (xy 77.768414 75.998444) 3727 | (xy 77.768413 75.998443) (xy 77.768412 75.998443) (xy 77.566243 75.932754) (xy 77.566241 75.932753) 3728 | (xy 77.56624 75.932753) (xy 77.404957 75.907208) (xy 77.356287 75.8995) (xy 77.143713 75.8995) (xy 77.095042 75.907208) 3729 | (xy 76.93376 75.932753) (xy 76.731585 75.998444) (xy 76.542179 76.094951) (xy 76.370213 76.21989) 3730 | (xy 76.21989 76.370213) (xy 76.094951 76.542179) (xy 75.998444 76.731585) (xy 75.932753 76.93376) 3731 | (xy 75.8995 77.143713) (xy 72.1 77.143713) (xy 72.1 76.85) (xy 72.088889 76.85) (xy 72.088889 76.849998) 3732 | (xy 72.053055 68.142135) (xy 76.1495 68.142135) (xy 76.1495 69.93787) (xy 76.149501 69.937876) (xy 76.155908 69.997483) 3733 | (xy 76.206202 70.132328) (xy 76.206206 70.132335) (xy 76.292452 70.247544) (xy 76.292455 70.247547) 3734 | (xy 76.407664 70.333793) (xy 76.407671 70.333797) (xy 76.542517 70.384091) (xy 76.542516 70.384091) 3735 | (xy 76.549444 70.384835) (xy 76.602127 70.3905) (xy 78.397872 70.390499) (xy 78.457483 70.384091) 3736 | (xy 78.592331 70.333796) (xy 78.707546 70.247546) (xy 78.793796 70.132331) (xy 78.844091 69.997483) 3737 | (xy 78.8505 69.937873) (xy 78.850499 68.142128) (xy 78.844091 68.082517) (xy 78.793796 67.947669) 3738 | (xy 78.793795 67.947668) (xy 78.793793 67.947664) (xy 78.707547 67.832455) (xy 78.707544 67.832452) 3739 | (xy 78.592335 67.746206) (xy 78.592328 67.746202) (xy 78.457482 67.695908) (xy 78.457483 67.695908) 3740 | (xy 78.397883 67.689501) (xy 78.397881 67.6895) (xy 78.397873 67.6895) (xy 78.397864 67.6895) (xy 76.602129 67.6895) 3741 | (xy 76.602123 67.689501) (xy 76.542516 67.695908) (xy 76.407671 67.746202) (xy 76.407664 67.746206) 3742 | (xy 76.292455 67.832452) (xy 76.292452 67.832455) (xy 76.206206 67.947664) (xy 76.206202 67.947671) 3743 | (xy 76.155908 68.082517) (xy 76.149802 68.139316) (xy 76.149501 68.142123) (xy 76.1495 68.142135) 3744 | (xy 72.053055 68.142135) (xy 72.053043 68.139316) (xy 72.039033 64.73501) (xy 72.058442 64.66789) 3745 | (xy 72.111057 64.621919) (xy 72.163032 64.6105) (xy 76.240382 64.6105) (xy 76.307421 64.630185) 3746 | (xy 76.341099 64.664591) (xy 76.342085 64.663875) (xy 76.46989 64.839786) (xy 76.620213 64.990109) 3747 | (xy 76.792179 65.115048) (xy 76.792181 65.115049) (xy 76.792184 65.115051) (xy 76.981588 65.211557) 3748 | (xy 77.183757 65.277246) (xy 77.393713 65.3105) (xy 77.393714 65.3105) (xy 77.606286 65.3105) (xy 77.606287 65.3105) 3749 | (xy 77.816243 65.277246) (xy 78.018412 65.211557) (xy 78.207816 65.115051) (xy 78.229789 65.099086) 3750 | (xy 78.379786 64.990109) (xy 78.379788 64.990106) (xy 78.379792 64.990104) (xy 78.530104 64.839792) 3751 | (xy 78.530106 64.839788) (xy 78.530109 64.839786) (xy 78.655048 64.66782) (xy 78.655047 64.66782) 3752 | (xy 78.655051 64.667816) (xy 78.751557 64.478412) (xy 78.817246 64.276243) (xy 78.8505 64.066287) 3753 | (xy 78.8505 63.853713) (xy 78.817246 63.643757) (xy 78.751557 63.441588) (xy 78.655051 63.252184) 3754 | (xy 78.655049 63.252181) (xy 78.655048 63.252179) (xy 78.530109 63.080213) (xy 78.379786 62.92989) 3755 | (xy 78.20782 62.804951) (xy 78.018414 62.708444) (xy 78.018413 62.708443) (xy 78.018412 62.708443) 3756 | (xy 77.816243 62.642754) (xy 77.816241 62.642753) (xy 77.81624 62.642753) (xy 77.654957 62.617208) 3757 | (xy 77.606287 62.6095) (xy 77.393713 62.6095) (xy 77.345042 62.617208) (xy 77.18376 62.642753) (xy 76.981585 62.708444) 3758 | (xy 76.792179 62.804951) (xy 76.620213 62.92989) (xy 76.46989 63.080213) (xy 76.342085 63.256125) 3759 | (xy 76.34074 63.255148) (xy 76.294295 63.297166) (xy 76.240382 63.3095) (xy 72.156658 63.3095) (xy 72.089619 63.289815) 3760 | (xy 72.043864 63.237011) (xy 72.032659 63.18601) (xy 72.009851 57.643713) (xy 75.8995 57.643713) 3761 | (xy 75.8995 57.856286) (xy 75.932753 58.066239) (xy 75.998444 58.268414) (xy 76.094951 58.45782) 3762 | (xy 76.21989 58.629786) (xy 76.370213 58.780109) (xy 76.542179 58.905048) (xy 76.542181 58.905049) 3763 | (xy 76.542184 58.905051) (xy 76.731588 59.001557) (xy 76.933757 59.067246) (xy 77.143713 59.1005) 3764 | (xy 77.143714 59.1005) (xy 77.356286 59.1005) (xy 77.356287 59.1005) (xy 77.566243 59.067246) (xy 77.768412 59.001557) 3765 | (xy 77.957816 58.905051) (xy 77.979789 58.889086) (xy 78.129786 58.780109) (xy 78.129788 58.780106) 3766 | (xy 78.129792 58.780104) (xy 78.280104 58.629792) (xy 78.280106 58.629788) (xy 78.280109 58.629786) 3767 | (xy 78.405048 58.45782) (xy 78.405047 58.45782) (xy 78.405051 58.457816) (xy 78.501557 58.268412) 3768 | (xy 78.567246 58.066243) (xy 78.6005 57.856287) (xy 78.6005 57.643713) (xy 78.567246 57.433757) 3769 | (xy 78.501557 57.231588) (xy 78.405051 57.042184) (xy 78.405049 57.042181) (xy 78.405048 57.042179) 3770 | (xy 78.280109 56.870213) (xy 78.129786 56.71989) (xy 77.95782 56.594951) (xy 77.768414 56.498444) 3771 | (xy 77.768413 56.498443) (xy 77.768412 56.498443) (xy 77.566243 56.432754) (xy 77.566241 56.432753) 3772 | (xy 77.56624 56.432753) (xy 77.404957 56.407208) (xy 77.356287 56.3995) (xy 77.143713 56.3995) (xy 77.095042 56.407208) 3773 | (xy 76.93376 56.432753) (xy 76.731585 56.498444) (xy 76.542179 56.594951) (xy 76.370213 56.71989) 3774 | (xy 76.21989 56.870213) (xy 76.094951 57.042179) (xy 75.998444 57.231585) (xy 75.932753 57.43376) 3775 | (xy 75.8995 57.643713) (xy 72.009851 57.643713) (xy 72.009833 57.639351) (xy 72.005138 56.498444) 3776 | (xy 72.001543 55.625008) (xy 72.020952 55.55789) (xy 72.073567 55.511919) (xy 72.125542 55.5005) 3777 | (xy 79.3755 55.5005) 3778 | ) 3779 | ) 3780 | ) 3781 | (zone 3782 | (net 3) 3783 | (net_name "Net-(J2-Pin_2)") 3784 | (layer "F.Cu") 3785 | (uuid "06c3ce6c-857c-4d49-89a9-2ff0300213ae") 3786 | (name "Vout") 3787 | (hatch edge 0.5) 3788 | (priority 3) 3789 | (connect_pads yes 3790 | (clearance 0.5) 3791 | ) 3792 | (min_thickness 0.25) 3793 | (filled_areas_thickness no) 3794 | (fill yes 3795 | (thermal_gap 0.5) 3796 | (thermal_bridge_width 0.5) 3797 | ) 3798 | (polygon 3799 | (pts 3800 | (xy 62.95 74.65) (xy 67 74.65) (xy 67 72.6) (xy 64.35 72.6) (xy 64.35 71.45) (xy 62.95 71.45) (xy 62.95 71.85) 3801 | ) 3802 | ) 3803 | (filled_polygon 3804 | (layer "F.Cu") 3805 | (pts 3806 | (xy 64.293039 71.920184) (xy 64.338794 71.972988) (xy 64.35 72.024499) (xy 64.35 72.6) (xy 66.876 72.6) 3807 | (xy 66.943039 72.619685) (xy 66.988794 72.672489) (xy 67 72.724) (xy 67 74.65) (xy 65.076713 74.65) 3808 | (xy 65.009674 74.630315) (xy 64.99551 74.619713) (xy 64.966335 74.594432) (xy 64.966331 74.59443) 3809 | (xy 64.835465 74.534664) (xy 64.83546 74.534662) (xy 64.835459 74.534662) (xy 64.76842 74.514977) 3810 | (xy 64.768422 74.514977) (xy 64.768417 74.514976) (xy 64.720944 74.50815) (xy 64.626 74.4945) (xy 63.074 74.4945) 3811 | (xy 63.006961 74.474815) (xy 62.961206 74.422011) (xy 62.95 74.3705) (xy 62.95 72.0245) (xy 62.969685 71.957461) 3812 | (xy 63.022489 71.911706) (xy 63.074 71.9005) (xy 63.828503 71.9005) (xy 63.828511 71.900499) (xy 64.226 71.900499) 3813 | ) 3814 | ) 3815 | ) 3816 | (zone 3817 | (net 1) 3818 | (net_name "GND") 3819 | (layer "F.Cu") 3820 | (uuid "66330b92-8ad6-4fce-a98f-441cd10ac388") 3821 | (name "GND") 3822 | (hatch edge 0.5) 3823 | (priority 6) 3824 | (connect_pads yes 3825 | (clearance 0.5) 3826 | ) 3827 | (min_thickness 0.25) 3828 | (filled_areas_thickness no) 3829 | (fill yes 3830 | (thermal_gap 0.5) 3831 | (thermal_bridge_width 0.5) 3832 | ) 3833 | (polygon 3834 | (pts 3835 | (xy 58.15 75) (xy 64.75 75) (xy 64.75 79.55) (xy 58.15 79.55) 3836 | ) 3837 | ) 3838 | (filled_polygon 3839 | (layer "F.Cu") 3840 | (pts 3841 | (xy 64.693039 75.019685) (xy 64.738794 75.072489) (xy 64.75 75.124) (xy 64.75 79.3755) (xy 64.730315 79.442539) 3842 | (xy 64.677511 79.488294) (xy 64.626 79.4995) (xy 58.475349 79.4995) (xy 58.40831 79.479815) (xy 58.362555 79.427011) 3843 | (xy 58.351354 79.374431) (xy 58.351369 79.372672) (xy 58.388004 75.122928) (xy 58.408265 75.056064) 3844 | (xy 58.461462 75.010766) (xy 58.511999 75) (xy 64.626 75) 3845 | ) 3846 | ) 3847 | ) 3848 | (zone 3849 | (net 7) 3850 | (net_name "Net-(D1-K)") 3851 | (layer "F.Cu") 3852 | (uuid "8769b371-d241-4c5c-abd6-7fb245a74352") 3853 | (name "Vin") 3854 | (hatch edge 0.5) 3855 | (connect_pads yes 3856 | (clearance 0.5) 3857 | ) 3858 | (min_thickness 0.25) 3859 | (filled_areas_thickness no) 3860 | (fill yes 3861 | (thermal_gap 0.5) 3862 | (thermal_bridge_width 0.5) 3863 | ) 3864 | (polygon 3865 | (pts 3866 | (xy 65.248865 70.647409) (xy 65.079522 55.35) (xy 59.4 55.35) (xy 59.4 70.599072) 3867 | ) 3868 | ) 3869 | (filled_polygon 3870 | (layer "F.Cu") 3871 | (pts 3872 | (xy 64.514293 55.520185) (xy 64.560048 55.572989) (xy 64.571254 55.6245) (xy 64.571254 65.786726) 3873 | (xy 64.551569 65.853765) (xy 64.534935 65.874407) (xy 64.205888 66.203453) (xy 64.205887 66.203454) 3874 | (xy 64.129223 66.318192) (xy 64.076421 66.445668) (xy 64.076418 66.44568) (xy 64.068592 66.485024) 3875 | (xy 64.068592 66.485025) (xy 64.0495 66.581004) (xy 64.0495 70.174684) (xy 64.040061 70.222136) 3876 | (xy 63.980264 70.366498) (xy 63.980261 70.366508) (xy 63.953769 70.499692) (xy 63.921384 70.561603) 3877 | (xy 63.860668 70.596177) (xy 63.832152 70.5995) (xy 63.814071 70.5995) (xy 63.814069 70.5995) (xy 61.223918 70.5995) 3878 | (xy 61.076082 70.5995) (xy 61.062431 70.602215) (xy 61.023776 70.609904) (xy 60.998561 70.612282) 3879 | (xy 59.522975 70.600088) (xy 59.456101 70.57985) (xy 59.410784 70.52667) (xy 59.4 70.476092) (xy 59.4 55.6245) 3880 | (xy 59.419685 55.557461) (xy 59.472489 55.511706) (xy 59.524 55.5005) (xy 64.447254 55.5005) 3881 | ) 3882 | ) 3883 | ) 3884 | (zone 3885 | (net 6) 3886 | (net_name "Net-(U1-LX)") 3887 | (layer "F.Cu") 3888 | (uuid "8f8ea7da-c68a-4dfb-9810-45c81012bb5f") 3889 | (name "LX") 3890 | (hatch edge 0.5) 3891 | (priority 1) 3892 | (connect_pads yes 3893 | (clearance 0.5) 3894 | ) 3895 | (min_thickness 0.25) 3896 | (filled_areas_thickness no) 3897 | (fill yes 3898 | (thermal_gap 0.5) 3899 | (thermal_bridge_width 0.5) 3900 | ) 3901 | (polygon 3902 | (pts 3903 | (xy 65.15 70.45) (xy 69.9 70.45) (xy 69.9 66.5) (xy 65.15 66.5) 3904 | ) 3905 | ) 3906 | (filled_polygon 3907 | (layer "F.Cu") 3908 | (pts 3909 | (xy 69.831497 66.516827) (xy 69.882638 66.564434) (xy 69.9 66.627714) (xy 69.9 70.326) (xy 69.880315 70.393039) 3910 | (xy 69.827511 70.438794) (xy 69.776 70.45) (xy 66.639329 70.45) (xy 66.57229 70.430315) (xy 66.526535 70.377511) 3911 | (xy 66.523147 70.369334) (xy 66.518796 70.35767) (xy 66.518793 70.357664) (xy 66.432547 70.242455) 3912 | (xy 66.432544 70.242452) (xy 66.317335 70.156206) (xy 66.317328 70.156202) (xy 66.182482 70.105908) 3913 | (xy 66.182483 70.105908) (xy 66.122883 70.099501) (xy 66.122881 70.0995) (xy 66.122873 70.0995) 3914 | (xy 66.122865 70.0995) (xy 65.5745 70.0995) (xy 65.507461 70.079815) (xy 65.461706 70.027011) (xy 65.4505 69.9755) 3915 | (xy 65.4505 66.991518) (xy 65.470185 66.924479) (xy 65.486819 66.903837) (xy 65.703837 66.686819) 3916 | (xy 65.76516 66.653334) (xy 65.791518 66.6505) (xy 66.708427 66.6505) (xy 66.708435 66.650499) (xy 67.000002 66.650499) 3917 | (xy 67.000008 66.650499) (xy 67.102797 66.639999) (xy 67.269334 66.584814) (xy 67.302375 66.564434) 3918 | (xy 67.367994 66.523961) (xy 67.43309 66.5055) (xy 69.752744 66.5055) (xy 69.752754 66.5055) (xy 69.762742 66.504426) 3919 | ) 3920 | ) 3921 | ) 3922 | (zone 3923 | (net 8) 3924 | (net_name "Net-(D1-A)") 3925 | (layer "F.Cu") 3926 | (uuid "bfd3f9ff-e617-4768-b45d-5919f8f63861") 3927 | (name "In") 3928 | (hatch edge 0.5) 3929 | (priority 8) 3930 | (connect_pads yes 3931 | (clearance 0.5) 3932 | ) 3933 | (min_thickness 0.25) 3934 | (filled_areas_thickness no) 3935 | (fill yes 3936 | (thermal_gap 0.5) 3937 | (thermal_bridge_width 0.5) 3938 | ) 3939 | (polygon 3940 | (pts 3941 | (xy 45.299822 55.461938) (xy 58.051977 55.461938) (xy 57.843357 79.661938) (xy 45.299822 79.661938) 3942 | ) 3943 | ) 3944 | (filled_polygon 3945 | (layer "F.Cu") 3946 | (pts 3947 | (xy 57.993611 55.520185) (xy 58.039366 55.572989) (xy 58.050566 55.625566) (xy 57.923471 70.368657) 3948 | (xy 57.845817 79.376569) (xy 57.825556 79.443436) (xy 57.772359 79.488734) (xy 57.721822 79.4995) 3949 | (xy 45.6245 79.4995) (xy 45.557461 79.479815) (xy 45.511706 79.427011) (xy 45.5005 79.3755) (xy 45.5005 77.143713) 3950 | (xy 46.3995 77.143713) (xy 46.3995 77.356286) (xy 46.432753 77.566239) (xy 46.498444 77.768414) 3951 | (xy 46.594951 77.95782) (xy 46.71989 78.129786) (xy 46.870213 78.280109) (xy 47.042179 78.405048) 3952 | (xy 47.042181 78.405049) (xy 47.042184 78.405051) (xy 47.231588 78.501557) (xy 47.433757 78.567246) 3953 | (xy 47.643713 78.6005) (xy 47.643714 78.6005) (xy 47.856286 78.6005) (xy 47.856287 78.6005) (xy 48.066243 78.567246) 3954 | (xy 48.268412 78.501557) (xy 48.457816 78.405051) (xy 48.479789 78.389086) (xy 48.629786 78.280109) 3955 | (xy 48.629788 78.280106) (xy 48.629792 78.280104) (xy 48.780104 78.129792) (xy 48.780106 78.129788) 3956 | (xy 48.780109 78.129786) (xy 48.905048 77.95782) (xy 48.905047 77.95782) (xy 48.905051 77.957816) 3957 | (xy 49.001557 77.768412) (xy 49.067246 77.566243) (xy 49.1005 77.356287) (xy 49.1005 77.143713) 3958 | (xy 49.067246 76.933757) (xy 49.001557 76.731588) (xy 48.905051 76.542184) (xy 48.905049 76.542181) 3959 | (xy 48.905048 76.542179) (xy 48.780109 76.370213) (xy 48.629786 76.21989) (xy 48.45782 76.094951) 3960 | (xy 48.268414 75.998444) (xy 48.268413 75.998443) (xy 48.268412 75.998443) (xy 48.066243 75.932754) 3961 | (xy 48.066241 75.932753) (xy 48.06624 75.932753) (xy 47.904957 75.907208) (xy 47.856287 75.8995) 3962 | (xy 47.643713 75.8995) (xy 47.595042 75.907208) (xy 47.43376 75.932753) (xy 47.231585 75.998444) 3963 | (xy 47.042179 76.094951) (xy 46.870213 76.21989) (xy 46.71989 76.370213) (xy 46.594951 76.542179) 3964 | (xy 46.498444 76.731585) (xy 46.432753 76.93376) (xy 46.3995 77.143713) (xy 45.5005 77.143713) (xy 45.5005 68.549983) 3965 | (xy 49.092 68.549983) (xy 49.092 69.950001) (xy 49.092001 69.950018) (xy 49.1025 70.052796) (xy 49.102501 70.052799) 3966 | (xy 49.157685 70.219331) (xy 49.157686 70.219334) (xy 49.249788 70.368656) (xy 49.373844 70.492712) 3967 | (xy 49.523166 70.584814) (xy 49.689703 70.639999) (xy 49.792491 70.6505) (xy 52.992508 70.650499) 3968 | (xy 53.095297 70.639999) (xy 53.261834 70.584814) (xy 53.411156 70.492712) (xy 53.535212 70.368656) 3969 | (xy 53.627314 70.219334) (xy 53.682499 70.052797) (xy 53.693 69.950009) (xy 53.692999 68.549992) 3970 | (xy 53.682499 68.447203) (xy 53.627314 68.280666) (xy 53.535212 68.131344) (xy 53.411156 68.007288) 3971 | (xy 53.261834 67.915186) (xy 53.095297 67.860001) (xy 53.095295 67.86) (xy 52.99251 67.8495) (xy 49.792498 67.8495) 3972 | (xy 49.792481 67.849501) (xy 49.689703 67.86) (xy 49.6897 67.860001) (xy 49.523168 67.915185) (xy 49.523163 67.915187) 3973 | (xy 49.373842 68.007289) (xy 49.249789 68.131342) (xy 49.157687 68.280663) (xy 49.157686 68.280666) 3974 | (xy 49.102501 68.447203) (xy 49.102501 68.447204) (xy 49.1025 68.447204) (xy 49.092 68.549983) (xy 45.5005 68.549983) 3975 | (xy 45.5005 57.643713) (xy 46.3995 57.643713) (xy 46.3995 57.856286) (xy 46.432753 58.066239) (xy 46.498444 58.268414) 3976 | (xy 46.594951 58.45782) (xy 46.71989 58.629786) (xy 46.870213 58.780109) (xy 47.042179 58.905048) 3977 | (xy 47.042181 58.905049) (xy 47.042184 58.905051) (xy 47.231588 59.001557) (xy 47.433757 59.067246) 3978 | (xy 47.643713 59.1005) (xy 47.643714 59.1005) (xy 47.856286 59.1005) (xy 47.856287 59.1005) (xy 48.066243 59.067246) 3979 | (xy 48.268412 59.001557) (xy 48.457816 58.905051) (xy 48.479789 58.889086) (xy 48.629786 58.780109) 3980 | (xy 48.629788 58.780106) (xy 48.629792 58.780104) (xy 48.780104 58.629792) (xy 48.780106 58.629788) 3981 | (xy 48.780109 58.629786) (xy 48.905048 58.45782) (xy 48.905047 58.45782) (xy 48.905051 58.457816) 3982 | (xy 49.001557 58.268412) (xy 49.067246 58.066243) (xy 49.1005 57.856287) (xy 49.1005 57.643713) 3983 | (xy 49.067246 57.433757) (xy 49.001557 57.231588) (xy 48.905051 57.042184) (xy 48.905049 57.042181) 3984 | (xy 48.905048 57.042179) (xy 48.780109 56.870213) (xy 48.629786 56.71989) (xy 48.45782 56.594951) 3985 | (xy 48.268414 56.498444) (xy 48.268413 56.498443) (xy 48.268412 56.498443) (xy 48.066243 56.432754) 3986 | (xy 48.066241 56.432753) (xy 48.06624 56.432753) (xy 47.904957 56.407208) (xy 47.856287 56.3995) 3987 | (xy 47.643713 56.3995) (xy 47.595042 56.407208) (xy 47.43376 56.432753) (xy 47.231585 56.498444) 3988 | (xy 47.042179 56.594951) (xy 46.870213 56.71989) (xy 46.71989 56.870213) (xy 46.594951 57.042179) 3989 | (xy 46.498444 57.231585) (xy 46.432753 57.43376) (xy 46.3995 57.643713) (xy 45.5005 57.643713) (xy 45.5005 55.6245) 3990 | (xy 45.520185 55.557461) (xy 45.572989 55.511706) (xy 45.6245 55.5005) (xy 57.926572 55.5005) 3991 | ) 3992 | ) 3993 | ) 3994 | (zone 3995 | (net 1) 3996 | (net_name "GND") 3997 | (layer "F.Cu") 3998 | (uuid "d5b89725-4957-48ab-a6c3-a63c56ce78a0") 3999 | (name "GND") 4000 | (hatch edge 0.5) 4001 | (priority 7) 4002 | (connect_pads yes 4003 | (clearance 0.5) 4004 | ) 4005 | (min_thickness 0.25) 4006 | (filled_areas_thickness no) 4007 | (fill yes 4008 | (thermal_gap 0.5) 4009 | (thermal_bridge_width 0.5) 4010 | ) 4011 | (polygon 4012 | (pts 4013 | (xy 69.876754 55.35) (xy 69.876754 66) (xy 65.076754 66) (xy 65.076754 55.35) 4014 | ) 4015 | ) 4016 | (filled_polygon 4017 | (layer "F.Cu") 4018 | (pts 4019 | (xy 69.819793 55.520185) (xy 69.865548 55.572989) (xy 69.876754 55.6245) (xy 69.876754 65.876) (xy 69.857069 65.943039) 4020 | (xy 69.804265 65.988794) (xy 69.752754 66) (xy 65.200754 66) (xy 65.133715 65.980315) (xy 65.08796 65.927511) 4021 | (xy 65.076754 65.876) (xy 65.076754 55.6245) (xy 65.096439 55.557461) (xy 65.149243 55.511706) (xy 65.200754 55.5005) 4022 | (xy 69.752754 55.5005) 4023 | ) 4024 | ) 4025 | ) 4026 | (zone 4027 | (net 3) 4028 | (net_name "Net-(J2-Pin_2)") 4029 | (layer "F.Cu") 4030 | (uuid "fd6f7285-022b-4eab-a0bb-d2d911fff389") 4031 | (name "Vout") 4032 | (hatch edge 0.5) 4033 | (priority 5) 4034 | (connect_pads yes 4035 | (clearance 0.5) 4036 | ) 4037 | (min_thickness 0.25) 4038 | (filled_areas_thickness no) 4039 | (fill yes 4040 | (thermal_gap 0.5) 4041 | (thermal_bridge_width 0.5) 4042 | ) 4043 | (polygon 4044 | (pts 4045 | (xy 65.15 74.65) (xy 65.15 79.55) (xy 72.1 79.55) (xy 72.1 76.85) (xy 67 76.85) (xy 67 74.65) 4046 | ) 4047 | ) 4048 | (filled_polygon 4049 | (layer "F.Cu") 4050 | (pts 4051 | (xy 67 76.85) (xy 72.1 76.85) (xy 72.1 79.4995) (xy 65.3795 79.4995) (xy 65.312461 79.479815) (xy 65.266706 79.427011) 4052 | (xy 65.2555 79.3755) (xy 65.2555 75.12401) (xy 65.2555 75.124) (xy 65.243947 75.016544) (xy 65.232741 74.965033) 4053 | (xy 65.232637 74.964722) (xy 65.198616 74.862502) (xy 65.198614 74.862498) (xy 65.169684 74.817482) 4054 | (xy 65.15 74.750443) (xy 65.15 74.65) (xy 67 74.65) 4055 | ) 4056 | ) 4057 | ) 4058 | (zone 4059 | (net 1) 4060 | (net_name "GND") 4061 | (layer "B.Cu") 4062 | (uuid "fa83f654-1087-4de3-9b60-054eab164325") 4063 | (name "GND") 4064 | (hatch edge 0.5) 4065 | (priority 4) 4066 | (connect_pads yes 4067 | (clearance 0.5) 4068 | ) 4069 | (min_thickness 0.25) 4070 | (filled_areas_thickness no) 4071 | (fill yes 4072 | (thermal_gap 0.5) 4073 | (thermal_bridge_width 0.5) 4074 | ) 4075 | (polygon 4076 | (pts 4077 | (xy 45.31946 55.409868) (xy 79.75 55.25) (xy 79.719972 79.610826) (xy 45.31946 79.610826) 4078 | ) 4079 | ) 4080 | (filled_polygon 4081 | (layer "B.Cu") 4082 | (pts 4083 | (xy 79.442539 55.520185) (xy 79.488294 55.572989) (xy 79.4995 55.6245) (xy 79.4995 79.3755) (xy 79.479815 79.442539) 4084 | (xy 79.427011 79.488294) (xy 79.3755 79.4995) (xy 45.6245 79.4995) (xy 45.557461 79.479815) (xy 45.511706 79.427011) 4085 | (xy 45.5005 79.3755) (xy 45.5005 77.143713) (xy 46.3995 77.143713) (xy 46.3995 77.356286) (xy 46.432753 77.566239) 4086 | (xy 46.498444 77.768414) (xy 46.594951 77.95782) (xy 46.71989 78.129786) (xy 46.870213 78.280109) 4087 | (xy 47.042179 78.405048) (xy 47.042181 78.405049) (xy 47.042184 78.405051) (xy 47.231588 78.501557) 4088 | (xy 47.433757 78.567246) (xy 47.643713 78.6005) (xy 47.643714 78.6005) (xy 47.856286 78.6005) (xy 47.856287 78.6005) 4089 | (xy 48.066243 78.567246) (xy 48.268412 78.501557) (xy 48.457816 78.405051) (xy 48.479789 78.389086) 4090 | (xy 48.629786 78.280109) (xy 48.629788 78.280106) (xy 48.629792 78.280104) (xy 48.780104 78.129792) 4091 | (xy 48.780106 78.129788) (xy 48.780109 78.129786) (xy 48.905048 77.95782) (xy 48.905047 77.95782) 4092 | (xy 48.905051 77.957816) (xy 49.001557 77.768412) (xy 49.067246 77.566243) (xy 49.1005 77.356287) 4093 | (xy 49.1005 77.143713) (xy 75.8995 77.143713) (xy 75.8995 77.356286) (xy 75.932753 77.566239) (xy 75.998444 77.768414) 4094 | (xy 76.094951 77.95782) (xy 76.21989 78.129786) (xy 76.370213 78.280109) (xy 76.542179 78.405048) 4095 | (xy 76.542181 78.405049) (xy 76.542184 78.405051) (xy 76.731588 78.501557) (xy 76.933757 78.567246) 4096 | (xy 77.143713 78.6005) (xy 77.143714 78.6005) (xy 77.356286 78.6005) (xy 77.356287 78.6005) (xy 77.566243 78.567246) 4097 | (xy 77.768412 78.501557) (xy 77.957816 78.405051) (xy 77.979789 78.389086) (xy 78.129786 78.280109) 4098 | (xy 78.129788 78.280106) (xy 78.129792 78.280104) (xy 78.280104 78.129792) (xy 78.280106 78.129788) 4099 | (xy 78.280109 78.129786) (xy 78.405048 77.95782) (xy 78.405047 77.95782) (xy 78.405051 77.957816) 4100 | (xy 78.501557 77.768412) (xy 78.567246 77.566243) (xy 78.6005 77.356287) (xy 78.6005 77.143713) 4101 | (xy 78.567246 76.933757) (xy 78.501557 76.731588) (xy 78.405051 76.542184) (xy 78.405049 76.542181) 4102 | (xy 78.405048 76.542179) (xy 78.280109 76.370213) (xy 78.129786 76.21989) (xy 77.95782 76.094951) 4103 | (xy 77.768414 75.998444) (xy 77.768413 75.998443) (xy 77.768412 75.998443) (xy 77.566243 75.932754) 4104 | (xy 77.566241 75.932753) (xy 77.56624 75.932753) (xy 77.404957 75.907208) (xy 77.356287 75.8995) 4105 | (xy 77.143713 75.8995) (xy 77.095042 75.907208) (xy 76.93376 75.932753) (xy 76.731585 75.998444) 4106 | (xy 76.542179 76.094951) (xy 76.370213 76.21989) (xy 76.21989 76.370213) (xy 76.094951 76.542179) 4107 | (xy 75.998444 76.731585) (xy 75.932753 76.93376) (xy 75.8995 77.143713) (xy 49.1005 77.143713) (xy 49.067246 76.933757) 4108 | (xy 49.001557 76.731588) (xy 48.905051 76.542184) (xy 48.905049 76.542181) (xy 48.905048 76.542179) 4109 | (xy 48.780109 76.370213) (xy 48.629786 76.21989) (xy 48.45782 76.094951) (xy 48.268414 75.998444) 4110 | (xy 48.268413 75.998443) (xy 48.268412 75.998443) (xy 48.066243 75.932754) (xy 48.066241 75.932753) 4111 | (xy 48.06624 75.932753) (xy 47.904957 75.907208) (xy 47.856287 75.8995) (xy 47.643713 75.8995) (xy 47.595042 75.907208) 4112 | (xy 47.43376 75.932753) (xy 47.231585 75.998444) (xy 47.042179 76.094951) (xy 46.870213 76.21989) 4113 | (xy 46.71989 76.370213) (xy 46.594951 76.542179) (xy 46.498444 76.731585) (xy 46.432753 76.93376) 4114 | (xy 46.3995 77.143713) (xy 45.5005 77.143713) (xy 45.5005 71.552135) (xy 67.5995 71.552135) (xy 67.5995 73.34787) 4115 | (xy 67.599501 73.347876) (xy 67.605908 73.407483) (xy 67.656202 73.542328) (xy 67.656206 73.542335) 4116 | (xy 67.742452 73.657544) (xy 67.742455 73.657547) (xy 67.857664 73.743793) (xy 67.857671 73.743797) 4117 | (xy 67.992517 73.794091) (xy 67.992516 73.794091) (xy 67.999444 73.794835) (xy 68.052127 73.8005) 4118 | (xy 69.847872 73.800499) (xy 69.907483 73.794091) (xy 70.042331 73.743796) (xy 70.157546 73.657546) 4119 | (xy 70.243796 73.542331) (xy 70.294091 73.407483) (xy 70.3005 73.347873) (xy 70.300499 71.552128) 4120 | (xy 70.294091 71.492517) (xy 70.243796 71.357669) (xy 70.243795 71.357668) (xy 70.243793 71.357664) 4121 | (xy 70.157547 71.242455) (xy 70.157544 71.242452) (xy 70.042335 71.156206) (xy 70.042328 71.156202) 4122 | (xy 69.907482 71.105908) (xy 69.907483 71.105908) (xy 69.847883 71.099501) (xy 69.847881 71.0995) 4123 | (xy 69.847873 71.0995) (xy 69.847864 71.0995) (xy 68.052129 71.0995) (xy 68.052123 71.099501) (xy 67.992516 71.105908) 4124 | (xy 67.857671 71.156202) (xy 67.857664 71.156206) (xy 67.742455 71.242452) (xy 67.742452 71.242455) 4125 | (xy 67.656206 71.357664) (xy 67.656202 71.357671) (xy 67.605908 71.492517) (xy 67.599501 71.552116) 4126 | (xy 67.599501 71.552123) (xy 67.5995 71.552135) (xy 45.5005 71.552135) (xy 45.5005 65.639778) (xy 49.092 65.639778) 4127 | (xy 49.092 65.860221) (xy 49.126485 66.077952) (xy 49.194603 66.287603) (xy 49.194604 66.287606) 4128 | (xy 49.294687 66.484025) (xy 49.424252 66.662358) (xy 49.424256 66.662363) (xy 49.580136 66.818243) 4129 | (xy 49.580141 66.818247) (xy 49.735692 66.93126) (xy 49.758478 66.947815) (xy 49.886875 67.013237) 4130 | (xy 49.954893 67.047895) (xy 49.954896 67.047896) (xy 50.059721 67.081955) (xy 50.164549 67.116015) 4131 | (xy 50.382278 67.1505) (xy 50.382279 67.1505) (xy 52.402721 67.1505) (xy 52.402722 67.1505) (xy 52.620451 67.116015) 4132 | (xy 52.830106 67.047895) (xy 53.026522 66.947815) (xy 53.204865 66.818242) (xy 53.360742 66.662365) 4133 | (xy 53.490315 66.484022) (xy 53.590395 66.287606) (xy 53.658515 66.077951) (xy 53.693 65.860222) 4134 | (xy 53.693 65.639778) (xy 53.658515 65.422049) (xy 53.602108 65.248443) (xy 53.590396 65.212396) 4135 | (xy 53.590395 65.212393) (xy 53.540794 65.115048) (xy 53.490315 65.015978) (xy 53.471517 64.990104) 4136 | (xy 53.360747 64.837641) (xy 53.360743 64.837636) (xy 53.204863 64.681756) (xy 53.204858 64.681752) 4137 | (xy 53.026525 64.552187) (xy 53.026524 64.552186) (xy 53.026522 64.552185) (xy 52.963596 64.520122) 4138 | (xy 52.830106 64.452104) (xy 52.830103 64.452103) (xy 52.620452 64.383985) (xy 52.511586 64.366742) 4139 | (xy 52.402722 64.3495) (xy 50.382278 64.3495) (xy 50.309701 64.360995) (xy 50.164547 64.383985) 4140 | (xy 49.954896 64.452103) (xy 49.954893 64.452104) (xy 49.758474 64.552187) (xy 49.580141 64.681752) 4141 | (xy 49.580136 64.681756) (xy 49.424256 64.837636) (xy 49.424252 64.837641) (xy 49.294687 65.015974) 4142 | (xy 49.194604 65.212393) (xy 49.194603 65.212396) (xy 49.126485 65.422047) (xy 49.092 65.639778) 4143 | (xy 45.5005 65.639778) (xy 45.5005 63.853713) (xy 76.1495 63.853713) (xy 76.1495 64.066287) (xy 76.182754 64.276243) 4144 | (xy 76.239895 64.452105) (xy 76.248444 64.478414) (xy 76.344951 64.66782) (xy 76.46989 64.839786) 4145 | (xy 76.620213 64.990109) (xy 76.792182 65.11505) (xy 76.800946 65.119516) (xy 76.851742 65.167491) 4146 | (xy 76.868536 65.235312) (xy 76.845998 65.301447) (xy 76.800946 65.340484) (xy 76.792182 65.344949) 4147 | (xy 76.620213 65.46989) (xy 76.46989 65.620213) (xy 76.344951 65.792179) (xy 76.248444 65.981585) 4148 | (xy 76.182753 66.18376) (xy 76.1495 66.393713) (xy 76.1495 66.606286) (xy 76.182753 66.816239) (xy 76.248444 67.018414) 4149 | (xy 76.344951 67.20782) (xy 76.46989 67.379786) (xy 76.620213 67.530109) (xy 76.792179 67.655048) 4150 | (xy 76.792181 67.655049) (xy 76.792184 67.655051) (xy 76.981588 67.751557) (xy 77.183757 67.817246) 4151 | (xy 77.393713 67.8505) (xy 77.393714 67.8505) (xy 77.606286 67.8505) (xy 77.606287 67.8505) (xy 77.816243 67.817246) 4152 | (xy 78.018412 67.751557) (xy 78.207816 67.655051) (xy 78.229789 67.639086) (xy 78.379786 67.530109) 4153 | (xy 78.379788 67.530106) (xy 78.379792 67.530104) (xy 78.530104 67.379792) (xy 78.530106 67.379788) 4154 | (xy 78.530109 67.379786) (xy 78.655048 67.20782) (xy 78.655047 67.20782) (xy 78.655051 67.207816) 4155 | (xy 78.751557 67.018412) (xy 78.817246 66.816243) (xy 78.8505 66.606287) (xy 78.8505 66.393713) 4156 | (xy 78.817246 66.183757) (xy 78.751557 65.981588) (xy 78.655051 65.792184) (xy 78.655049 65.792181) 4157 | (xy 78.655048 65.792179) (xy 78.530109 65.620213) (xy 78.379786 65.46989) (xy 78.20782 65.344951) 4158 | (xy 78.207115 65.344591) (xy 78.199054 65.340485) (xy 78.148259 65.292512) (xy 78.131463 65.224692) 4159 | (xy 78.153999 65.158556) (xy 78.199054 65.119515) (xy 78.207816 65.115051) (xy 78.229789 65.099086) 4160 | (xy 78.379786 64.990109) (xy 78.379788 64.990106) (xy 78.379792 64.990104) (xy 78.530104 64.839792) 4161 | (xy 78.530106 64.839788) (xy 78.530109 64.839786) (xy 78.655048 64.66782) (xy 78.655047 64.66782) 4162 | (xy 78.655051 64.667816) (xy 78.751557 64.478412) (xy 78.817246 64.276243) (xy 78.8505 64.066287) 4163 | (xy 78.8505 63.853713) (xy 78.817246 63.643757) (xy 78.751557 63.441588) (xy 78.655051 63.252184) 4164 | (xy 78.655049 63.252181) (xy 78.655048 63.252179) (xy 78.530109 63.080213) (xy 78.379786 62.92989) 4165 | (xy 78.20782 62.804951) (xy 78.018414 62.708444) (xy 78.018413 62.708443) (xy 78.018412 62.708443) 4166 | (xy 77.816243 62.642754) (xy 77.816241 62.642753) (xy 77.81624 62.642753) (xy 77.654957 62.617208) 4167 | (xy 77.606287 62.6095) (xy 77.393713 62.6095) (xy 77.345042 62.617208) (xy 77.18376 62.642753) (xy 76.981585 62.708444) 4168 | (xy 76.792179 62.804951) (xy 76.620213 62.92989) (xy 76.46989 63.080213) (xy 76.344951 63.252179) 4169 | (xy 76.248444 63.441585) (xy 76.182753 63.64376) (xy 76.1495 63.853713) (xy 45.5005 63.853713) (xy 45.5005 57.643713) 4170 | (xy 46.3995 57.643713) (xy 46.3995 57.856286) (xy 46.432753 58.066239) (xy 46.498444 58.268414) 4171 | (xy 46.594951 58.45782) (xy 46.71989 58.629786) (xy 46.870213 58.780109) (xy 47.042179 58.905048) 4172 | (xy 47.042181 58.905049) (xy 47.042184 58.905051) (xy 47.231588 59.001557) (xy 47.433757 59.067246) 4173 | (xy 47.643713 59.1005) (xy 47.643714 59.1005) (xy 47.856286 59.1005) (xy 47.856287 59.1005) (xy 48.066243 59.067246) 4174 | (xy 48.268412 59.001557) (xy 48.457816 58.905051) (xy 48.479789 58.889086) (xy 48.629786 58.780109) 4175 | (xy 48.629788 58.780106) (xy 48.629792 58.780104) (xy 48.780104 58.629792) (xy 48.780106 58.629788) 4176 | (xy 48.780109 58.629786) (xy 48.905048 58.45782) (xy 48.905047 58.45782) (xy 48.905051 58.457816) 4177 | (xy 49.001557 58.268412) (xy 49.067246 58.066243) (xy 49.1005 57.856287) (xy 49.1005 57.643713) 4178 | (xy 75.8995 57.643713) (xy 75.8995 57.856286) (xy 75.932753 58.066239) (xy 75.998444 58.268414) 4179 | (xy 76.094951 58.45782) (xy 76.21989 58.629786) (xy 76.370213 58.780109) (xy 76.542179 58.905048) 4180 | (xy 76.542181 58.905049) (xy 76.542184 58.905051) (xy 76.731588 59.001557) (xy 76.933757 59.067246) 4181 | (xy 77.143713 59.1005) (xy 77.143714 59.1005) (xy 77.356286 59.1005) (xy 77.356287 59.1005) (xy 77.566243 59.067246) 4182 | (xy 77.768412 59.001557) (xy 77.957816 58.905051) (xy 77.979789 58.889086) (xy 78.129786 58.780109) 4183 | (xy 78.129788 58.780106) (xy 78.129792 58.780104) (xy 78.280104 58.629792) (xy 78.280106 58.629788) 4184 | (xy 78.280109 58.629786) (xy 78.405048 58.45782) (xy 78.405047 58.45782) (xy 78.405051 58.457816) 4185 | (xy 78.501557 58.268412) (xy 78.567246 58.066243) (xy 78.6005 57.856287) (xy 78.6005 57.643713) 4186 | (xy 78.567246 57.433757) (xy 78.501557 57.231588) (xy 78.405051 57.042184) (xy 78.405049 57.042181) 4187 | (xy 78.405048 57.042179) (xy 78.280109 56.870213) (xy 78.129786 56.71989) (xy 77.95782 56.594951) 4188 | (xy 77.768414 56.498444) (xy 77.768413 56.498443) (xy 77.768412 56.498443) (xy 77.566243 56.432754) 4189 | (xy 77.566241 56.432753) (xy 77.56624 56.432753) (xy 77.404957 56.407208) (xy 77.356287 56.3995) 4190 | (xy 77.143713 56.3995) (xy 77.095042 56.407208) (xy 76.93376 56.432753) (xy 76.731585 56.498444) 4191 | (xy 76.542179 56.594951) (xy 76.370213 56.71989) (xy 76.21989 56.870213) (xy 76.094951 57.042179) 4192 | (xy 75.998444 57.231585) (xy 75.932753 57.43376) (xy 75.8995 57.643713) (xy 49.1005 57.643713) (xy 49.067246 57.433757) 4193 | (xy 49.001557 57.231588) (xy 48.905051 57.042184) (xy 48.905049 57.042181) (xy 48.905048 57.042179) 4194 | (xy 48.780109 56.870213) (xy 48.629786 56.71989) (xy 48.45782 56.594951) (xy 48.268414 56.498444) 4195 | (xy 48.268413 56.498443) (xy 48.268412 56.498443) (xy 48.066243 56.432754) (xy 48.066241 56.432753) 4196 | (xy 48.06624 56.432753) (xy 47.904957 56.407208) (xy 47.856287 56.3995) (xy 47.643713 56.3995) (xy 47.595042 56.407208) 4197 | (xy 47.43376 56.432753) (xy 47.231585 56.498444) (xy 47.042179 56.594951) (xy 46.870213 56.71989) 4198 | (xy 46.71989 56.870213) (xy 46.594951 57.042179) (xy 46.498444 57.231585) (xy 46.432753 57.43376) 4199 | (xy 46.3995 57.643713) (xy 45.5005 57.643713) (xy 45.5005 55.6245) (xy 45.520185 55.557461) (xy 45.572989 55.511706) 4200 | (xy 45.6245 55.5005) (xy 79.3755 55.5005) 4201 | ) 4202 | ) 4203 | ) 4204 | (embedded_fonts no) 4205 | ) 4206 | --------------------------------------------------------------------------------