├── docs ├── requirements.txt ├── rise.jpg ├── index.rst ├── troubleshooting.rst ├── Makefile ├── make.bat ├── overview.rst ├── conf.py └── LICENSE ├── CHANGES.md ├── KiCAD ├── Dianome.pdf ├── Dianome.kicad_pro └── Dianome.kicad_sch ├── README.md ├── COPYRIGHT ├── .gitignore └── LICENSE /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=3.2.1 2 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- 1 | 2 | 20/12/2022 3 | 4 | - Initial version 5 | -------------------------------------------------------------------------------- /docs/rise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinymovr/Dianome/HEAD/docs/rise.jpg -------------------------------------------------------------------------------- /KiCAD/Dianome.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinymovr/Dianome/HEAD/KiCAD/Dianome.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dianome 2 | Schematic and Board file for the Dianome R2 PDB 3 | 4 | [OSHW] GR000006 | Certified open source hardware | oshwa.org/cert 5 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | 2 | Welcome to Dianome documentation! 3 | ======================================== 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | :caption: Contents: 8 | 9 | overview 10 | troubleshooting 11 | 12 | -------------------------------------------------------------------------------- /docs/troubleshooting.rst: -------------------------------------------------------------------------------- 1 | *************** 2 | Troubleshooting 3 | *************** 4 | 5 | Please take a look at `Github Discussions `_ and `Github Issues `_ , and ask any questions there. 6 | 7 | You are more than welcome to join the `Tinymovr Discord Server `_ and ask any questions there, or have a chat with us! -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line, and also 5 | # from the environment for the first two. 6 | SPHINXOPTS ?= 7 | SPHINXBUILD ?= sphinx-build 8 | SOURCEDIR = . 9 | BUILDDIR = _build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | .PHONY: help Makefile 16 | 17 | # Catch-all target: route all unknown targets to Sphinx using the new 18 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 19 | %: Makefile 20 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 21 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright Ioannis Chatzikonstantinou/Tinymovr 2022. 2 | This source describes Open Hardware and is licensed under the CERN-OHL- W v2 3 | You may redistribute and modify this documentation and make products using it under the terms of the CERN-OHL-W v2 (https:/cern.ch/cern-ohl). This documentation is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A PARTICULAR PURPOSE. Please see the CERN-OHL-W v2 for applicable conditions. 4 | Source location: https://github.com/tinymovr/Dianome 5 | As per CERN-OHL-W v2 section 4.1, should You produce hardware based on these sources, You must maintain the Source Location visible on the external case of the White Rabbit switch or other product you make using this documentation. 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Eagle, a PCB layout tool 2 | 3 | # Backup files 4 | *.s#? 5 | *.b#? 6 | *.l#? 7 | *.b$? 8 | *.s$? 9 | *.l$? 10 | 11 | # Eagle project file 12 | # It contains a serial number and references to the file structure 13 | # on your computer. 14 | # comment the following line if you want to have your project file included. 15 | eagle.epf 16 | 17 | # Autorouter files 18 | *.pro 19 | *.job 20 | 21 | # CAM files 22 | *.$$$ 23 | *.cmp 24 | *.ly2 25 | *.l15 26 | *.sol 27 | *.plc 28 | *.stc 29 | *.sts 30 | *.crc 31 | *.crs 32 | 33 | *.dri 34 | *.drl 35 | *.gpi 36 | *.pls 37 | *.ger 38 | *.xln 39 | 40 | *.drd 41 | *.drd.* 42 | 43 | *.s#* 44 | *.b#* 45 | 46 | *.info 47 | 48 | *.eps 49 | 50 | # file locks introduced since 7.x 51 | *.lck 52 | docs/_build 53 | .DS_Store 54 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | pushd %~dp0 4 | 5 | REM Command file for Sphinx documentation 6 | 7 | if "%SPHINXBUILD%" == "" ( 8 | set SPHINXBUILD=sphinx-build 9 | ) 10 | set SOURCEDIR=. 11 | set BUILDDIR=_build 12 | 13 | if "%1" == "" goto help 14 | 15 | %SPHINXBUILD% >NUL 2>NUL 16 | if errorlevel 9009 ( 17 | echo. 18 | echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 19 | echo.installed, then set the SPHINXBUILD environment variable to point 20 | echo.to the full path of the 'sphinx-build' executable. Alternatively you 21 | echo.may add the Sphinx directory to PATH. 22 | echo. 23 | echo.If you don't have Sphinx installed, grab it from 24 | echo.http://sphinx-doc.org/ 25 | exit /b 1 26 | ) 27 | 28 | %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 29 | goto end 30 | 31 | :help 32 | %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% 33 | 34 | :end 35 | popd 36 | -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- 1 | ******************************** 2 | Dianome Power Distribution Board 3 | ******************************** 4 | 5 | Introduction 6 | ------------ 7 | 8 | Dianome is a Power Distribution Board (PDB) with enhanced safety features. It allows distribution from one XT-60 female connector to up to six XT-30 male connectors, a compact 4-layer PCB with standard 30,5 x 30,5mm screw hole pattern. 9 | 10 | Dianome is based on the `LM5060 integrated high-side protection controller from TI `_. 11 | 12 | Inrush current limiting 13 | ----------------------- 14 | 15 | Dianome provides inrush current limiting by driving the MOSFET through its ohmic region for a short time during startup. In the case of Tinymovr, this is designed to be in the range of a few milliseconds. In the image below the voltage transition downstream is depicted during startup 16 | 17 | .. figure:: rise.jpg 18 | :width: 800 19 | :align: center 20 | :alt: Rise time 21 | :figclass: align-center 22 | 23 | Enable Header 24 | ------------- 25 | 26 | Dianome includes an Enable header. When the header is open (no jumper), the board is in standby mode, the MOSFET is not conducting, and no power is delivered downstream. When the header is closed (jumper installed), the board enters the enabled mode, the LM5060 will go through its startup procedure and enable the MOSFET. 27 | 28 | Aux Header 29 | ---------- 30 | 31 | Dianome includes an Aux header, which may be used to power electronics that require constant supply, regardless of Dianome's state. This header is supplied directly from the V+ rail and no protection is provided. -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- 1 | # Configuration file for the Sphinx documentation builder. 2 | # 3 | # This file only contains a selection of the most common options. For a full 4 | # list see the documentation: 5 | # https://www.sphinx-doc.org/en/master/usage/configuration.html 6 | 7 | master_doc = 'index' 8 | 9 | # -- Path setup -------------------------------------------------------------- 10 | 11 | # If extensions (or modules to document with autodoc) are in another directory, 12 | # add these directories to sys.path here. If the directory is relative to the 13 | # documentation root, use os.path.abspath to make it absolute, like shown here. 14 | # 15 | # import os 16 | # import sys 17 | # sys.path.insert(0, os.path.abspath('.')) 18 | 19 | 20 | # -- Project information ----------------------------------------------------- 21 | 22 | project = 'Tinymovr' 23 | copyright = '2020, Yannis Chatzikonstantinou' 24 | author = 'Yannis Chatzikonstantinou' 25 | 26 | 27 | # -- General configuration --------------------------------------------------- 28 | 29 | # Add any Sphinx extension module names here, as strings. They can be 30 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 31 | # ones. 32 | extensions = [] 33 | 34 | # Add any paths that contain templates here, relative to this directory. 35 | templates_path = ['_templates'] 36 | 37 | # List of patterns, relative to source directory, that match files and 38 | # directories to ignore when looking for source files. 39 | # This pattern also affects html_static_path and html_extra_path. 40 | exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] 41 | 42 | 43 | # -- Options for HTML output ------------------------------------------------- 44 | 45 | # The theme to use for HTML and HTML Help pages. See the documentation for 46 | # a list of builtin themes. 47 | # 48 | html_theme = 'alabaster' 49 | 50 | # Add any paths that contain custom static files (such as style sheets) here, 51 | # relative to this directory. They are copied after the builtin static files, 52 | # so a file named "default.css" will overwrite the builtin "default.css". 53 | # html_static_path = ['_static'] 54 | html_static_path = [] 55 | -------------------------------------------------------------------------------- /KiCAD/Dianome.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.09999999999999999, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.15, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.15, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.3 49 | } 50 | }, 51 | "diff_pair_dimensions": [ 52 | { 53 | "gap": 0.0, 54 | "via_gap": 0.0, 55 | "width": 0.0 56 | } 57 | ], 58 | "drc_exclusions": [], 59 | "meta": { 60 | "version": 2 61 | }, 62 | "rule_severities": { 63 | "annular_width": "error", 64 | "clearance": "error", 65 | "copper_edge_clearance": "error", 66 | "courtyards_overlap": "error", 67 | "diff_pair_gap_out_of_range": "error", 68 | "diff_pair_uncoupled_length_too_long": "error", 69 | "drill_out_of_range": "error", 70 | "duplicate_footprints": "warning", 71 | "extra_footprint": "warning", 72 | "footprint_type_mismatch": "error", 73 | "hole_clearance": "error", 74 | "hole_near_hole": "error", 75 | "invalid_outline": "error", 76 | "item_on_disabled_layer": "error", 77 | "items_not_allowed": "error", 78 | "length_out_of_range": "error", 79 | "malformed_courtyard": "error", 80 | "microvia_drill_out_of_range": "error", 81 | "missing_courtyard": "ignore", 82 | "missing_footprint": "warning", 83 | "net_conflict": "warning", 84 | "npth_inside_courtyard": "ignore", 85 | "padstack": "error", 86 | "pth_inside_courtyard": "ignore", 87 | "shorting_items": "error", 88 | "silk_over_copper": "warning", 89 | "silk_overlap": "warning", 90 | "skew_out_of_range": "error", 91 | "through_hole_pad_without_hole": "error", 92 | "too_many_vias": "error", 93 | "track_dangling": "warning", 94 | "track_width": "error", 95 | "tracks_crossing": "error", 96 | "unconnected_items": "error", 97 | "unresolved_variable": "error", 98 | "via_dangling": "warning", 99 | "zone_has_empty_net": "error", 100 | "zones_intersect": "error" 101 | }, 102 | "rules": { 103 | "allow_blind_buried_vias": false, 104 | "allow_microvias": false, 105 | "max_error": 0.005, 106 | "min_clearance": 0.0, 107 | "min_copper_edge_clearance": 0.0, 108 | "min_hole_clearance": 0.25, 109 | "min_hole_to_hole": 0.25, 110 | "min_microvia_diameter": 0.19999999999999998, 111 | "min_microvia_drill": 0.09999999999999999, 112 | "min_silk_clearance": 0.0, 113 | "min_through_hole_diameter": 0.3, 114 | "min_track_width": 0.19999999999999998, 115 | "min_via_annular_width": 0.049999999999999996, 116 | "min_via_diameter": 0.39999999999999997, 117 | "solder_mask_clearance": 0.0, 118 | "solder_mask_min_width": 0.0, 119 | "use_height_for_length_calcs": true 120 | }, 121 | "track_widths": [ 122 | 0.0, 123 | 0.1524, 124 | 0.2, 125 | 0.25, 126 | 0.3, 127 | 0.4, 128 | 0.6 129 | ], 130 | "via_dimensions": [ 131 | { 132 | "diameter": 0.0, 133 | "drill": 0.0 134 | }, 135 | { 136 | "diameter": 0.4, 137 | "drill": 0.2 138 | }, 139 | { 140 | "diameter": 0.5, 141 | "drill": 0.25 142 | }, 143 | { 144 | "diameter": 0.6, 145 | "drill": 0.3 146 | }, 147 | { 148 | "diameter": 0.75, 149 | "drill": 0.35 150 | } 151 | ], 152 | "zones_allow_external_fillets": false, 153 | "zones_use_no_outline": true 154 | }, 155 | "layer_presets": [] 156 | }, 157 | "boards": [], 158 | "cvpcb": { 159 | "equivalence_files": [] 160 | }, 161 | "erc": { 162 | "erc_exclusions": [], 163 | "meta": { 164 | "version": 0 165 | }, 166 | "pin_map": [ 167 | [ 168 | 0, 169 | 0, 170 | 0, 171 | 0, 172 | 0, 173 | 0, 174 | 1, 175 | 0, 176 | 0, 177 | 0, 178 | 0, 179 | 2 180 | ], 181 | [ 182 | 0, 183 | 2, 184 | 0, 185 | 1, 186 | 0, 187 | 0, 188 | 1, 189 | 0, 190 | 2, 191 | 2, 192 | 2, 193 | 2 194 | ], 195 | [ 196 | 0, 197 | 0, 198 | 0, 199 | 0, 200 | 0, 201 | 0, 202 | 1, 203 | 0, 204 | 1, 205 | 0, 206 | 1, 207 | 2 208 | ], 209 | [ 210 | 0, 211 | 1, 212 | 0, 213 | 0, 214 | 0, 215 | 0, 216 | 1, 217 | 1, 218 | 2, 219 | 1, 220 | 1, 221 | 2 222 | ], 223 | [ 224 | 0, 225 | 0, 226 | 0, 227 | 0, 228 | 0, 229 | 0, 230 | 1, 231 | 0, 232 | 0, 233 | 0, 234 | 0, 235 | 2 236 | ], 237 | [ 238 | 0, 239 | 0, 240 | 0, 241 | 0, 242 | 0, 243 | 0, 244 | 0, 245 | 0, 246 | 0, 247 | 0, 248 | 0, 249 | 2 250 | ], 251 | [ 252 | 1, 253 | 1, 254 | 1, 255 | 1, 256 | 1, 257 | 0, 258 | 1, 259 | 1, 260 | 1, 261 | 1, 262 | 1, 263 | 2 264 | ], 265 | [ 266 | 0, 267 | 0, 268 | 0, 269 | 1, 270 | 0, 271 | 0, 272 | 1, 273 | 0, 274 | 0, 275 | 0, 276 | 0, 277 | 2 278 | ], 279 | [ 280 | 0, 281 | 2, 282 | 1, 283 | 2, 284 | 0, 285 | 0, 286 | 1, 287 | 0, 288 | 2, 289 | 2, 290 | 2, 291 | 2 292 | ], 293 | [ 294 | 0, 295 | 2, 296 | 0, 297 | 1, 298 | 0, 299 | 0, 300 | 1, 301 | 0, 302 | 2, 303 | 0, 304 | 0, 305 | 2 306 | ], 307 | [ 308 | 0, 309 | 2, 310 | 1, 311 | 1, 312 | 0, 313 | 0, 314 | 1, 315 | 0, 316 | 2, 317 | 0, 318 | 0, 319 | 2 320 | ], 321 | [ 322 | 2, 323 | 2, 324 | 2, 325 | 2, 326 | 2, 327 | 2, 328 | 2, 329 | 2, 330 | 2, 331 | 2, 332 | 2, 333 | 2 334 | ] 335 | ], 336 | "rule_severities": { 337 | "bus_definition_conflict": "error", 338 | "bus_entry_needed": "error", 339 | "bus_label_syntax": "error", 340 | "bus_to_bus_conflict": "error", 341 | "bus_to_net_conflict": "error", 342 | "different_unit_footprint": "error", 343 | "different_unit_net": "error", 344 | "duplicate_reference": "error", 345 | "duplicate_sheet_names": "error", 346 | "extra_units": "error", 347 | "global_label_dangling": "warning", 348 | "hier_label_mismatch": "error", 349 | "label_dangling": "error", 350 | "lib_symbol_issues": "warning", 351 | "multiple_net_names": "warning", 352 | "net_not_bus_member": "warning", 353 | "no_connect_connected": "warning", 354 | "no_connect_dangling": "warning", 355 | "pin_not_connected": "error", 356 | "pin_not_driven": "error", 357 | "pin_to_pin": "warning", 358 | "power_pin_not_driven": "error", 359 | "similar_labels": "warning", 360 | "unannotated": "error", 361 | "unit_value_mismatch": "error", 362 | "unresolved_variable": "error", 363 | "wire_dangling": "error" 364 | } 365 | }, 366 | "libraries": { 367 | "pinned_footprint_libs": [], 368 | "pinned_symbol_libs": [] 369 | }, 370 | "meta": { 371 | "filename": "Dianome.kicad_pro", 372 | "version": 1 373 | }, 374 | "net_settings": { 375 | "classes": [ 376 | { 377 | "bus_width": 12.0, 378 | "clearance": 0.2, 379 | "diff_pair_gap": 0.25, 380 | "diff_pair_via_gap": 0.25, 381 | "diff_pair_width": 0.2, 382 | "line_style": 0, 383 | "microvia_diameter": 0.3, 384 | "microvia_drill": 0.1, 385 | "name": "Default", 386 | "pcb_color": "rgba(0, 0, 0, 0.000)", 387 | "schematic_color": "rgba(0, 0, 0, 0.000)", 388 | "track_width": 0.25, 389 | "via_diameter": 0.8, 390 | "via_drill": 0.4, 391 | "wire_width": 6.0 392 | } 393 | ], 394 | "meta": { 395 | "version": 2 396 | }, 397 | "net_colors": null 398 | }, 399 | "pcbnew": { 400 | "last_paths": { 401 | "gencad": "", 402 | "idf": "", 403 | "netlist": "", 404 | "specctra_dsn": "", 405 | "step": "Dianome.step", 406 | "vrml": "" 407 | }, 408 | "page_layout_descr_file": "" 409 | }, 410 | "schematic": { 411 | "annotate_start_num": 0, 412 | "drawing": { 413 | "default_line_thickness": 6.0, 414 | "default_text_size": 50.0, 415 | "field_names": [], 416 | "intersheets_ref_own_page": false, 417 | "intersheets_ref_prefix": "", 418 | "intersheets_ref_short": false, 419 | "intersheets_ref_show": false, 420 | "intersheets_ref_suffix": "", 421 | "junction_size_choice": 3, 422 | "label_size_ratio": 0.375, 423 | "pin_symbol_size": 25.0, 424 | "text_offset_ratio": 0.15 425 | }, 426 | "legacy_lib_dir": "", 427 | "legacy_lib_list": [], 428 | "meta": { 429 | "version": 1 430 | }, 431 | "net_format_name": "", 432 | "ngspice": { 433 | "fix_include_paths": true, 434 | "fix_passive_vals": false, 435 | "meta": { 436 | "version": 0 437 | }, 438 | "model_mode": 0, 439 | "workbook_filename": "" 440 | }, 441 | "page_layout_descr_file": "", 442 | "plot_directory": "", 443 | "spice_adjust_passive_values": false, 444 | "spice_external_command": "spice \"%I\"", 445 | "subpart_first_id": 65, 446 | "subpart_id_separator": 0 447 | }, 448 | "sheets": [ 449 | [ 450 | "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", 451 | "" 452 | ] 453 | ], 454 | "text_variables": {} 455 | } 456 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence Version 2 - Weakly Reciprocal 2 | 3 | 4 | Preamble 5 | 6 | CERN has developed this licence to promote collaboration among 7 | hardware designers and to provide a legal tool which supports the 8 | freedom to use, study, modify, share and distribute hardware designs 9 | and products based on those designs. Version 2 of the CERN Open 10 | Hardware Licence comes in three variants: CERN-OHL-P (permissive); and 11 | two reciprocal licences: this licence, CERN-OHL-W (weakly reciprocal) 12 | and CERN-OHL-S (strongly reciprocal). 13 | 14 | The CERN-OHL-W is copyright CERN 2020. Anyone is welcome to use it, in 15 | unmodified form only. 16 | 17 | Use of this Licence does not imply any endorsement by CERN of any 18 | Licensor or their designs nor does it imply any involvement by CERN in 19 | their development. 20 | 21 | 22 | 1 Definitions 23 | 24 | 1.1 'Licence' means this CERN-OHL-W. 25 | 26 | 1.2 'Compatible Licence' means 27 | 28 | a) any earlier version of the CERN Open Hardware licence, or 29 | 30 | b) any version of the CERN-OHL-S or the CERN-OHL-W, or 31 | 32 | c) any licence which permits You to treat the Source to which 33 | it applies as licensed under CERN-OHL-S or CERN-OHL-W 34 | provided that on Conveyance of any such Source, or any 35 | associated Product You treat the Source in question as being 36 | licensed under CERN-OHL-S or CERN-OHL-W as appropriate. 37 | 38 | 1.3 'Source' means information such as design materials or digital 39 | code which can be applied to Make or test a Product or to 40 | prepare a Product for use, Conveyance or sale, regardless of its 41 | medium or how it is expressed. It may include Notices. 42 | 43 | 1.4 'Covered Source' means Source that is explicitly made available 44 | under this Licence. 45 | 46 | 1.5 'Product' means any device, component, work or physical object, 47 | whether in finished or intermediate form, arising from the use, 48 | application or processing of Covered Source. 49 | 50 | 1.6 'Make' means to create or configure something, whether by 51 | manufacture, assembly, compiling, loading or applying Covered 52 | Source or another Product or otherwise. 53 | 54 | 1.7 'Available Component' means any part, sub-assembly, library or 55 | code which: 56 | 57 | a) is licensed to You as Complete Source under a Compatible 58 | Licence; or 59 | 60 | b) is available, at the time a Product or the Source containing 61 | it is first Conveyed, to You and any other prospective 62 | licensees 63 | 64 | i) with sufficient rights and information (including any 65 | configuration and programming files and information 66 | about its characteristics and interfaces) to enable it 67 | either to be Made itself, or to be sourced and used to 68 | Make the Product; or 69 | ii) as part of the normal distribution of a tool used to 70 | design or Make the Product. 71 | 72 | 1.8 'External Material' means anything (including Source) which: 73 | 74 | a) is only combined with Covered Source in such a way that it 75 | interfaces with the Covered Source using a documented 76 | interface which is described in the Covered Source; and 77 | 78 | b) is not a derivative of or contains Covered Source, or, if it 79 | is, it is solely to the extent necessary to facilitate such 80 | interfacing. 81 | 82 | 1.9 'Complete Source' means the set of all Source necessary to Make 83 | a Product, in the preferred form for making modifications, 84 | including necessary installation and interfacing information 85 | both for the Product, and for any included Available Components. 86 | If the format is proprietary, it must also be made available in 87 | a format (if the proprietary tool can create it) which is 88 | viewable with a tool available to potential licensees and 89 | licensed under a licence approved by the Free Software 90 | Foundation or the Open Source Initiative. Complete Source need 91 | not include the Source of any Available Component, provided that 92 | You include in the Complete Source sufficient information to 93 | enable a recipient to Make or source and use the Available 94 | Component to Make the Product. 95 | 96 | 1.10 'Source Location' means a location where a Licensor has placed 97 | Covered Source, and which that Licensor reasonably believes will 98 | remain easily accessible for at least three years for anyone to 99 | obtain a digital copy. 100 | 101 | 1.11 'Notice' means copyright, acknowledgement and trademark notices, 102 | Source Location references, modification notices (subsection 103 | 3.3(b)) and all notices that refer to this Licence and to the 104 | disclaimer of warranties that are included in the Covered 105 | Source. 106 | 107 | 1.12 'Licensee' or 'You' means any person exercising rights under 108 | this Licence. 109 | 110 | 1.13 'Licensor' means a natural or legal person who creates or 111 | modifies Covered Source. A person may be a Licensee and a 112 | Licensor at the same time. 113 | 114 | 1.14 'Convey' means to communicate to the public or distribute. 115 | 116 | 117 | 2 Applicability 118 | 119 | 2.1 This Licence governs the use, copying, modification, Conveying 120 | of Covered Source and Products, and the Making of Products. By 121 | exercising any right granted under this Licence, You irrevocably 122 | accept these terms and conditions. 123 | 124 | 2.2 This Licence is granted by the Licensor directly to You, and 125 | shall apply worldwide and without limitation in time. 126 | 127 | 2.3 You shall not attempt to restrict by contract or otherwise the 128 | rights granted under this Licence to other Licensees. 129 | 130 | 2.4 This Licence is not intended to restrict fair use, fair dealing, 131 | or any other similar right. 132 | 133 | 134 | 3 Copying, Modifying and Conveying Covered Source 135 | 136 | 3.1 You may copy and Convey verbatim copies of Covered Source, in 137 | any medium, provided You retain all Notices. 138 | 139 | 3.2 You may modify Covered Source, other than Notices, provided that 140 | You irrevocably undertake to make that modified Covered Source 141 | available from a Source Location should You Convey a Product in 142 | circumstances where the recipient does not otherwise receive a 143 | copy of the modified Covered Source. In each case subsection 3.3 144 | shall apply. 145 | 146 | You may only delete Notices if they are no longer applicable to 147 | the corresponding Covered Source as modified by You and You may 148 | add additional Notices applicable to Your modifications. 149 | 150 | 3.3 You may Convey modified Covered Source (with the effect that You 151 | shall also become a Licensor) provided that You: 152 | 153 | a) retain Notices as required in subsection 3.2; 154 | 155 | b) add a Notice to the modified Covered Source stating that You 156 | have modified it, with the date and brief description of how 157 | You have modified it; 158 | 159 | c) add a Source Location Notice for the modified Covered Source 160 | if You Convey in circumstances where the recipient does not 161 | otherwise receive a copy of the modified Covered Source; and 162 | 163 | d) license the modified Covered Source under the terms and 164 | conditions of this Licence (or, as set out in subsection 165 | 8.3, a later version, if permitted by the licence of the 166 | original Covered Source). Such modified Covered Source must 167 | be licensed as a whole, but excluding Available Components 168 | contained in it or External Material to which it is 169 | interfaced, which remain licensed under their own applicable 170 | licences. 171 | 172 | 173 | 4 Making and Conveying Products 174 | 175 | 4.1 You may Make Products, and/or Convey them, provided that You 176 | either provide each recipient with a copy of the Complete Source 177 | or ensure that each recipient is notified of the Source Location 178 | of the Complete Source. That Complete Source includes Covered 179 | Source and You must accordingly satisfy Your obligations set out 180 | in subsection 3.3. If specified in a Notice, the Product must 181 | visibly and securely display the Source Location on it or its 182 | packaging or documentation in the manner specified in that 183 | Notice. 184 | 185 | 4.2 Where You Convey a Product which incorporates External Material, 186 | the Complete Source for that Product which You are required to 187 | provide under subsection 4.1 need not include any Source for the 188 | External Material. 189 | 190 | 4.3 You may license Products under terms of Your choice, provided 191 | that such terms do not restrict or attempt to restrict any 192 | recipients' rights under this Licence to the Covered Source. 193 | 194 | 195 | 5 Research and Development 196 | 197 | You may Convey Covered Source, modified Covered Source or Products to 198 | a legal entity carrying out development, testing or quality assurance 199 | work on Your behalf provided that the work is performed on terms which 200 | prevent the entity from both using the Source or Products for its own 201 | internal purposes and Conveying the Source or Products or any 202 | modifications to them to any person other than You. Any modifications 203 | made by the entity shall be deemed to be made by You pursuant to 204 | subsection 3.2. 205 | 206 | 207 | 6 DISCLAIMER AND LIABILITY 208 | 209 | 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products 210 | are provided 'as is' and any express or implied warranties, 211 | including, but not limited to, implied warranties of 212 | merchantability, of satisfactory quality, non-infringement of 213 | third party rights, and fitness for a particular purpose or use 214 | are disclaimed in respect of any Source or Product to the 215 | maximum extent permitted by law. The Licensor makes no 216 | representation that any Source or Product does not or will not 217 | infringe any patent, copyright, trade secret or other 218 | proprietary right. The entire risk as to the use, quality, and 219 | performance of any Source or Product shall be with You and not 220 | the Licensor. This disclaimer of warranty is an essential part 221 | of this Licence and a condition for the grant of any rights 222 | granted under this Licence. 223 | 224 | 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to 225 | the maximum extent permitted by law, have no liability for 226 | direct, indirect, special, incidental, consequential, exemplary, 227 | punitive or other damages of any character including, without 228 | limitation, procurement of substitute goods or services, loss of 229 | use, data or profits, or business interruption, however caused 230 | and on any theory of contract, warranty, tort (including 231 | negligence), product liability or otherwise, arising in any way 232 | in relation to the Covered Source, modified Covered Source 233 | and/or the Making or Conveyance of a Product, even if advised of 234 | the possibility of such damages, and You shall hold the 235 | Licensor(s) free and harmless from any liability, costs, 236 | damages, fees and expenses, including claims by third parties, 237 | in relation to such use. 238 | 239 | 240 | 7 Patents 241 | 242 | 7.1 Subject to the terms and conditions of this Licence, each 243 | Licensor hereby grants to You a perpetual, worldwide, 244 | non-exclusive, no-charge, royalty-free, irrevocable (except as 245 | stated in subsections 7.2 and 8.4) patent licence to Make, have 246 | Made, use, offer to sell, sell, import, and otherwise transfer 247 | the Covered Source and Products, where such licence applies only 248 | to those patent claims licensable by such Licensor that are 249 | necessarily infringed by exercising rights under the Covered 250 | Source as Conveyed by that Licensor. 251 | 252 | 7.2 If You institute patent litigation against any entity (including 253 | a cross-claim or counterclaim in a lawsuit) alleging that the 254 | Covered Source or a Product constitutes direct or contributory 255 | patent infringement, or You seek any declaration that a patent 256 | licensed to You under this Licence is invalid or unenforceable 257 | then any rights granted to You under this Licence shall 258 | terminate as of the date such process is initiated. 259 | 260 | 261 | 8 General 262 | 263 | 8.1 If any provisions of this Licence are or subsequently become 264 | invalid or unenforceable for any reason, the remaining 265 | provisions shall remain effective. 266 | 267 | 8.2 You shall not use any of the name (including acronyms and 268 | abbreviations), image, or logo by which the Licensor or CERN is 269 | known, except where needed to comply with section 3, or where 270 | the use is otherwise allowed by law. Any such permitted use 271 | shall be factual and shall not be made so as to suggest any kind 272 | of endorsement or implication of involvement by the Licensor or 273 | its personnel. 274 | 275 | 8.3 CERN may publish updated versions and variants of this Licence 276 | which it considers to be in the spirit of this version, but may 277 | differ in detail to address new problems or concerns. New 278 | versions will be published with a unique version number and a 279 | variant identifier specifying the variant. If the Licensor has 280 | specified that a given variant applies to the Covered Source 281 | without specifying a version, You may treat that Covered Source 282 | as being released under any version of the CERN-OHL with that 283 | variant. If no variant is specified, the Covered Source shall be 284 | treated as being released under CERN-OHL-S. The Licensor may 285 | also specify that the Covered Source is subject to a specific 286 | version of the CERN-OHL or any later version in which case You 287 | may apply this or any later version of CERN-OHL with the same 288 | variant identifier published by CERN. 289 | 290 | You may treat Covered Source licensed under CERN-OHL-W as 291 | licensed under CERN-OHL-S if and only if all Available 292 | Components referenced in the Covered Source comply with the 293 | corresponding definition of Available Component for CERN-OHL-S. 294 | 295 | 8.4 This Licence shall terminate with immediate effect if You fail 296 | to comply with any of its terms and conditions. 297 | 298 | 8.5 However, if You cease all breaches of this Licence, then Your 299 | Licence from any Licensor is reinstated unless such Licensor has 300 | terminated this Licence by giving You, while You remain in 301 | breach, a notice specifying the breach and requiring You to cure 302 | it within 30 days, and You have failed to come into compliance 303 | in all material respects by the end of the 30 day period. Should 304 | You repeat the breach after receipt of a cure notice and 305 | subsequent reinstatement, this Licence will terminate 306 | immediately and permanently. Section 6 shall continue to apply 307 | after any termination. 308 | 309 | 8.6 This Licence shall not be enforceable except by a Licensor 310 | acting as such, and third party beneficiary rights are 311 | specifically excluded. 312 | -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- 1 | CERN Open Hardware Licence Version 2 - Weakly Reciprocal 2 | 3 | 4 | Preamble 5 | 6 | CERN has developed this licence to promote collaboration among 7 | hardware designers and to provide a legal tool which supports the 8 | freedom to use, study, modify, share and distribute hardware designs 9 | and products based on those designs. Version 2 of the CERN Open 10 | Hardware Licence comes in three variants: CERN-OHL-P (permissive); and 11 | two reciprocal licences: this licence, CERN-OHL-W (weakly reciprocal) 12 | and CERN-OHL-S (strongly reciprocal). 13 | 14 | The CERN-OHL-W is copyright CERN 2020. Anyone is welcome to use it, in 15 | unmodified form only. 16 | 17 | Use of this Licence does not imply any endorsement by CERN of any 18 | Licensor or their designs nor does it imply any involvement by CERN in 19 | their development. 20 | 21 | 22 | 1 Definitions 23 | 24 | 1.1 'Licence' means this CERN-OHL-W. 25 | 26 | 1.2 'Compatible Licence' means 27 | 28 | a) any earlier version of the CERN Open Hardware licence, or 29 | 30 | b) any version of the CERN-OHL-S or the CERN-OHL-W, or 31 | 32 | c) any licence which permits You to treat the Source to which 33 | it applies as licensed under CERN-OHL-S or CERN-OHL-W 34 | provided that on Conveyance of any such Source, or any 35 | associated Product You treat the Source in question as being 36 | licensed under CERN-OHL-S or CERN-OHL-W as appropriate. 37 | 38 | 1.3 'Source' means information such as design materials or digital 39 | code which can be applied to Make or test a Product or to 40 | prepare a Product for use, Conveyance or sale, regardless of its 41 | medium or how it is expressed. It may include Notices. 42 | 43 | 1.4 'Covered Source' means Source that is explicitly made available 44 | under this Licence. 45 | 46 | 1.5 'Product' means any device, component, work or physical object, 47 | whether in finished or intermediate form, arising from the use, 48 | application or processing of Covered Source. 49 | 50 | 1.6 'Make' means to create or configure something, whether by 51 | manufacture, assembly, compiling, loading or applying Covered 52 | Source or another Product or otherwise. 53 | 54 | 1.7 'Available Component' means any part, sub-assembly, library or 55 | code which: 56 | 57 | a) is licensed to You as Complete Source under a Compatible 58 | Licence; or 59 | 60 | b) is available, at the time a Product or the Source containing 61 | it is first Conveyed, to You and any other prospective 62 | licensees 63 | 64 | i) with sufficient rights and information (including any 65 | configuration and programming files and information 66 | about its characteristics and interfaces) to enable it 67 | either to be Made itself, or to be sourced and used to 68 | Make the Product; or 69 | ii) as part of the normal distribution of a tool used to 70 | design or Make the Product. 71 | 72 | 1.8 'External Material' means anything (including Source) which: 73 | 74 | a) is only combined with Covered Source in such a way that it 75 | interfaces with the Covered Source using a documented 76 | interface which is described in the Covered Source; and 77 | 78 | b) is not a derivative of or contains Covered Source, or, if it 79 | is, it is solely to the extent necessary to facilitate such 80 | interfacing. 81 | 82 | 1.9 'Complete Source' means the set of all Source necessary to Make 83 | a Product, in the preferred form for making modifications, 84 | including necessary installation and interfacing information 85 | both for the Product, and for any included Available Components. 86 | If the format is proprietary, it must also be made available in 87 | a format (if the proprietary tool can create it) which is 88 | viewable with a tool available to potential licensees and 89 | licensed under a licence approved by the Free Software 90 | Foundation or the Open Source Initiative. Complete Source need 91 | not include the Source of any Available Component, provided that 92 | You include in the Complete Source sufficient information to 93 | enable a recipient to Make or source and use the Available 94 | Component to Make the Product. 95 | 96 | 1.10 'Source Location' means a location where a Licensor has placed 97 | Covered Source, and which that Licensor reasonably believes will 98 | remain easily accessible for at least three years for anyone to 99 | obtain a digital copy. 100 | 101 | 1.11 'Notice' means copyright, acknowledgement and trademark notices, 102 | Source Location references, modification notices (subsection 103 | 3.3(b)) and all notices that refer to this Licence and to the 104 | disclaimer of warranties that are included in the Covered 105 | Source. 106 | 107 | 1.12 'Licensee' or 'You' means any person exercising rights under 108 | this Licence. 109 | 110 | 1.13 'Licensor' means a natural or legal person who creates or 111 | modifies Covered Source. A person may be a Licensee and a 112 | Licensor at the same time. 113 | 114 | 1.14 'Convey' means to communicate to the public or distribute. 115 | 116 | 117 | 2 Applicability 118 | 119 | 2.1 This Licence governs the use, copying, modification, Conveying 120 | of Covered Source and Products, and the Making of Products. By 121 | exercising any right granted under this Licence, You irrevocably 122 | accept these terms and conditions. 123 | 124 | 2.2 This Licence is granted by the Licensor directly to You, and 125 | shall apply worldwide and without limitation in time. 126 | 127 | 2.3 You shall not attempt to restrict by contract or otherwise the 128 | rights granted under this Licence to other Licensees. 129 | 130 | 2.4 This Licence is not intended to restrict fair use, fair dealing, 131 | or any other similar right. 132 | 133 | 134 | 3 Copying, Modifying and Conveying Covered Source 135 | 136 | 3.1 You may copy and Convey verbatim copies of Covered Source, in 137 | any medium, provided You retain all Notices. 138 | 139 | 3.2 You may modify Covered Source, other than Notices, provided that 140 | You irrevocably undertake to make that modified Covered Source 141 | available from a Source Location should You Convey a Product in 142 | circumstances where the recipient does not otherwise receive a 143 | copy of the modified Covered Source. In each case subsection 3.3 144 | shall apply. 145 | 146 | You may only delete Notices if they are no longer applicable to 147 | the corresponding Covered Source as modified by You and You may 148 | add additional Notices applicable to Your modifications. 149 | 150 | 3.3 You may Convey modified Covered Source (with the effect that You 151 | shall also become a Licensor) provided that You: 152 | 153 | a) retain Notices as required in subsection 3.2; 154 | 155 | b) add a Notice to the modified Covered Source stating that You 156 | have modified it, with the date and brief description of how 157 | You have modified it; 158 | 159 | c) add a Source Location Notice for the modified Covered Source 160 | if You Convey in circumstances where the recipient does not 161 | otherwise receive a copy of the modified Covered Source; and 162 | 163 | d) license the modified Covered Source under the terms and 164 | conditions of this Licence (or, as set out in subsection 165 | 8.3, a later version, if permitted by the licence of the 166 | original Covered Source). Such modified Covered Source must 167 | be licensed as a whole, but excluding Available Components 168 | contained in it or External Material to which it is 169 | interfaced, which remain licensed under their own applicable 170 | licences. 171 | 172 | 173 | 4 Making and Conveying Products 174 | 175 | 4.1 You may Make Products, and/or Convey them, provided that You 176 | either provide each recipient with a copy of the Complete Source 177 | or ensure that each recipient is notified of the Source Location 178 | of the Complete Source. That Complete Source includes Covered 179 | Source and You must accordingly satisfy Your obligations set out 180 | in subsection 3.3. If specified in a Notice, the Product must 181 | visibly and securely display the Source Location on it or its 182 | packaging or documentation in the manner specified in that 183 | Notice. 184 | 185 | 4.2 Where You Convey a Product which incorporates External Material, 186 | the Complete Source for that Product which You are required to 187 | provide under subsection 4.1 need not include any Source for the 188 | External Material. 189 | 190 | 4.3 You may license Products under terms of Your choice, provided 191 | that such terms do not restrict or attempt to restrict any 192 | recipients' rights under this Licence to the Covered Source. 193 | 194 | 195 | 5 Research and Development 196 | 197 | You may Convey Covered Source, modified Covered Source or Products to 198 | a legal entity carrying out development, testing or quality assurance 199 | work on Your behalf provided that the work is performed on terms which 200 | prevent the entity from both using the Source or Products for its own 201 | internal purposes and Conveying the Source or Products or any 202 | modifications to them to any person other than You. Any modifications 203 | made by the entity shall be deemed to be made by You pursuant to 204 | subsection 3.2. 205 | 206 | 207 | 6 DISCLAIMER AND LIABILITY 208 | 209 | 6.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products 210 | are provided 'as is' and any express or implied warranties, 211 | including, but not limited to, implied warranties of 212 | merchantability, of satisfactory quality, non-infringement of 213 | third party rights, and fitness for a particular purpose or use 214 | are disclaimed in respect of any Source or Product to the 215 | maximum extent permitted by law. The Licensor makes no 216 | representation that any Source or Product does not or will not 217 | infringe any patent, copyright, trade secret or other 218 | proprietary right. The entire risk as to the use, quality, and 219 | performance of any Source or Product shall be with You and not 220 | the Licensor. This disclaimer of warranty is an essential part 221 | of this Licence and a condition for the grant of any rights 222 | granted under this Licence. 223 | 224 | 6.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to 225 | the maximum extent permitted by law, have no liability for 226 | direct, indirect, special, incidental, consequential, exemplary, 227 | punitive or other damages of any character including, without 228 | limitation, procurement of substitute goods or services, loss of 229 | use, data or profits, or business interruption, however caused 230 | and on any theory of contract, warranty, tort (including 231 | negligence), product liability or otherwise, arising in any way 232 | in relation to the Covered Source, modified Covered Source 233 | and/or the Making or Conveyance of a Product, even if advised of 234 | the possibility of such damages, and You shall hold the 235 | Licensor(s) free and harmless from any liability, costs, 236 | damages, fees and expenses, including claims by third parties, 237 | in relation to such use. 238 | 239 | 240 | 7 Patents 241 | 242 | 7.1 Subject to the terms and conditions of this Licence, each 243 | Licensor hereby grants to You a perpetual, worldwide, 244 | non-exclusive, no-charge, royalty-free, irrevocable (except as 245 | stated in subsections 7.2 and 8.4) patent licence to Make, have 246 | Made, use, offer to sell, sell, import, and otherwise transfer 247 | the Covered Source and Products, where such licence applies only 248 | to those patent claims licensable by such Licensor that are 249 | necessarily infringed by exercising rights under the Covered 250 | Source as Conveyed by that Licensor. 251 | 252 | 7.2 If You institute patent litigation against any entity (including 253 | a cross-claim or counterclaim in a lawsuit) alleging that the 254 | Covered Source or a Product constitutes direct or contributory 255 | patent infringement, or You seek any declaration that a patent 256 | licensed to You under this Licence is invalid or unenforceable 257 | then any rights granted to You under this Licence shall 258 | terminate as of the date such process is initiated. 259 | 260 | 261 | 8 General 262 | 263 | 8.1 If any provisions of this Licence are or subsequently become 264 | invalid or unenforceable for any reason, the remaining 265 | provisions shall remain effective. 266 | 267 | 8.2 You shall not use any of the name (including acronyms and 268 | abbreviations), image, or logo by which the Licensor or CERN is 269 | known, except where needed to comply with section 3, or where 270 | the use is otherwise allowed by law. Any such permitted use 271 | shall be factual and shall not be made so as to suggest any kind 272 | of endorsement or implication of involvement by the Licensor or 273 | its personnel. 274 | 275 | 8.3 CERN may publish updated versions and variants of this Licence 276 | which it considers to be in the spirit of this version, but may 277 | differ in detail to address new problems or concerns. New 278 | versions will be published with a unique version number and a 279 | variant identifier specifying the variant. If the Licensor has 280 | specified that a given variant applies to the Covered Source 281 | without specifying a version, You may treat that Covered Source 282 | as being released under any version of the CERN-OHL with that 283 | variant. If no variant is specified, the Covered Source shall be 284 | treated as being released under CERN-OHL-S. The Licensor may 285 | also specify that the Covered Source is subject to a specific 286 | version of the CERN-OHL or any later version in which case You 287 | may apply this or any later version of CERN-OHL with the same 288 | variant identifier published by CERN. 289 | 290 | You may treat Covered Source licensed under CERN-OHL-W as 291 | licensed under CERN-OHL-S if and only if all Available 292 | Components referenced in the Covered Source comply with the 293 | corresponding definition of Available Component for CERN-OHL-S. 294 | 295 | 8.4 This Licence shall terminate with immediate effect if You fail 296 | to comply with any of its terms and conditions. 297 | 298 | 8.5 However, if You cease all breaches of this Licence, then Your 299 | Licence from any Licensor is reinstated unless such Licensor has 300 | terminated this Licence by giving You, while You remain in 301 | breach, a notice specifying the breach and requiring You to cure 302 | it within 30 days, and You have failed to come into compliance 303 | in all material respects by the end of the 30 day period. Should 304 | You repeat the breach after receipt of a cure notice and 305 | subsequent reinstatement, this Licence will terminate 306 | immediately and permanently. Section 6 shall continue to apply 307 | after any termination. 308 | 309 | 8.6 This Licence shall not be enforceable except by a Licensor 310 | acting as such, and third party beneficiary rights are 311 | specifically excluded. 312 | -------------------------------------------------------------------------------- /KiCAD/Dianome.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) 4 | 5 | (paper "A4") 6 | 7 | (title_block 8 | (title "Dianome Power Distribution Board") 9 | (date "2022-12-20") 10 | (rev "R2") 11 | (company "Tinymovr") 12 | ) 13 | 14 | (lib_symbols 15 | (symbol "Connector:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 16 | (property "Reference" "J" (id 0) (at 0 2.54 0) 17 | (effects (font (size 1.27 1.27))) 18 | ) 19 | (property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 0) 20 | (effects (font (size 1.27 1.27))) 21 | ) 22 | (property "Footprint" "" (id 2) (at 0 0 0) 23 | (effects (font (size 1.27 1.27)) hide) 24 | ) 25 | (property "Datasheet" "~" (id 3) (at 0 0 0) 26 | (effects (font (size 1.27 1.27)) hide) 27 | ) 28 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 29 | (effects (font (size 1.27 1.27)) hide) 30 | ) 31 | (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 32 | (effects (font (size 1.27 1.27)) hide) 33 | ) 34 | (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) 35 | (effects (font (size 1.27 1.27)) hide) 36 | ) 37 | (symbol "Conn_01x02_Male_1_1" 38 | (polyline 39 | (pts 40 | (xy 1.27 -2.54) 41 | (xy 0.8636 -2.54) 42 | ) 43 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 44 | (fill (type none)) 45 | ) 46 | (polyline 47 | (pts 48 | (xy 1.27 0) 49 | (xy 0.8636 0) 50 | ) 51 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 52 | (fill (type none)) 53 | ) 54 | (rectangle (start 0.8636 -2.413) (end 0 -2.667) 55 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 56 | (fill (type outline)) 57 | ) 58 | (rectangle (start 0.8636 0.127) (end 0 -0.127) 59 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 60 | (fill (type outline)) 61 | ) 62 | (pin passive line (at 5.08 0 180) (length 3.81) 63 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 64 | (number "1" (effects (font (size 1.27 1.27)))) 65 | ) 66 | (pin passive line (at 5.08 -2.54 180) (length 3.81) 67 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 68 | (number "2" (effects (font (size 1.27 1.27)))) 69 | ) 70 | ) 71 | ) 72 | (symbol "Connector:Screw_Terminal_01x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 73 | (property "Reference" "J" (id 0) (at 0 2.54 0) 74 | (effects (font (size 1.27 1.27))) 75 | ) 76 | (property "Value" "Screw_Terminal_01x01" (id 1) (at 0 -2.54 0) 77 | (effects (font (size 1.27 1.27))) 78 | ) 79 | (property "Footprint" "" (id 2) (at 0 0 0) 80 | (effects (font (size 1.27 1.27)) hide) 81 | ) 82 | (property "Datasheet" "~" (id 3) (at 0 0 0) 83 | (effects (font (size 1.27 1.27)) hide) 84 | ) 85 | (property "ki_keywords" "screw terminal" (id 4) (at 0 0 0) 86 | (effects (font (size 1.27 1.27)) hide) 87 | ) 88 | (property "ki_description" "Generic screw terminal, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 89 | (effects (font (size 1.27 1.27)) hide) 90 | ) 91 | (property "ki_fp_filters" "TerminalBlock*:*" (id 6) (at 0 0 0) 92 | (effects (font (size 1.27 1.27)) hide) 93 | ) 94 | (symbol "Screw_Terminal_01x01_1_1" 95 | (rectangle (start -1.27 1.27) (end 1.27 -1.27) 96 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 97 | (fill (type background)) 98 | ) 99 | (polyline 100 | (pts 101 | (xy -0.5334 0.3302) 102 | (xy 0.3302 -0.508) 103 | ) 104 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 105 | (fill (type none)) 106 | ) 107 | (polyline 108 | (pts 109 | (xy -0.3556 0.508) 110 | (xy 0.508 -0.3302) 111 | ) 112 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 113 | (fill (type none)) 114 | ) 115 | (circle (center 0 0) (radius 0.635) 116 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 117 | (fill (type none)) 118 | ) 119 | (pin passive line (at -5.08 0 0) (length 3.81) 120 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 121 | (number "1" (effects (font (size 1.27 1.27)))) 122 | ) 123 | ) 124 | ) 125 | (symbol "Connector:Screw_Terminal_01x06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 126 | (property "Reference" "J" (id 0) (at 0 7.62 0) 127 | (effects (font (size 1.27 1.27))) 128 | ) 129 | (property "Value" "Screw_Terminal_01x06" (id 1) (at 0 -10.16 0) 130 | (effects (font (size 1.27 1.27))) 131 | ) 132 | (property "Footprint" "" (id 2) (at 0 0 0) 133 | (effects (font (size 1.27 1.27)) hide) 134 | ) 135 | (property "Datasheet" "~" (id 3) (at 0 0 0) 136 | (effects (font (size 1.27 1.27)) hide) 137 | ) 138 | (property "ki_keywords" "screw terminal" (id 4) (at 0 0 0) 139 | (effects (font (size 1.27 1.27)) hide) 140 | ) 141 | (property "ki_description" "Generic screw terminal, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 142 | (effects (font (size 1.27 1.27)) hide) 143 | ) 144 | (property "ki_fp_filters" "TerminalBlock*:*" (id 6) (at 0 0 0) 145 | (effects (font (size 1.27 1.27)) hide) 146 | ) 147 | (symbol "Screw_Terminal_01x06_1_1" 148 | (rectangle (start -1.27 6.35) (end 1.27 -8.89) 149 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 150 | (fill (type background)) 151 | ) 152 | (circle (center 0 -7.62) (radius 0.635) 153 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 154 | (fill (type none)) 155 | ) 156 | (circle (center 0 -5.08) (radius 0.635) 157 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 158 | (fill (type none)) 159 | ) 160 | (circle (center 0 -2.54) (radius 0.635) 161 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 162 | (fill (type none)) 163 | ) 164 | (polyline 165 | (pts 166 | (xy -0.5334 -7.2898) 167 | (xy 0.3302 -8.128) 168 | ) 169 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 170 | (fill (type none)) 171 | ) 172 | (polyline 173 | (pts 174 | (xy -0.5334 -4.7498) 175 | (xy 0.3302 -5.588) 176 | ) 177 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 178 | (fill (type none)) 179 | ) 180 | (polyline 181 | (pts 182 | (xy -0.5334 -2.2098) 183 | (xy 0.3302 -3.048) 184 | ) 185 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 186 | (fill (type none)) 187 | ) 188 | (polyline 189 | (pts 190 | (xy -0.5334 0.3302) 191 | (xy 0.3302 -0.508) 192 | ) 193 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 194 | (fill (type none)) 195 | ) 196 | (polyline 197 | (pts 198 | (xy -0.5334 2.8702) 199 | (xy 0.3302 2.032) 200 | ) 201 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 202 | (fill (type none)) 203 | ) 204 | (polyline 205 | (pts 206 | (xy -0.5334 5.4102) 207 | (xy 0.3302 4.572) 208 | ) 209 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 210 | (fill (type none)) 211 | ) 212 | (polyline 213 | (pts 214 | (xy -0.3556 -7.112) 215 | (xy 0.508 -7.9502) 216 | ) 217 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 218 | (fill (type none)) 219 | ) 220 | (polyline 221 | (pts 222 | (xy -0.3556 -4.572) 223 | (xy 0.508 -5.4102) 224 | ) 225 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 226 | (fill (type none)) 227 | ) 228 | (polyline 229 | (pts 230 | (xy -0.3556 -2.032) 231 | (xy 0.508 -2.8702) 232 | ) 233 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 234 | (fill (type none)) 235 | ) 236 | (polyline 237 | (pts 238 | (xy -0.3556 0.508) 239 | (xy 0.508 -0.3302) 240 | ) 241 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 242 | (fill (type none)) 243 | ) 244 | (polyline 245 | (pts 246 | (xy -0.3556 3.048) 247 | (xy 0.508 2.2098) 248 | ) 249 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 250 | (fill (type none)) 251 | ) 252 | (polyline 253 | (pts 254 | (xy -0.3556 5.588) 255 | (xy 0.508 4.7498) 256 | ) 257 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 258 | (fill (type none)) 259 | ) 260 | (circle (center 0 0) (radius 0.635) 261 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 262 | (fill (type none)) 263 | ) 264 | (circle (center 0 2.54) (radius 0.635) 265 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 266 | (fill (type none)) 267 | ) 268 | (circle (center 0 5.08) (radius 0.635) 269 | (stroke (width 0.1524) (type default) (color 0 0 0 0)) 270 | (fill (type none)) 271 | ) 272 | (pin passive line (at -5.08 5.08 0) (length 3.81) 273 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 274 | (number "1" (effects (font (size 1.27 1.27)))) 275 | ) 276 | (pin passive line (at -5.08 2.54 0) (length 3.81) 277 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 278 | (number "2" (effects (font (size 1.27 1.27)))) 279 | ) 280 | (pin passive line (at -5.08 0 0) (length 3.81) 281 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 282 | (number "3" (effects (font (size 1.27 1.27)))) 283 | ) 284 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 285 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 286 | (number "4" (effects (font (size 1.27 1.27)))) 287 | ) 288 | (pin passive line (at -5.08 -5.08 0) (length 3.81) 289 | (name "Pin_5" (effects (font (size 1.27 1.27)))) 290 | (number "5" (effects (font (size 1.27 1.27)))) 291 | ) 292 | (pin passive line (at -5.08 -7.62 0) (length 3.81) 293 | (name "Pin_6" (effects (font (size 1.27 1.27)))) 294 | (number "6" (effects (font (size 1.27 1.27)))) 295 | ) 296 | ) 297 | ) 298 | (symbol "Connector:USB_C_Receptacle_USB2.0" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 299 | (property "Reference" "J" (id 0) (at -10.16 19.05 0) 300 | (effects (font (size 1.27 1.27)) (justify left)) 301 | ) 302 | (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 19.05 19.05 0) 303 | (effects (font (size 1.27 1.27)) (justify right)) 304 | ) 305 | (property "Footprint" "" (id 2) (at 3.81 0 0) 306 | (effects (font (size 1.27 1.27)) hide) 307 | ) 308 | (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 3.81 0 0) 309 | (effects (font (size 1.27 1.27)) hide) 310 | ) 311 | (property "ki_keywords" "usb universal serial bus type-C USB2.0" (id 4) (at 0 0 0) 312 | (effects (font (size 1.27 1.27)) hide) 313 | ) 314 | (property "ki_description" "USB 2.0-only Type-C Receptacle connector" (id 5) (at 0 0 0) 315 | (effects (font (size 1.27 1.27)) hide) 316 | ) 317 | (property "ki_fp_filters" "USB*C*Receptacle*" (id 6) (at 0 0 0) 318 | (effects (font (size 1.27 1.27)) hide) 319 | ) 320 | (symbol "USB_C_Receptacle_USB2.0_0_0" 321 | (rectangle (start -0.254 -17.78) (end 0.254 -16.764) 322 | (stroke (width 0) (type default) (color 0 0 0 0)) 323 | (fill (type none)) 324 | ) 325 | (rectangle (start 10.16 -14.986) (end 9.144 -15.494) 326 | (stroke (width 0) (type default) (color 0 0 0 0)) 327 | (fill (type none)) 328 | ) 329 | (rectangle (start 10.16 -12.446) (end 9.144 -12.954) 330 | (stroke (width 0) (type default) (color 0 0 0 0)) 331 | (fill (type none)) 332 | ) 333 | (rectangle (start 10.16 -4.826) (end 9.144 -5.334) 334 | (stroke (width 0) (type default) (color 0 0 0 0)) 335 | (fill (type none)) 336 | ) 337 | (rectangle (start 10.16 -2.286) (end 9.144 -2.794) 338 | (stroke (width 0) (type default) (color 0 0 0 0)) 339 | (fill (type none)) 340 | ) 341 | (rectangle (start 10.16 0.254) (end 9.144 -0.254) 342 | (stroke (width 0) (type default) (color 0 0 0 0)) 343 | (fill (type none)) 344 | ) 345 | (rectangle (start 10.16 2.794) (end 9.144 2.286) 346 | (stroke (width 0) (type default) (color 0 0 0 0)) 347 | (fill (type none)) 348 | ) 349 | (rectangle (start 10.16 7.874) (end 9.144 7.366) 350 | (stroke (width 0) (type default) (color 0 0 0 0)) 351 | (fill (type none)) 352 | ) 353 | (rectangle (start 10.16 10.414) (end 9.144 9.906) 354 | (stroke (width 0) (type default) (color 0 0 0 0)) 355 | (fill (type none)) 356 | ) 357 | (rectangle (start 10.16 15.494) (end 9.144 14.986) 358 | (stroke (width 0) (type default) (color 0 0 0 0)) 359 | (fill (type none)) 360 | ) 361 | ) 362 | (symbol "USB_C_Receptacle_USB2.0_0_1" 363 | (rectangle (start -10.16 17.78) (end 10.16 -17.78) 364 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 365 | (fill (type background)) 366 | ) 367 | (arc (start -8.89 -3.81) (mid -6.985 -5.715) (end -5.08 -3.81) 368 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 369 | (fill (type none)) 370 | ) 371 | (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81) 372 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 373 | (fill (type none)) 374 | ) 375 | (arc (start -7.62 -3.81) (mid -6.985 -4.445) (end -6.35 -3.81) 376 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 377 | (fill (type outline)) 378 | ) 379 | (rectangle (start -7.62 -3.81) (end -6.35 3.81) 380 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 381 | (fill (type outline)) 382 | ) 383 | (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81) 384 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 385 | (fill (type none)) 386 | ) 387 | (arc (start -6.35 3.81) (mid -6.985 4.445) (end -7.62 3.81) 388 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 389 | (fill (type outline)) 390 | ) 391 | (arc (start -5.08 3.81) (mid -6.985 5.715) (end -8.89 3.81) 392 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 393 | (fill (type none)) 394 | ) 395 | (circle (center -2.54 1.143) (radius 0.635) 396 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 397 | (fill (type outline)) 398 | ) 399 | (circle (center 0 -5.842) (radius 1.27) 400 | (stroke (width 0) (type default) (color 0 0 0 0)) 401 | (fill (type outline)) 402 | ) 403 | (polyline 404 | (pts 405 | (xy -8.89 -3.81) 406 | (xy -8.89 3.81) 407 | ) 408 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 409 | (fill (type none)) 410 | ) 411 | (polyline 412 | (pts 413 | (xy -5.08 3.81) 414 | (xy -5.08 -3.81) 415 | ) 416 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 417 | (fill (type none)) 418 | ) 419 | (polyline 420 | (pts 421 | (xy 0 -5.842) 422 | (xy 0 4.318) 423 | ) 424 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 425 | (fill (type none)) 426 | ) 427 | (polyline 428 | (pts 429 | (xy 0 -3.302) 430 | (xy -2.54 -0.762) 431 | (xy -2.54 0.508) 432 | ) 433 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 434 | (fill (type none)) 435 | ) 436 | (polyline 437 | (pts 438 | (xy 0 -2.032) 439 | (xy 2.54 0.508) 440 | (xy 2.54 1.778) 441 | ) 442 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 443 | (fill (type none)) 444 | ) 445 | (polyline 446 | (pts 447 | (xy -1.27 4.318) 448 | (xy 0 6.858) 449 | (xy 1.27 4.318) 450 | (xy -1.27 4.318) 451 | ) 452 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 453 | (fill (type outline)) 454 | ) 455 | (rectangle (start 1.905 1.778) (end 3.175 3.048) 456 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 457 | (fill (type outline)) 458 | ) 459 | ) 460 | (symbol "USB_C_Receptacle_USB2.0_1_1" 461 | (pin passive line (at 0 -22.86 90) (length 5.08) 462 | (name "GND" (effects (font (size 1.27 1.27)))) 463 | (number "A1" (effects (font (size 1.27 1.27)))) 464 | ) 465 | (pin passive line (at 0 -22.86 90) (length 5.08) hide 466 | (name "GND" (effects (font (size 1.27 1.27)))) 467 | (number "A12" (effects (font (size 1.27 1.27)))) 468 | ) 469 | (pin passive line (at 15.24 15.24 180) (length 5.08) 470 | (name "VBUS" (effects (font (size 1.27 1.27)))) 471 | (number "A4" (effects (font (size 1.27 1.27)))) 472 | ) 473 | (pin bidirectional line (at 15.24 10.16 180) (length 5.08) 474 | (name "CC1" (effects (font (size 1.27 1.27)))) 475 | (number "A5" (effects (font (size 1.27 1.27)))) 476 | ) 477 | (pin bidirectional line (at 15.24 -2.54 180) (length 5.08) 478 | (name "D+" (effects (font (size 1.27 1.27)))) 479 | (number "A6" (effects (font (size 1.27 1.27)))) 480 | ) 481 | (pin bidirectional line (at 15.24 2.54 180) (length 5.08) 482 | (name "D-" (effects (font (size 1.27 1.27)))) 483 | (number "A7" (effects (font (size 1.27 1.27)))) 484 | ) 485 | (pin bidirectional line (at 15.24 -12.7 180) (length 5.08) 486 | (name "SBU1" (effects (font (size 1.27 1.27)))) 487 | (number "A8" (effects (font (size 1.27 1.27)))) 488 | ) 489 | (pin passive line (at 15.24 15.24 180) (length 5.08) hide 490 | (name "VBUS" (effects (font (size 1.27 1.27)))) 491 | (number "A9" (effects (font (size 1.27 1.27)))) 492 | ) 493 | (pin passive line (at 0 -22.86 90) (length 5.08) hide 494 | (name "GND" (effects (font (size 1.27 1.27)))) 495 | (number "B1" (effects (font (size 1.27 1.27)))) 496 | ) 497 | (pin passive line (at 0 -22.86 90) (length 5.08) hide 498 | (name "GND" (effects (font (size 1.27 1.27)))) 499 | (number "B12" (effects (font (size 1.27 1.27)))) 500 | ) 501 | (pin passive line (at 15.24 15.24 180) (length 5.08) hide 502 | (name "VBUS" (effects (font (size 1.27 1.27)))) 503 | (number "B4" (effects (font (size 1.27 1.27)))) 504 | ) 505 | (pin bidirectional line (at 15.24 7.62 180) (length 5.08) 506 | (name "CC2" (effects (font (size 1.27 1.27)))) 507 | (number "B5" (effects (font (size 1.27 1.27)))) 508 | ) 509 | (pin bidirectional line (at 15.24 -5.08 180) (length 5.08) 510 | (name "D+" (effects (font (size 1.27 1.27)))) 511 | (number "B6" (effects (font (size 1.27 1.27)))) 512 | ) 513 | (pin bidirectional line (at 15.24 0 180) (length 5.08) 514 | (name "D-" (effects (font (size 1.27 1.27)))) 515 | (number "B7" (effects (font (size 1.27 1.27)))) 516 | ) 517 | (pin bidirectional line (at 15.24 -15.24 180) (length 5.08) 518 | (name "SBU2" (effects (font (size 1.27 1.27)))) 519 | (number "B8" (effects (font (size 1.27 1.27)))) 520 | ) 521 | (pin passive line (at 15.24 15.24 180) (length 5.08) hide 522 | (name "VBUS" (effects (font (size 1.27 1.27)))) 523 | (number "B9" (effects (font (size 1.27 1.27)))) 524 | ) 525 | (pin passive line (at -7.62 -22.86 90) (length 5.08) 526 | (name "SHIELD" (effects (font (size 1.27 1.27)))) 527 | (number "S1" (effects (font (size 1.27 1.27)))) 528 | ) 529 | ) 530 | ) 531 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 532 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 533 | (effects (font (size 1.27 1.27)) (justify left)) 534 | ) 535 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 536 | (effects (font (size 1.27 1.27)) (justify left)) 537 | ) 538 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 539 | (effects (font (size 1.27 1.27)) hide) 540 | ) 541 | (property "Datasheet" "~" (id 3) (at 0 0 0) 542 | (effects (font (size 1.27 1.27)) hide) 543 | ) 544 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 545 | (effects (font (size 1.27 1.27)) hide) 546 | ) 547 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 548 | (effects (font (size 1.27 1.27)) hide) 549 | ) 550 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 551 | (effects (font (size 1.27 1.27)) hide) 552 | ) 553 | (symbol "C_0_1" 554 | (polyline 555 | (pts 556 | (xy -2.032 -0.762) 557 | (xy 2.032 -0.762) 558 | ) 559 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 560 | (fill (type none)) 561 | ) 562 | (polyline 563 | (pts 564 | (xy -2.032 0.762) 565 | (xy 2.032 0.762) 566 | ) 567 | (stroke (width 0.508) (type default) (color 0 0 0 0)) 568 | (fill (type none)) 569 | ) 570 | ) 571 | (symbol "C_1_1" 572 | (pin passive line (at 0 3.81 270) (length 2.794) 573 | (name "~" (effects (font (size 1.27 1.27)))) 574 | (number "1" (effects (font (size 1.27 1.27)))) 575 | ) 576 | (pin passive line (at 0 -3.81 90) (length 2.794) 577 | (name "~" (effects (font (size 1.27 1.27)))) 578 | (number "2" (effects (font (size 1.27 1.27)))) 579 | ) 580 | ) 581 | ) 582 | (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 583 | (property "Reference" "L" (id 0) (at -1.27 0 90) 584 | (effects (font (size 1.27 1.27))) 585 | ) 586 | (property "Value" "L" (id 1) (at 1.905 0 90) 587 | (effects (font (size 1.27 1.27))) 588 | ) 589 | (property "Footprint" "" (id 2) (at 0 0 0) 590 | (effects (font (size 1.27 1.27)) hide) 591 | ) 592 | (property "Datasheet" "~" (id 3) (at 0 0 0) 593 | (effects (font (size 1.27 1.27)) hide) 594 | ) 595 | (property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0) 596 | (effects (font (size 1.27 1.27)) hide) 597 | ) 598 | (property "ki_description" "Inductor" (id 5) (at 0 0 0) 599 | (effects (font (size 1.27 1.27)) hide) 600 | ) 601 | (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0) 602 | (effects (font (size 1.27 1.27)) hide) 603 | ) 604 | (symbol "L_0_1" 605 | (arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27) 606 | (stroke (width 0) (type default) (color 0 0 0 0)) 607 | (fill (type none)) 608 | ) 609 | (arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0) 610 | (stroke (width 0) (type default) (color 0 0 0 0)) 611 | (fill (type none)) 612 | ) 613 | (arc (start 0 0) (mid 0.635 0.635) (end 0 1.27) 614 | (stroke (width 0) (type default) (color 0 0 0 0)) 615 | (fill (type none)) 616 | ) 617 | (arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54) 618 | (stroke (width 0) (type default) (color 0 0 0 0)) 619 | (fill (type none)) 620 | ) 621 | ) 622 | (symbol "L_1_1" 623 | (pin passive line (at 0 3.81 270) (length 1.27) 624 | (name "1" (effects (font (size 1.27 1.27)))) 625 | (number "1" (effects (font (size 1.27 1.27)))) 626 | ) 627 | (pin passive line (at 0 -3.81 90) (length 1.27) 628 | (name "2" (effects (font (size 1.27 1.27)))) 629 | (number "2" (effects (font (size 1.27 1.27)))) 630 | ) 631 | ) 632 | ) 633 | (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 634 | (property "Reference" "D" (id 0) (at 0 2.54 0) 635 | (effects (font (size 1.27 1.27))) 636 | ) 637 | (property "Value" "LED" (id 1) (at 0 -2.54 0) 638 | (effects (font (size 1.27 1.27))) 639 | ) 640 | (property "Footprint" "" (id 2) (at 0 0 0) 641 | (effects (font (size 1.27 1.27)) hide) 642 | ) 643 | (property "Datasheet" "~" (id 3) (at 0 0 0) 644 | (effects (font (size 1.27 1.27)) hide) 645 | ) 646 | (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) 647 | (effects (font (size 1.27 1.27)) hide) 648 | ) 649 | (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) 650 | (effects (font (size 1.27 1.27)) hide) 651 | ) 652 | (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) 653 | (effects (font (size 1.27 1.27)) hide) 654 | ) 655 | (symbol "LED_0_1" 656 | (polyline 657 | (pts 658 | (xy -1.27 -1.27) 659 | (xy -1.27 1.27) 660 | ) 661 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 662 | (fill (type none)) 663 | ) 664 | (polyline 665 | (pts 666 | (xy -1.27 0) 667 | (xy 1.27 0) 668 | ) 669 | (stroke (width 0) (type default) (color 0 0 0 0)) 670 | (fill (type none)) 671 | ) 672 | (polyline 673 | (pts 674 | (xy 1.27 -1.27) 675 | (xy 1.27 1.27) 676 | (xy -1.27 0) 677 | (xy 1.27 -1.27) 678 | ) 679 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 680 | (fill (type none)) 681 | ) 682 | (polyline 683 | (pts 684 | (xy -3.048 -0.762) 685 | (xy -4.572 -2.286) 686 | (xy -3.81 -2.286) 687 | (xy -4.572 -2.286) 688 | (xy -4.572 -1.524) 689 | ) 690 | (stroke (width 0) (type default) (color 0 0 0 0)) 691 | (fill (type none)) 692 | ) 693 | (polyline 694 | (pts 695 | (xy -1.778 -0.762) 696 | (xy -3.302 -2.286) 697 | (xy -2.54 -2.286) 698 | (xy -3.302 -2.286) 699 | (xy -3.302 -1.524) 700 | ) 701 | (stroke (width 0) (type default) (color 0 0 0 0)) 702 | (fill (type none)) 703 | ) 704 | ) 705 | (symbol "LED_1_1" 706 | (pin passive line (at -3.81 0 0) (length 2.54) 707 | (name "K" (effects (font (size 1.27 1.27)))) 708 | (number "1" (effects (font (size 1.27 1.27)))) 709 | ) 710 | (pin passive line (at 3.81 0 180) (length 2.54) 711 | (name "A" (effects (font (size 1.27 1.27)))) 712 | (number "2" (effects (font (size 1.27 1.27)))) 713 | ) 714 | ) 715 | ) 716 | (symbol "Device:NetTie_2" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) 717 | (property "Reference" "NT" (id 0) (at 0 1.27 0) 718 | (effects (font (size 1.27 1.27))) 719 | ) 720 | (property "Value" "NetTie_2" (id 1) (at 0 -1.27 0) 721 | (effects (font (size 1.27 1.27))) 722 | ) 723 | (property "Footprint" "" (id 2) (at 0 0 0) 724 | (effects (font (size 1.27 1.27)) hide) 725 | ) 726 | (property "Datasheet" "~" (id 3) (at 0 0 0) 727 | (effects (font (size 1.27 1.27)) hide) 728 | ) 729 | (property "ki_keywords" "net tie short" (id 4) (at 0 0 0) 730 | (effects (font (size 1.27 1.27)) hide) 731 | ) 732 | (property "ki_description" "Net tie, 2 pins" (id 5) (at 0 0 0) 733 | (effects (font (size 1.27 1.27)) hide) 734 | ) 735 | (property "ki_fp_filters" "Net*Tie*" (id 6) (at 0 0 0) 736 | (effects (font (size 1.27 1.27)) hide) 737 | ) 738 | (symbol "NetTie_2_0_1" 739 | (polyline 740 | (pts 741 | (xy -1.27 0) 742 | (xy 1.27 0) 743 | ) 744 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 745 | (fill (type none)) 746 | ) 747 | ) 748 | (symbol "NetTie_2_1_1" 749 | (pin passive line (at -2.54 0 0) (length 2.54) 750 | (name "1" (effects (font (size 1.27 1.27)))) 751 | (number "1" (effects (font (size 1.27 1.27)))) 752 | ) 753 | (pin passive line (at 2.54 0 180) (length 2.54) 754 | (name "2" (effects (font (size 1.27 1.27)))) 755 | (number "2" (effects (font (size 1.27 1.27)))) 756 | ) 757 | ) 758 | ) 759 | (symbol "Device:Q_NMOS_GSD" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) 760 | (property "Reference" "Q" (id 0) (at 5.08 1.27 0) 761 | (effects (font (size 1.27 1.27)) (justify left)) 762 | ) 763 | (property "Value" "Q_NMOS_GSD" (id 1) (at 5.08 -1.27 0) 764 | (effects (font (size 1.27 1.27)) (justify left)) 765 | ) 766 | (property "Footprint" "" (id 2) (at 5.08 2.54 0) 767 | (effects (font (size 1.27 1.27)) hide) 768 | ) 769 | (property "Datasheet" "~" (id 3) (at 0 0 0) 770 | (effects (font (size 1.27 1.27)) hide) 771 | ) 772 | (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" (id 4) (at 0 0 0) 773 | (effects (font (size 1.27 1.27)) hide) 774 | ) 775 | (property "ki_description" "N-MOSFET transistor, gate/source/drain" (id 5) (at 0 0 0) 776 | (effects (font (size 1.27 1.27)) hide) 777 | ) 778 | (symbol "Q_NMOS_GSD_0_1" 779 | (polyline 780 | (pts 781 | (xy 0.254 0) 782 | (xy -2.54 0) 783 | ) 784 | (stroke (width 0) (type default) (color 0 0 0 0)) 785 | (fill (type none)) 786 | ) 787 | (polyline 788 | (pts 789 | (xy 0.254 1.905) 790 | (xy 0.254 -1.905) 791 | ) 792 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 793 | (fill (type none)) 794 | ) 795 | (polyline 796 | (pts 797 | (xy 0.762 -1.27) 798 | (xy 0.762 -2.286) 799 | ) 800 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 801 | (fill (type none)) 802 | ) 803 | (polyline 804 | (pts 805 | (xy 0.762 0.508) 806 | (xy 0.762 -0.508) 807 | ) 808 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 809 | (fill (type none)) 810 | ) 811 | (polyline 812 | (pts 813 | (xy 0.762 2.286) 814 | (xy 0.762 1.27) 815 | ) 816 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 817 | (fill (type none)) 818 | ) 819 | (polyline 820 | (pts 821 | (xy 2.54 2.54) 822 | (xy 2.54 1.778) 823 | ) 824 | (stroke (width 0) (type default) (color 0 0 0 0)) 825 | (fill (type none)) 826 | ) 827 | (polyline 828 | (pts 829 | (xy 2.54 -2.54) 830 | (xy 2.54 0) 831 | (xy 0.762 0) 832 | ) 833 | (stroke (width 0) (type default) (color 0 0 0 0)) 834 | (fill (type none)) 835 | ) 836 | (polyline 837 | (pts 838 | (xy 0.762 -1.778) 839 | (xy 3.302 -1.778) 840 | (xy 3.302 1.778) 841 | (xy 0.762 1.778) 842 | ) 843 | (stroke (width 0) (type default) (color 0 0 0 0)) 844 | (fill (type none)) 845 | ) 846 | (polyline 847 | (pts 848 | (xy 1.016 0) 849 | (xy 2.032 0.381) 850 | (xy 2.032 -0.381) 851 | (xy 1.016 0) 852 | ) 853 | (stroke (width 0) (type default) (color 0 0 0 0)) 854 | (fill (type outline)) 855 | ) 856 | (polyline 857 | (pts 858 | (xy 2.794 0.508) 859 | (xy 2.921 0.381) 860 | (xy 3.683 0.381) 861 | (xy 3.81 0.254) 862 | ) 863 | (stroke (width 0) (type default) (color 0 0 0 0)) 864 | (fill (type none)) 865 | ) 866 | (polyline 867 | (pts 868 | (xy 3.302 0.381) 869 | (xy 2.921 -0.254) 870 | (xy 3.683 -0.254) 871 | (xy 3.302 0.381) 872 | ) 873 | (stroke (width 0) (type default) (color 0 0 0 0)) 874 | (fill (type none)) 875 | ) 876 | (circle (center 1.651 0) (radius 2.794) 877 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 878 | (fill (type none)) 879 | ) 880 | (circle (center 2.54 -1.778) (radius 0.254) 881 | (stroke (width 0) (type default) (color 0 0 0 0)) 882 | (fill (type outline)) 883 | ) 884 | (circle (center 2.54 1.778) (radius 0.254) 885 | (stroke (width 0) (type default) (color 0 0 0 0)) 886 | (fill (type outline)) 887 | ) 888 | ) 889 | (symbol "Q_NMOS_GSD_1_1" 890 | (pin input line (at -5.08 0 0) (length 2.54) 891 | (name "G" (effects (font (size 1.27 1.27)))) 892 | (number "1" (effects (font (size 1.27 1.27)))) 893 | ) 894 | (pin passive line (at 2.54 -5.08 90) (length 2.54) 895 | (name "S" (effects (font (size 1.27 1.27)))) 896 | (number "2" (effects (font (size 1.27 1.27)))) 897 | ) 898 | (pin passive line (at 2.54 5.08 270) (length 2.54) 899 | (name "D" (effects (font (size 1.27 1.27)))) 900 | (number "3" (effects (font (size 1.27 1.27)))) 901 | ) 902 | ) 903 | ) 904 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 905 | (property "Reference" "R" (id 0) (at 2.032 0 90) 906 | (effects (font (size 1.27 1.27))) 907 | ) 908 | (property "Value" "R" (id 1) (at 0 0 90) 909 | (effects (font (size 1.27 1.27))) 910 | ) 911 | (property "Footprint" "" (id 2) (at -1.778 0 90) 912 | (effects (font (size 1.27 1.27)) hide) 913 | ) 914 | (property "Datasheet" "~" (id 3) (at 0 0 0) 915 | (effects (font (size 1.27 1.27)) hide) 916 | ) 917 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 918 | (effects (font (size 1.27 1.27)) hide) 919 | ) 920 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 921 | (effects (font (size 1.27 1.27)) hide) 922 | ) 923 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 924 | (effects (font (size 1.27 1.27)) hide) 925 | ) 926 | (symbol "R_0_1" 927 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 928 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 929 | (fill (type none)) 930 | ) 931 | ) 932 | (symbol "R_1_1" 933 | (pin passive line (at 0 3.81 270) (length 1.27) 934 | (name "~" (effects (font (size 1.27 1.27)))) 935 | (number "1" (effects (font (size 1.27 1.27)))) 936 | ) 937 | (pin passive line (at 0 -3.81 90) (length 1.27) 938 | (name "~" (effects (font (size 1.27 1.27)))) 939 | (number "2" (effects (font (size 1.27 1.27)))) 940 | ) 941 | ) 942 | ) 943 | (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 944 | (property "Reference" "H" (id 0) (at 0 5.08 0) 945 | (effects (font (size 1.27 1.27))) 946 | ) 947 | (property "Value" "MountingHole" (id 1) (at 0 3.175 0) 948 | (effects (font (size 1.27 1.27))) 949 | ) 950 | (property "Footprint" "" (id 2) (at 0 0 0) 951 | (effects (font (size 1.27 1.27)) hide) 952 | ) 953 | (property "Datasheet" "~" (id 3) (at 0 0 0) 954 | (effects (font (size 1.27 1.27)) hide) 955 | ) 956 | (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0) 957 | (effects (font (size 1.27 1.27)) hide) 958 | ) 959 | (property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0) 960 | (effects (font (size 1.27 1.27)) hide) 961 | ) 962 | (property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0) 963 | (effects (font (size 1.27 1.27)) hide) 964 | ) 965 | (symbol "MountingHole_0_1" 966 | (circle (center 0 0) (radius 1.27) 967 | (stroke (width 1.27) (type default) (color 0 0 0 0)) 968 | (fill (type none)) 969 | ) 970 | ) 971 | ) 972 | (symbol "Movr:ΜΑΧ17504" (in_bom yes) (on_board yes) 973 | (property "Reference" "U" (id 0) (at -8.89 21.59 0) 974 | (effects (font (size 1.27 1.27))) 975 | ) 976 | (property "Value" "ΜΑΧ17504" (id 1) (at 5.08 21.59 0) 977 | (effects (font (size 1.27 1.27))) 978 | ) 979 | (property "Footprint" "" (id 2) (at 0 19.05 0) 980 | (effects (font (size 1.27 1.27)) hide) 981 | ) 982 | (property "Datasheet" "" (id 3) (at 0 19.05 0) 983 | (effects (font (size 1.27 1.27)) hide) 984 | ) 985 | (symbol "ΜΑΧ17504_0_1" 986 | (rectangle (start -8.89 19.05) (end 8.89 -20.32) 987 | (stroke (width 0.3) (type default) (color 0 0 0 0)) 988 | (fill (type background)) 989 | ) 990 | ) 991 | (symbol "ΜΑΧ17504_1_1" 992 | (pin power_in line (at -13.97 13.97 0) (length 5.08) 993 | (name "Vin" (effects (font (size 1.27 1.27)))) 994 | (number "1" (effects (font (size 1.27 1.27)))) 995 | ) 996 | (pin passive line (at -13.97 -8.89 0) (length 5.08) 997 | (name "RT" (effects (font (size 1.27 1.27)))) 998 | (number "10" (effects (font (size 1.27 1.27)))) 999 | ) 1000 | (pin input line (at -13.97 6.35 0) (length 5.08) 1001 | (name "MODE" (effects (font (size 1.27 1.27)))) 1002 | (number "11" (effects (font (size 1.27 1.27)))) 1003 | ) 1004 | (pin input line (at -13.97 -12.7 0) (length 5.08) 1005 | (name "VCC" (effects (font (size 1.27 1.27)))) 1006 | (number "12" (effects (font (size 1.27 1.27)))) 1007 | ) 1008 | (pin passive line (at -2.54 -25.4 90) (length 5.08) 1009 | (name "SGND" (effects (font (size 1.27 1.27)))) 1010 | (number "13" (effects (font (size 1.27 1.27)))) 1011 | ) 1012 | (pin power_in line (at 2.54 -25.4 90) (length 5.08) 1013 | (name "PGND" (effects (font (size 1.27 1.27)))) 1014 | (number "14" (effects (font (size 1.27 1.27)))) 1015 | ) 1016 | (pin power_out line (at 13.97 2.54 180) (length 5.08) 1017 | (name "LX" (effects (font (size 1.27 1.27)))) 1018 | (number "17" (effects (font (size 1.27 1.27)))) 1019 | ) 1020 | (pin passive line (at 13.97 13.97 180) (length 5.08) 1021 | (name "BST" (effects (font (size 1.27 1.27)))) 1022 | (number "20" (effects (font (size 1.27 1.27)))) 1023 | ) 1024 | (pin input line (at -13.97 10.16 0) (length 5.08) 1025 | (name "EN" (effects (font (size 1.27 1.27)))) 1026 | (number "4" (effects (font (size 1.27 1.27)))) 1027 | ) 1028 | (pin output line (at 13.97 -12.7 180) (length 5.08) 1029 | (name "nRESET" (effects (font (size 1.27 1.27)))) 1030 | (number "5" (effects (font (size 1.27 1.27)))) 1031 | ) 1032 | (pin input line (at -13.97 2.54 0) (length 5.08) 1033 | (name "SYNC" (effects (font (size 1.27 1.27)))) 1034 | (number "6" (effects (font (size 1.27 1.27)))) 1035 | ) 1036 | (pin passive line (at -13.97 -1.27 0) (length 5.08) 1037 | (name "SS" (effects (font (size 1.27 1.27)))) 1038 | (number "7" (effects (font (size 1.27 1.27)))) 1039 | ) 1040 | (pin passive line (at -13.97 -5.08 0) (length 5.08) 1041 | (name "CF" (effects (font (size 1.27 1.27)))) 1042 | (number "8" (effects (font (size 1.27 1.27)))) 1043 | ) 1044 | (pin input line (at 13.97 -1.27 180) (length 5.08) 1045 | (name "FB" (effects (font (size 1.27 1.27)))) 1046 | (number "9" (effects (font (size 1.27 1.27)))) 1047 | ) 1048 | ) 1049 | ) 1050 | (symbol "Power_Management:LM5060" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) 1051 | (property "Reference" "U" (id 0) (at -7.62 -13.97 0) 1052 | (effects (font (size 1.27 1.27)) (justify left)) 1053 | ) 1054 | (property "Value" "LM5060" (id 1) (at 1.27 -13.97 0) 1055 | (effects (font (size 1.27 1.27)) (justify left)) 1056 | ) 1057 | (property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (id 2) (at 5.08 -16.51 0) 1058 | (effects (font (size 1.27 1.27)) hide) 1059 | ) 1060 | (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm5060.pdf" (id 3) (at 0 25.4 0) 1061 | (effects (font (size 1.27 1.27)) hide) 1062 | ) 1063 | (property "ki_keywords" "high-voltage mosfet-driver hot-swap" (id 4) (at 0 0 0) 1064 | (effects (font (size 1.27 1.27)) hide) 1065 | ) 1066 | (property "ki_description" "High side protection controller, +5.5V to +65V operation, VSSOP-10 package" (id 5) (at 0 0 0) 1067 | (effects (font (size 1.27 1.27)) hide) 1068 | ) 1069 | (property "ki_fp_filters" "*SOP*3x3mm*P0.5mm*" (id 6) (at 0 0 0) 1070 | (effects (font (size 1.27 1.27)) hide) 1071 | ) 1072 | (symbol "LM5060_0_1" 1073 | (rectangle (start -7.62 16.51) (end 7.62 -12.7) 1074 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 1075 | (fill (type background)) 1076 | ) 1077 | ) 1078 | (symbol "LM5060_1_0" 1079 | (pin power_in line (at 10.16 -8.89 180) (length 2.54) 1080 | (name "GND" (effects (font (size 1.27 1.27)))) 1081 | (number "6" (effects (font (size 1.27 1.27)))) 1082 | ) 1083 | ) 1084 | (symbol "LM5060_1_1" 1085 | (pin input line (at -5.08 19.05 270) (length 2.54) 1086 | (name "SENSE" (effects (font (size 1.27 1.27)))) 1087 | (number "1" (effects (font (size 1.27 1.27)))) 1088 | ) 1089 | (pin output line (at 0 19.05 270) (length 2.54) 1090 | (name "GATE" (effects (font (size 1.27 1.27)))) 1091 | (number "10" (effects (font (size 1.27 1.27)))) 1092 | ) 1093 | (pin power_in line (at -10.16 6.35 0) (length 2.54) 1094 | (name "VIN" (effects (font (size 1.27 1.27)))) 1095 | (number "2" (effects (font (size 1.27 1.27)))) 1096 | ) 1097 | (pin input line (at -10.16 -2.54 0) (length 2.54) 1098 | (name "OVP" (effects (font (size 1.27 1.27)))) 1099 | (number "3" (effects (font (size 1.27 1.27)))) 1100 | ) 1101 | (pin input line (at -10.16 1.27 0) (length 2.54) 1102 | (name "UVLO" (effects (font (size 1.27 1.27)))) 1103 | (number "4" (effects (font (size 1.27 1.27)))) 1104 | ) 1105 | (pin input line (at -10.16 -10.16 0) (length 2.54) 1106 | (name "EN" (effects (font (size 1.27 1.27)))) 1107 | (number "5" (effects (font (size 1.27 1.27)))) 1108 | ) 1109 | (pin input line (at 10.16 -2.54 180) (length 2.54) 1110 | (name "TIMER" (effects (font (size 1.27 1.27)))) 1111 | (number "7" (effects (font (size 1.27 1.27)))) 1112 | ) 1113 | (pin open_collector line (at -10.16 -7.62 0) (length 2.54) 1114 | (name "~{PGD}" (effects (font (size 1.27 1.27)))) 1115 | (number "8" (effects (font (size 1.27 1.27)))) 1116 | ) 1117 | (pin input line (at 5.08 19.05 270) (length 2.54) 1118 | (name "OUT" (effects (font (size 1.27 1.27)))) 1119 | (number "9" (effects (font (size 1.27 1.27)))) 1120 | ) 1121 | ) 1122 | ) 1123 | (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1124 | (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) 1125 | (effects (font (size 1.27 1.27)) hide) 1126 | ) 1127 | (property "Value" "+5V" (id 1) (at 0 3.556 0) 1128 | (effects (font (size 1.27 1.27))) 1129 | ) 1130 | (property "Footprint" "" (id 2) (at 0 0 0) 1131 | (effects (font (size 1.27 1.27)) hide) 1132 | ) 1133 | (property "Datasheet" "" (id 3) (at 0 0 0) 1134 | (effects (font (size 1.27 1.27)) hide) 1135 | ) 1136 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1137 | (effects (font (size 1.27 1.27)) hide) 1138 | ) 1139 | (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0) 1140 | (effects (font (size 1.27 1.27)) hide) 1141 | ) 1142 | (symbol "+5V_0_1" 1143 | (polyline 1144 | (pts 1145 | (xy -0.762 1.27) 1146 | (xy 0 2.54) 1147 | ) 1148 | (stroke (width 0) (type default) (color 0 0 0 0)) 1149 | (fill (type none)) 1150 | ) 1151 | (polyline 1152 | (pts 1153 | (xy 0 0) 1154 | (xy 0 2.54) 1155 | ) 1156 | (stroke (width 0) (type default) (color 0 0 0 0)) 1157 | (fill (type none)) 1158 | ) 1159 | (polyline 1160 | (pts 1161 | (xy 0 2.54) 1162 | (xy 0.762 1.27) 1163 | ) 1164 | (stroke (width 0) (type default) (color 0 0 0 0)) 1165 | (fill (type none)) 1166 | ) 1167 | ) 1168 | (symbol "+5V_1_1" 1169 | (pin power_in line (at 0 0 90) (length 0) hide 1170 | (name "+5V" (effects (font (size 1.27 1.27)))) 1171 | (number "1" (effects (font (size 1.27 1.27)))) 1172 | ) 1173 | ) 1174 | ) 1175 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1176 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 1177 | (effects (font (size 1.27 1.27)) hide) 1178 | ) 1179 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 1180 | (effects (font (size 1.27 1.27))) 1181 | ) 1182 | (property "Footprint" "" (id 2) (at 0 0 0) 1183 | (effects (font (size 1.27 1.27)) hide) 1184 | ) 1185 | (property "Datasheet" "" (id 3) (at 0 0 0) 1186 | (effects (font (size 1.27 1.27)) hide) 1187 | ) 1188 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1189 | (effects (font (size 1.27 1.27)) hide) 1190 | ) 1191 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 1192 | (effects (font (size 1.27 1.27)) hide) 1193 | ) 1194 | (symbol "GND_0_1" 1195 | (polyline 1196 | (pts 1197 | (xy 0 0) 1198 | (xy 0 -1.27) 1199 | (xy 1.27 -1.27) 1200 | (xy 0 -2.54) 1201 | (xy -1.27 -1.27) 1202 | (xy 0 -1.27) 1203 | ) 1204 | (stroke (width 0) (type default) (color 0 0 0 0)) 1205 | (fill (type none)) 1206 | ) 1207 | ) 1208 | (symbol "GND_1_1" 1209 | (pin power_in line (at 0 0 270) (length 0) hide 1210 | (name "GND" (effects (font (size 1.27 1.27)))) 1211 | (number "1" (effects (font (size 1.27 1.27)))) 1212 | ) 1213 | ) 1214 | ) 1215 | (symbol "power:GNDA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1216 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 1217 | (effects (font (size 1.27 1.27)) hide) 1218 | ) 1219 | (property "Value" "GNDA" (id 1) (at 0 -3.81 0) 1220 | (effects (font (size 1.27 1.27))) 1221 | ) 1222 | (property "Footprint" "" (id 2) (at 0 0 0) 1223 | (effects (font (size 1.27 1.27)) hide) 1224 | ) 1225 | (property "Datasheet" "" (id 3) (at 0 0 0) 1226 | (effects (font (size 1.27 1.27)) hide) 1227 | ) 1228 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1229 | (effects (font (size 1.27 1.27)) hide) 1230 | ) 1231 | (property "ki_description" "Power symbol creates a global label with name \"GNDA\" , analog ground" (id 5) (at 0 0 0) 1232 | (effects (font (size 1.27 1.27)) hide) 1233 | ) 1234 | (symbol "GNDA_0_1" 1235 | (polyline 1236 | (pts 1237 | (xy 0 0) 1238 | (xy 0 -1.27) 1239 | (xy 1.27 -1.27) 1240 | (xy 0 -2.54) 1241 | (xy -1.27 -1.27) 1242 | (xy 0 -1.27) 1243 | ) 1244 | (stroke (width 0) (type default) (color 0 0 0 0)) 1245 | (fill (type none)) 1246 | ) 1247 | ) 1248 | (symbol "GNDA_1_1" 1249 | (pin power_in line (at 0 0 270) (length 0) hide 1250 | (name "GNDA" (effects (font (size 1.27 1.27)))) 1251 | (number "1" (effects (font (size 1.27 1.27)))) 1252 | ) 1253 | ) 1254 | ) 1255 | (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) 1256 | (property "Reference" "#FLG" (id 0) (at 0 1.905 0) 1257 | (effects (font (size 1.27 1.27)) hide) 1258 | ) 1259 | (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0) 1260 | (effects (font (size 1.27 1.27))) 1261 | ) 1262 | (property "Footprint" "" (id 2) (at 0 0 0) 1263 | (effects (font (size 1.27 1.27)) hide) 1264 | ) 1265 | (property "Datasheet" "~" (id 3) (at 0 0 0) 1266 | (effects (font (size 1.27 1.27)) hide) 1267 | ) 1268 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1269 | (effects (font (size 1.27 1.27)) hide) 1270 | ) 1271 | (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0) 1272 | (effects (font (size 1.27 1.27)) hide) 1273 | ) 1274 | (symbol "PWR_FLAG_0_0" 1275 | (pin power_out line (at 0 0 90) (length 0) 1276 | (name "pwr" (effects (font (size 1.27 1.27)))) 1277 | (number "1" (effects (font (size 1.27 1.27)))) 1278 | ) 1279 | ) 1280 | (symbol "PWR_FLAG_0_1" 1281 | (polyline 1282 | (pts 1283 | (xy 0 0) 1284 | (xy 0 1.27) 1285 | (xy -1.016 1.905) 1286 | (xy 0 2.54) 1287 | (xy 1.016 1.905) 1288 | (xy 0 1.27) 1289 | ) 1290 | (stroke (width 0) (type default) (color 0 0 0 0)) 1291 | (fill (type none)) 1292 | ) 1293 | ) 1294 | ) 1295 | (symbol "power:VDD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1296 | (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) 1297 | (effects (font (size 1.27 1.27)) hide) 1298 | ) 1299 | (property "Value" "VDD" (id 1) (at 0 3.81 0) 1300 | (effects (font (size 1.27 1.27))) 1301 | ) 1302 | (property "Footprint" "" (id 2) (at 0 0 0) 1303 | (effects (font (size 1.27 1.27)) hide) 1304 | ) 1305 | (property "Datasheet" "" (id 3) (at 0 0 0) 1306 | (effects (font (size 1.27 1.27)) hide) 1307 | ) 1308 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1309 | (effects (font (size 1.27 1.27)) hide) 1310 | ) 1311 | (property "ki_description" "Power symbol creates a global label with name \"VDD\"" (id 5) (at 0 0 0) 1312 | (effects (font (size 1.27 1.27)) hide) 1313 | ) 1314 | (symbol "VDD_0_1" 1315 | (polyline 1316 | (pts 1317 | (xy -0.762 1.27) 1318 | (xy 0 2.54) 1319 | ) 1320 | (stroke (width 0) (type default) (color 0 0 0 0)) 1321 | (fill (type none)) 1322 | ) 1323 | (polyline 1324 | (pts 1325 | (xy 0 0) 1326 | (xy 0 2.54) 1327 | ) 1328 | (stroke (width 0) (type default) (color 0 0 0 0)) 1329 | (fill (type none)) 1330 | ) 1331 | (polyline 1332 | (pts 1333 | (xy 0 2.54) 1334 | (xy 0.762 1.27) 1335 | ) 1336 | (stroke (width 0) (type default) (color 0 0 0 0)) 1337 | (fill (type none)) 1338 | ) 1339 | ) 1340 | (symbol "VDD_1_1" 1341 | (pin power_in line (at 0 0 90) (length 0) hide 1342 | (name "VDD" (effects (font (size 1.27 1.27)))) 1343 | (number "1" (effects (font (size 1.27 1.27)))) 1344 | ) 1345 | ) 1346 | ) 1347 | (symbol "power:VSS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 1348 | (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) 1349 | (effects (font (size 1.27 1.27)) hide) 1350 | ) 1351 | (property "Value" "VSS" (id 1) (at 0 3.81 0) 1352 | (effects (font (size 1.27 1.27))) 1353 | ) 1354 | (property "Footprint" "" (id 2) (at 0 0 0) 1355 | (effects (font (size 1.27 1.27)) hide) 1356 | ) 1357 | (property "Datasheet" "" (id 3) (at 0 0 0) 1358 | (effects (font (size 1.27 1.27)) hide) 1359 | ) 1360 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 1361 | (effects (font (size 1.27 1.27)) hide) 1362 | ) 1363 | (property "ki_description" "Power symbol creates a global label with name \"VSS\"" (id 5) (at 0 0 0) 1364 | (effects (font (size 1.27 1.27)) hide) 1365 | ) 1366 | (symbol "VSS_0_1" 1367 | (polyline 1368 | (pts 1369 | (xy 0 0) 1370 | (xy 0 2.54) 1371 | ) 1372 | (stroke (width 0) (type default) (color 0 0 0 0)) 1373 | (fill (type none)) 1374 | ) 1375 | (polyline 1376 | (pts 1377 | (xy 0.762 1.27) 1378 | (xy -0.762 1.27) 1379 | (xy 0 2.54) 1380 | (xy 0.762 1.27) 1381 | ) 1382 | (stroke (width 0) (type default) (color 0 0 0 0)) 1383 | (fill (type outline)) 1384 | ) 1385 | ) 1386 | (symbol "VSS_1_1" 1387 | (pin power_in line (at 0 0 90) (length 0) hide 1388 | (name "VSS" (effects (font (size 1.27 1.27)))) 1389 | (number "1" (effects (font (size 1.27 1.27)))) 1390 | ) 1391 | ) 1392 | ) 1393 | ) 1394 | 1395 | (junction (at 242.57 106.68) (diameter 0) (color 0 0 0 0) 1396 | (uuid 040eeb9e-46b2-4980-b82d-88d60efd5e9f) 1397 | ) 1398 | (junction (at 76.2 144.78) (diameter 0) (color 0 0 0 0) 1399 | (uuid 0a62cf73-6280-4e09-9d8d-85b934b32188) 1400 | ) 1401 | (junction (at 162.56 116.84) (diameter 0) (color 0 0 0 0) 1402 | (uuid 1630d66c-46d4-4feb-9009-437626745bf5) 1403 | ) 1404 | (junction (at 140.97 27.94) (diameter 0) (color 0 0 0 0) 1405 | (uuid 1914c7dd-0b8e-4406-b7dd-046aeb1e19a9) 1406 | ) 1407 | (junction (at 110.49 69.85) (diameter 0) (color 0 0 0 0) 1408 | (uuid 1f6b1ea4-2325-488b-9f15-0502937d22b2) 1409 | ) 1410 | (junction (at 127 27.94) (diameter 0) (color 0 0 0 0) 1411 | (uuid 288b5f80-d9d5-4aca-aaef-12748c9c2fe5) 1412 | ) 1413 | (junction (at 242.57 78.74) (diameter 0) (color 0 0 0 0) 1414 | (uuid 32984b2f-6738-44ba-8bb9-d029a1c04d27) 1415 | ) 1416 | (junction (at 242.57 73.66) (diameter 0) (color 0 0 0 0) 1417 | (uuid 34c28922-36ed-419f-92b7-5d23ee3b58b0) 1418 | ) 1419 | (junction (at 240.03 114.3) (diameter 0) (color 0 0 0 0) 1420 | (uuid 3763ec6b-effd-45ec-8bd9-fd49d466e494) 1421 | ) 1422 | (junction (at 69.85 144.78) (diameter 0) (color 0 0 0 0) 1423 | (uuid 428724bc-ef94-49fe-ae4a-51a23b6ae22e) 1424 | ) 1425 | (junction (at 207.01 116.84) (diameter 0) (color 0 0 0 0) 1426 | (uuid 45f128cd-17ce-44c1-ba41-3bc4dbb86fda) 1427 | ) 1428 | (junction (at 143.51 146.05) (diameter 0) (color 0 0 0 0) 1429 | (uuid 57a45e9e-71f9-44a3-b1d9-b922032ec593) 1430 | ) 1431 | (junction (at 176.53 116.84) (diameter 0) (color 0 0 0 0) 1432 | (uuid 5d09929f-4955-4737-9aa7-9ad139cba0c3) 1433 | ) 1434 | (junction (at 146.05 35.56) (diameter 0) (color 0 0 0 0) 1435 | (uuid 5eca1aa8-a076-4c95-ac59-7b5a58fb4bb7) 1436 | ) 1437 | (junction (at 240.03 109.22) (diameter 0) (color 0 0 0 0) 1438 | (uuid 66ba20a9-84f5-41c7-9860-0072850a1ddd) 1439 | ) 1440 | (junction (at 240.03 81.28) (diameter 0) (color 0 0 0 0) 1441 | (uuid 6ac77f4f-0425-4edc-9b9a-a070dcd6ce6b) 1442 | ) 1443 | (junction (at 105.41 128.27) (diameter 0) (color 0 0 0 0) 1444 | (uuid 74a671df-aa89-40ed-a6b7-e7ab0f1071c5) 1445 | ) 1446 | (junction (at 240.03 76.2) (diameter 0) (color 0 0 0 0) 1447 | (uuid 7cd6cd6f-dc77-4a25-9f5f-91b72069ae81) 1448 | ) 1449 | (junction (at 68.58 144.78) (diameter 0) (color 0 0 0 0) 1450 | (uuid 81073b6f-61c9-40ec-9338-458b16ea6e55) 1451 | ) 1452 | (junction (at 110.49 27.94) (diameter 0) (color 0 0 0 0) 1453 | (uuid 8e99ffc6-7477-4dfe-90d8-0ea77ee9646b) 1454 | ) 1455 | (junction (at 127 34.29) (diameter 0) (color 0 0 0 0) 1456 | (uuid 8eb99bd1-0454-4a5f-8eb7-65177a2f14ef) 1457 | ) 1458 | (junction (at 240.03 86.36) (diameter 0) (color 0 0 0 0) 1459 | (uuid 9973cbee-0e27-4d74-9129-20a0fdec1ed6) 1460 | ) 1461 | (junction (at 128.27 105.41) (diameter 0) (color 0 0 0 0) 1462 | (uuid ab23ec59-fe07-4d33-8f33-f6354be35160) 1463 | ) 1464 | (junction (at 242.57 111.76) (diameter 0) (color 0 0 0 0) 1465 | (uuid af07dc58-0c5e-425b-8985-2215d5cf659b) 1466 | ) 1467 | (junction (at 116.84 105.41) (diameter 0) (color 0 0 0 0) 1468 | (uuid b36fecb2-fe31-4e4e-8f82-18da185fb72e) 1469 | ) 1470 | (junction (at 242.57 83.82) (diameter 0) (color 0 0 0 0) 1471 | (uuid c63174ee-cf5f-4db8-ae07-a8766a24b668) 1472 | ) 1473 | (junction (at 57.15 80.01) (diameter 0) (color 0 0 0 0) 1474 | (uuid ccdea2ad-22d4-46cc-995c-179fd3206a84) 1475 | ) 1476 | (junction (at 123.19 27.94) (diameter 0) (color 0 0 0 0) 1477 | (uuid d8fd1d5d-7efc-4d07-bf7e-4d5f8744f0b6) 1478 | ) 1479 | (junction (at 146.05 82.55) (diameter 0) (color 0 0 0 0) 1480 | (uuid e6192dcd-56ed-44bd-9143-789c1b40cd22) 1481 | ) 1482 | (junction (at 123.19 72.39) (diameter 0) (color 0 0 0 0) 1483 | (uuid e6220a35-7149-4712-8fe6-4e1e4e3041c3) 1484 | ) 1485 | (junction (at 151.13 27.94) (diameter 0) (color 0 0 0 0) 1486 | (uuid ea2a4e95-9004-4748-80c1-199d9a2ad7e6) 1487 | ) 1488 | (junction (at 242.57 116.84) (diameter 0) (color 0 0 0 0) 1489 | (uuid ede9cfaa-e271-46c2-975d-20465c16ed40) 1490 | ) 1491 | (junction (at 48.26 189.23) (diameter 0) (color 0 0 0 0) 1492 | (uuid f36525db-fcf6-42a9-83f2-822c803fe90b) 1493 | ) 1494 | (junction (at 207.01 132.08) (diameter 0) (color 0 0 0 0) 1495 | (uuid fc3ceb1e-4d71-4f39-9ea9-0d06651b4428) 1496 | ) 1497 | (junction (at 175.26 27.94) (diameter 0) (color 0 0 0 0) 1498 | (uuid fdd52698-8adb-4a8d-b339-f4a9326acfa5) 1499 | ) 1500 | 1501 | (no_connect (at 160.02 132.08) (uuid 25ee40c8-7d73-46c1-a160-bdc8b7b6dfe9)) 1502 | (no_connect (at 63.5 160.02) (uuid 5c72a0b3-bda2-4dfa-a324-062fb83724c8)) 1503 | (no_connect (at 63.5 162.56) (uuid 5c72a0b3-bda2-4dfa-a324-062fb83724c9)) 1504 | (no_connect (at 63.5 175.26) (uuid 5c72a0b3-bda2-4dfa-a324-062fb83724ca)) 1505 | (no_connect (at 63.5 177.8) (uuid 5c72a0b3-bda2-4dfa-a324-062fb83724cb)) 1506 | (no_connect (at 63.5 165.1) (uuid 5c72a0b3-bda2-4dfa-a324-062fb83724cc)) 1507 | (no_connect (at 63.5 167.64) (uuid 5c72a0b3-bda2-4dfa-a324-062fb83724cd)) 1508 | (no_connect (at 132.08 113.03) (uuid 7add2bce-0d6c-4c32-940d-efd2f7b73478)) 1509 | (no_connect (at 132.08 116.84) (uuid 7add2bce-0d6c-4c32-940d-efd2f7b73479)) 1510 | (no_connect (at 132.08 124.46) (uuid d59952bb-be3d-4640-8bf1-a21deeea4420)) 1511 | 1512 | (wire (pts (xy 105.41 120.65) (xy 132.08 120.65)) 1513 | (stroke (width 0) (type default) (color 0 0 0 0)) 1514 | (uuid 04be7b71-820c-4f27-a2a4-a7bf88413035) 1515 | ) 1516 | (wire (pts (xy 86.36 144.78) (xy 86.36 147.32)) 1517 | (stroke (width 0) (type default) (color 0 0 0 0)) 1518 | (uuid 0509f63d-ccc0-417c-8790-b10e4aa17e20) 1519 | ) 1520 | (wire (pts (xy 140.97 27.94) (xy 140.97 33.02)) 1521 | (stroke (width 0) (type default) (color 0 0 0 0)) 1522 | (uuid 06366f0d-aea1-4d8c-9fec-7bc0c216d61a) 1523 | ) 1524 | (wire (pts (xy 123.19 82.55) (xy 146.05 82.55)) 1525 | (stroke (width 0) (type default) (color 0 0 0 0)) 1526 | (uuid 09272eed-5dc5-4c78-b662-ad1bad45d93b) 1527 | ) 1528 | (wire (pts (xy 40.64 189.23) (xy 48.26 189.23)) 1529 | (stroke (width 0) (type default) (color 0 0 0 0)) 1530 | (uuid 09b9248f-bf17-4ab5-8f81-81360ef54010) 1531 | ) 1532 | (wire (pts (xy 110.49 69.85) (xy 135.89 69.85)) 1533 | (stroke (width 0) (type default) (color 0 0 0 0)) 1534 | (uuid 0f86ad42-b759-4d06-8441-e6cc8a440073) 1535 | ) 1536 | (wire (pts (xy 57.15 30.48) (xy 57.15 32.385)) 1537 | (stroke (width 0) (type default) (color 0 0 0 0)) 1538 | (uuid 16831edd-df54-4474-a870-5bed35e5c4d5) 1539 | ) 1540 | (wire (pts (xy 240.03 81.28) (xy 240.03 86.36)) 1541 | (stroke (width 0) (type default) (color 0 0 0 0)) 1542 | (uuid 176b5ae0-cd63-465e-b171-79f1e32aba0d) 1543 | ) 1544 | (wire (pts (xy 151.13 27.94) (xy 151.13 43.18)) 1545 | (stroke (width 0) (type default) (color 0 0 0 0)) 1546 | (uuid 1884f2f9-9e99-47f6-93fc-eb470929f9c8) 1547 | ) 1548 | (wire (pts (xy 162.56 105.41) (xy 162.56 106.68)) 1549 | (stroke (width 0) (type default) (color 0 0 0 0)) 1550 | (uuid 1d8b57e1-9980-499f-9faa-e53419dab12d) 1551 | ) 1552 | (wire (pts (xy 172.72 116.84) (xy 176.53 116.84)) 1553 | (stroke (width 0) (type default) (color 0 0 0 0)) 1554 | (uuid 1f26ad7e-dc11-404e-ad27-ce659cfad562) 1555 | ) 1556 | (wire (pts (xy 135.89 55.88) (xy 127 55.88)) 1557 | (stroke (width 0) (type default) (color 0 0 0 0)) 1558 | (uuid 21f43398-37cc-40c5-b333-bdb585c8828c) 1559 | ) 1560 | (wire (pts (xy 73.66 60.96) (xy 73.66 80.01)) 1561 | (stroke (width 0) (type default) (color 0 0 0 0)) 1562 | (uuid 234cd876-c944-4cfb-b630-7656bee99f3c) 1563 | ) 1564 | (wire (pts (xy 160.02 105.41) (xy 162.56 105.41)) 1565 | (stroke (width 0) (type default) (color 0 0 0 0)) 1566 | (uuid 26d929fc-4474-411b-bf6a-3436ebee0cc5) 1567 | ) 1568 | (wire (pts (xy 123.19 72.39) (xy 135.89 72.39)) 1569 | (stroke (width 0) (type default) (color 0 0 0 0)) 1570 | (uuid 2969b641-b0ef-4ab7-a4e5-189f19657d3f) 1571 | ) 1572 | (wire (pts (xy 242.57 106.68) (xy 242.57 111.76)) 1573 | (stroke (width 0) (type default) (color 0 0 0 0)) 1574 | (uuid 296d686a-7eac-482e-88e5-a9a1a464e985) 1575 | ) 1576 | (wire (pts (xy 101.6 27.94) (xy 110.49 27.94)) 1577 | (stroke (width 0) (type default) (color 0 0 0 0)) 1578 | (uuid 2ba6a28e-e277-4b3c-8168-ce731080f617) 1579 | ) 1580 | (wire (pts (xy 156.21 64.77) (xy 161.29 64.77)) 1581 | (stroke (width 0) (type default) (color 0 0 0 0)) 1582 | (uuid 2bbc25a9-5a7e-45ff-966d-e01f1b015265) 1583 | ) 1584 | (wire (pts (xy 151.13 27.94) (xy 175.26 27.94)) 1585 | (stroke (width 0) (type default) (color 0 0 0 0)) 1586 | (uuid 2db9fa9e-ab0d-4765-bef8-9d3b82ed7122) 1587 | ) 1588 | (wire (pts (xy 242.57 83.82) (xy 242.57 106.68)) 1589 | (stroke (width 0) (type default) (color 0 0 0 0)) 1590 | (uuid 303427ff-0513-4009-b201-e50cb371ccbc) 1591 | ) 1592 | (wire (pts (xy 76.2 152.4) (xy 76.2 154.94)) 1593 | (stroke (width 0) (type default) (color 0 0 0 0)) 1594 | (uuid 3052dfe8-8aad-4eb4-96eb-54b65c519b01) 1595 | ) 1596 | (wire (pts (xy 128.27 132.08) (xy 128.27 135.89)) 1597 | (stroke (width 0) (type default) (color 0 0 0 0)) 1598 | (uuid 310f04ac-7330-4a0d-a02f-35bc07c6f124) 1599 | ) 1600 | (wire (pts (xy 242.57 73.66) (xy 242.57 78.74)) 1601 | (stroke (width 0) (type default) (color 0 0 0 0)) 1602 | (uuid 3244a4c9-b4f3-45ae-8e37-c7a25cc8896c) 1603 | ) 1604 | (wire (pts (xy 176.53 116.84) (xy 207.01 116.84)) 1605 | (stroke (width 0) (type default) (color 0 0 0 0)) 1606 | (uuid 32680d77-1a2e-42ca-99c4-b436cd147db2) 1607 | ) 1608 | (wire (pts (xy 143.51 144.78) (xy 143.51 146.05)) 1609 | (stroke (width 0) (type default) (color 0 0 0 0)) 1610 | (uuid 357fe7f4-f8b7-45a2-985f-cd1f03cd026d) 1611 | ) 1612 | (wire (pts (xy 179.07 147.32) (xy 179.07 143.51)) 1613 | (stroke (width 0) (type default) (color 0 0 0 0)) 1614 | (uuid 38be1af6-0877-42ab-b1ef-fa110c28f95d) 1615 | ) 1616 | (wire (pts (xy 73.66 80.01) (xy 57.15 80.01)) 1617 | (stroke (width 0) (type default) (color 0 0 0 0)) 1618 | (uuid 3a296c40-9b85-461a-a5e5-50afdafe66a9) 1619 | ) 1620 | (wire (pts (xy 242.57 73.66) (xy 247.65 73.66)) 1621 | (stroke (width 0) (type default) (color 0 0 0 0)) 1622 | (uuid 3a98a33b-34f7-4f3e-b21e-78816419d363) 1623 | ) 1624 | (wire (pts (xy 128.27 143.51) (xy 128.27 146.05)) 1625 | (stroke (width 0) (type default) (color 0 0 0 0)) 1626 | (uuid 3c6e556f-4354-4f9d-8394-e470d979a1e2) 1627 | ) 1628 | (wire (pts (xy 57.15 40.005) (xy 57.15 53.34)) 1629 | (stroke (width 0) (type default) (color 0 0 0 0)) 1630 | (uuid 3caf3ff1-4802-4229-a4a8-b06b3c198916) 1631 | ) 1632 | (wire (pts (xy 240.03 109.22) (xy 247.65 109.22)) 1633 | (stroke (width 0) (type default) (color 0 0 0 0)) 1634 | (uuid 3eceb20e-b8a3-4fea-998a-930b26b3634d) 1635 | ) 1636 | (wire (pts (xy 240.03 114.3) (xy 240.03 119.38)) 1637 | (stroke (width 0) (type default) (color 0 0 0 0)) 1638 | (uuid 3f629e11-594e-4151-adb7-995792254d28) 1639 | ) 1640 | (wire (pts (xy 240.03 76.2) (xy 240.03 81.28)) 1641 | (stroke (width 0) (type default) (color 0 0 0 0)) 1642 | (uuid 4089dfab-6113-422c-b52d-3c5aa12584cc) 1643 | ) 1644 | (wire (pts (xy 242.57 78.74) (xy 242.57 83.82)) 1645 | (stroke (width 0) (type default) (color 0 0 0 0)) 1646 | (uuid 44d830d1-8b03-46fc-a223-6a8706152c9a) 1647 | ) 1648 | (wire (pts (xy 146.05 82.55) (xy 146.05 83.82)) 1649 | (stroke (width 0) (type default) (color 0 0 0 0)) 1650 | (uuid 45b56812-056d-4849-93e8-6d9bdf4b765d) 1651 | ) 1652 | (wire (pts (xy 76.2 154.94) (xy 63.5 154.94)) 1653 | (stroke (width 0) (type default) (color 0 0 0 0)) 1654 | (uuid 469aae55-1cef-4bd4-ac0f-6eea682ed42e) 1655 | ) 1656 | (wire (pts (xy 160.02 120.65) (xy 168.91 120.65)) 1657 | (stroke (width 0) (type default) (color 0 0 0 0)) 1658 | (uuid 485a25fb-66a6-430b-a138-fb2c7bc6818f) 1659 | ) 1660 | (wire (pts (xy 242.57 39.37) (xy 247.65 39.37)) 1661 | (stroke (width 0) (type default) (color 0 0 0 0)) 1662 | (uuid 4a421f10-1360-47f8-a742-23556129c312) 1663 | ) 1664 | (wire (pts (xy 240.03 86.36) (xy 247.65 86.36)) 1665 | (stroke (width 0) (type default) (color 0 0 0 0)) 1666 | (uuid 4c8bf83f-1788-455b-8376-f4dfd6744487) 1667 | ) 1668 | (wire (pts (xy 43.18 30.48) (xy 43.18 32.385)) 1669 | (stroke (width 0) (type default) (color 0 0 0 0)) 1670 | (uuid 4e63ab60-dd18-4122-a192-4f4f4606a66a) 1671 | ) 1672 | (wire (pts (xy 128.27 146.05) (xy 143.51 146.05)) 1673 | (stroke (width 0) (type default) (color 0 0 0 0)) 1674 | (uuid 4e7c7bc7-9f8c-4304-baaa-f4f877f738f9) 1675 | ) 1676 | (wire (pts (xy 39.37 92.71) (xy 46.99 92.71)) 1677 | (stroke (width 0) (type default) (color 0 0 0 0)) 1678 | (uuid 51bf9364-40e9-4c83-b963-589ac96a0664) 1679 | ) 1680 | (wire (pts (xy 135.89 60.96) (xy 123.19 60.96)) 1681 | (stroke (width 0) (type default) (color 0 0 0 0)) 1682 | (uuid 574bc0b8-75aa-4401-a07e-7c08b2c5b7cc) 1683 | ) 1684 | (wire (pts (xy 160.02 116.84) (xy 162.56 116.84)) 1685 | (stroke (width 0) (type default) (color 0 0 0 0)) 1686 | (uuid 5a298482-8034-4566-91b3-d3cb8ea07d02) 1687 | ) 1688 | (wire (pts (xy 128.27 109.22) (xy 128.27 105.41)) 1689 | (stroke (width 0) (type default) (color 0 0 0 0)) 1690 | (uuid 5c74417c-ad02-47f9-bc1e-e76d3140cff6) 1691 | ) 1692 | (wire (pts (xy 110.49 27.94) (xy 123.19 27.94)) 1693 | (stroke (width 0) (type default) (color 0 0 0 0)) 1694 | (uuid 60d101e7-131d-484b-846b-3a08a9ca6cf7) 1695 | ) 1696 | (wire (pts (xy 105.41 128.27) (xy 105.41 130.81)) 1697 | (stroke (width 0) (type default) (color 0 0 0 0)) 1698 | (uuid 625946d0-90bb-47a8-abae-210041b9e5d1) 1699 | ) 1700 | (wire (pts (xy 39.37 133.35) (xy 46.99 133.35)) 1701 | (stroke (width 0) (type default) (color 0 0 0 0)) 1702 | (uuid 62af0961-2f10-4a6f-9b65-9e3adf6464ef) 1703 | ) 1704 | (wire (pts (xy 123.19 64.77) (xy 135.89 64.77)) 1705 | (stroke (width 0) (type default) (color 0 0 0 0)) 1706 | (uuid 62fd49be-2911-430e-b964-dc8a59580f77) 1707 | ) 1708 | (wire (pts (xy 101.6 102.87) (xy 101.6 105.41)) 1709 | (stroke (width 0) (type default) (color 0 0 0 0)) 1710 | (uuid 69d4cf88-8563-41ae-b586-94d502f7be96) 1711 | ) 1712 | (wire (pts (xy 39.37 102.87) (xy 46.99 102.87)) 1713 | (stroke (width 0) (type default) (color 0 0 0 0)) 1714 | (uuid 69e488cb-6500-4754-a61a-ccad5f8a82e1) 1715 | ) 1716 | (wire (pts (xy 73.66 30.48) (xy 73.66 53.34)) 1717 | (stroke (width 0) (type default) (color 0 0 0 0)) 1718 | (uuid 6a3d719c-7f6e-40e1-b5a1-d5e1e14ee2be) 1719 | ) 1720 | (wire (pts (xy 86.36 149.86) (xy 86.36 152.4)) 1721 | (stroke (width 0) (type default) (color 0 0 0 0)) 1722 | (uuid 6b38d839-bc22-45ec-9347-721c246be7c5) 1723 | ) 1724 | (wire (pts (xy 168.91 120.65) (xy 168.91 132.08)) 1725 | (stroke (width 0) (type default) (color 0 0 0 0)) 1726 | (uuid 6b58bf45-40c4-4d66-8249-edace4d5658e) 1727 | ) 1728 | (wire (pts (xy 39.37 120.65) (xy 46.99 120.65)) 1729 | (stroke (width 0) (type default) (color 0 0 0 0)) 1730 | (uuid 71d3a7db-638f-42a5-9768-4662fd7b661b) 1731 | ) 1732 | (wire (pts (xy 242.57 111.76) (xy 247.65 111.76)) 1733 | (stroke (width 0) (type default) (color 0 0 0 0)) 1734 | (uuid 73c922f7-203e-4726-b324-818cc8ad5371) 1735 | ) 1736 | (wire (pts (xy 166.37 143.51) (xy 170.18 143.51)) 1737 | (stroke (width 0) (type default) (color 0 0 0 0)) 1738 | (uuid 7a7bfc8e-5290-4855-81b1-d1f790c9fc65) 1739 | ) 1740 | (wire (pts (xy 240.03 114.3) (xy 247.65 114.3)) 1741 | (stroke (width 0) (type default) (color 0 0 0 0)) 1742 | (uuid 7abbe503-2f1a-45ad-9760-b5a2ff7b664d) 1743 | ) 1744 | (wire (pts (xy 240.03 76.2) (xy 247.65 76.2)) 1745 | (stroke (width 0) (type default) (color 0 0 0 0)) 1746 | (uuid 7caca498-0c3e-458c-8db5-2b7d91cd2132) 1747 | ) 1748 | (wire (pts (xy 162.56 116.84) (xy 165.1 116.84)) 1749 | (stroke (width 0) (type default) (color 0 0 0 0)) 1750 | (uuid 7f4b6f92-2257-4806-9ebe-23eb8cdde742) 1751 | ) 1752 | (wire (pts (xy 76.2 144.78) (xy 86.36 144.78)) 1753 | (stroke (width 0) (type default) (color 0 0 0 0)) 1754 | (uuid 7f9c232e-63df-4b0e-baf5-4a941946e55a) 1755 | ) 1756 | (wire (pts (xy 158.75 35.56) (xy 158.75 36.83)) 1757 | (stroke (width 0) (type default) (color 0 0 0 0)) 1758 | (uuid 800de866-755e-4820-9a2d-511273ff85bd) 1759 | ) 1760 | (wire (pts (xy 242.57 39.37) (xy 242.57 73.66)) 1761 | (stroke (width 0) (type default) (color 0 0 0 0)) 1762 | (uuid 81b47af2-5db2-44f8-a509-aa69b1862de8) 1763 | ) 1764 | (wire (pts (xy 132.08 109.22) (xy 128.27 109.22)) 1765 | (stroke (width 0) (type default) (color 0 0 0 0)) 1766 | (uuid 859cb04a-3c3b-4407-a4de-0f4654cf729a) 1767 | ) 1768 | (wire (pts (xy 129.54 128.27) (xy 132.08 128.27)) 1769 | (stroke (width 0) (type default) (color 0 0 0 0)) 1770 | (uuid 865cb6ff-88b8-444a-9463-21f223648609) 1771 | ) 1772 | (wire (pts (xy 162.56 114.3) (xy 162.56 116.84)) 1773 | (stroke (width 0) (type default) (color 0 0 0 0)) 1774 | (uuid 875bdac6-f738-4b48-b9cf-9673a976d151) 1775 | ) 1776 | (wire (pts (xy 240.03 86.36) (xy 240.03 109.22)) 1777 | (stroke (width 0) (type default) (color 0 0 0 0)) 1778 | (uuid 87faab06-c579-400a-8971-082430d0f8bb) 1779 | ) 1780 | (wire (pts (xy 101.6 105.41) (xy 116.84 105.41)) 1781 | (stroke (width 0) (type default) (color 0 0 0 0)) 1782 | (uuid 88167459-13dd-4612-bbe2-038948391821) 1783 | ) 1784 | (wire (pts (xy 207.01 124.46) (xy 207.01 132.08)) 1785 | (stroke (width 0) (type default) (color 0 0 0 0)) 1786 | (uuid 886e7aef-6936-4447-a910-7e19a5795661) 1787 | ) 1788 | (wire (pts (xy 92.71 90.17) (xy 96.52 90.17)) 1789 | (stroke (width 0) (type default) (color 0 0 0 0)) 1790 | (uuid 89e321ee-f570-47bc-92d7-bbaa9cbbdc5f) 1791 | ) 1792 | (wire (pts (xy 69.85 144.78) (xy 76.2 144.78)) 1793 | (stroke (width 0) (type default) (color 0 0 0 0)) 1794 | (uuid 8bf07fda-c64b-4d8e-8074-12ff6c71809b) 1795 | ) 1796 | (wire (pts (xy 175.26 143.51) (xy 179.07 143.51)) 1797 | (stroke (width 0) (type default) (color 0 0 0 0)) 1798 | (uuid 8dfac3b5-908c-4a4f-bea8-9807a16a6b30) 1799 | ) 1800 | (wire (pts (xy 128.27 105.41) (xy 132.08 105.41)) 1801 | (stroke (width 0) (type default) (color 0 0 0 0)) 1802 | (uuid 8f5255f6-3597-4ad5-b489-bd429461423f) 1803 | ) 1804 | (wire (pts (xy 242.57 78.74) (xy 247.65 78.74)) 1805 | (stroke (width 0) (type default) (color 0 0 0 0)) 1806 | (uuid 9181822f-574c-4508-9509-3c8d5cb2e289) 1807 | ) 1808 | (wire (pts (xy 207.01 116.84) (xy 213.36 116.84)) 1809 | (stroke (width 0) (type default) (color 0 0 0 0)) 1810 | (uuid 932ff217-b4b2-47b5-887b-826a1897c9bf) 1811 | ) 1812 | (wire (pts (xy 207.01 139.7) (xy 207.01 142.24)) 1813 | (stroke (width 0) (type default) (color 0 0 0 0)) 1814 | (uuid 947e540d-2c98-4089-8618-4670723dfaa0) 1815 | ) 1816 | (wire (pts (xy 105.41 128.27) (xy 121.92 128.27)) 1817 | (stroke (width 0) (type default) (color 0 0 0 0)) 1818 | (uuid 99408d97-e0ef-4fdf-becd-7faf018b83d6) 1819 | ) 1820 | (wire (pts (xy 132.08 36.83) (xy 132.08 34.29)) 1821 | (stroke (width 0) (type default) (color 0 0 0 0)) 1822 | (uuid 994f5613-f26e-48b7-ba0b-178dcb96aac3) 1823 | ) 1824 | (wire (pts (xy 110.49 52.07) (xy 110.49 69.85)) 1825 | (stroke (width 0) (type default) (color 0 0 0 0)) 1826 | (uuid 9a8ddbee-8cec-4a6f-8d5c-d070da9c2aba) 1827 | ) 1828 | (wire (pts (xy 123.19 72.39) (xy 123.19 74.93)) 1829 | (stroke (width 0) (type default) (color 0 0 0 0)) 1830 | (uuid 9e1447d7-5890-4c02-a58a-2879bc7a9865) 1831 | ) 1832 | (wire (pts (xy 63.5 144.78) (xy 68.58 144.78)) 1833 | (stroke (width 0) (type default) (color 0 0 0 0)) 1834 | (uuid a66ae7a5-86a0-4010-885b-27453dd17fe6) 1835 | ) 1836 | (wire (pts (xy 242.57 116.84) (xy 242.57 142.24)) 1837 | (stroke (width 0) (type default) (color 0 0 0 0)) 1838 | (uuid a70d4ff3-0d2f-41be-84ff-f20e2cdd20f5) 1839 | ) 1840 | (wire (pts (xy 132.08 34.29) (xy 127 34.29)) 1841 | (stroke (width 0) (type default) (color 0 0 0 0)) 1842 | (uuid a763bff1-437a-4319-8a90-638acbcd6715) 1843 | ) 1844 | (wire (pts (xy 57.15 60.96) (xy 57.15 80.01)) 1845 | (stroke (width 0) (type default) (color 0 0 0 0)) 1846 | (uuid a8751d2a-9852-4249-881e-9301a45db454) 1847 | ) 1848 | (wire (pts (xy 43.18 40.005) (xy 43.18 53.34)) 1849 | (stroke (width 0) (type default) (color 0 0 0 0)) 1850 | (uuid a94474f5-a0e4-4961-8a06-461584ede3a8) 1851 | ) 1852 | (wire (pts (xy 240.03 36.83) (xy 240.03 76.2)) 1853 | (stroke (width 0) (type default) (color 0 0 0 0)) 1854 | (uuid a9d6890a-d24a-47f8-93e5-403f9c9566cd) 1855 | ) 1856 | (wire (pts (xy 69.85 144.78) (xy 69.85 139.7)) 1857 | (stroke (width 0) (type default) (color 0 0 0 0)) 1858 | (uuid ab9a5c59-f2e9-431e-b5f2-96fe91e82ab2) 1859 | ) 1860 | (wire (pts (xy 236.22 47.625) (xy 236.22 36.83)) 1861 | (stroke (width 0) (type default) (color 0 0 0 0)) 1862 | (uuid abeef997-f59d-4fb7-96ac-1a3cc2b9e6c7) 1863 | ) 1864 | (wire (pts (xy 242.57 83.82) (xy 247.65 83.82)) 1865 | (stroke (width 0) (type default) (color 0 0 0 0)) 1866 | (uuid ac3668cd-506b-48b5-9727-67bd17d3c980) 1867 | ) 1868 | (wire (pts (xy 43.18 60.96) (xy 43.18 80.01)) 1869 | (stroke (width 0) (type default) (color 0 0 0 0)) 1870 | (uuid ae438cc4-aaf5-4315-9e82-dd6177f6cc28) 1871 | ) 1872 | (wire (pts (xy 127 55.88) (xy 127 34.29)) 1873 | (stroke (width 0) (type default) (color 0 0 0 0)) 1874 | (uuid b3ccea58-5b56-41fa-a688-a7d90006466c) 1875 | ) 1876 | (wire (pts (xy 127 27.94) (xy 140.97 27.94)) 1877 | (stroke (width 0) (type default) (color 0 0 0 0)) 1878 | (uuid b5105e8a-6ac0-4599-838d-10d8581fc4ad) 1879 | ) 1880 | (wire (pts (xy 116.84 113.03) (xy 116.84 114.3)) 1881 | (stroke (width 0) (type default) (color 0 0 0 0)) 1882 | (uuid b7b611a6-75ca-4536-8caa-33c5b709cf5c) 1883 | ) 1884 | (wire (pts (xy 48.26 185.42) (xy 48.26 189.23)) 1885 | (stroke (width 0) (type default) (color 0 0 0 0)) 1886 | (uuid b81ef256-ef22-495d-8d9b-b4631c5f3b29) 1887 | ) 1888 | (wire (pts (xy 175.26 27.94) (xy 191.77 27.94)) 1889 | (stroke (width 0) (type default) (color 0 0 0 0)) 1890 | (uuid b8e09728-adb6-44ed-ab6f-72a80510b068) 1891 | ) 1892 | (wire (pts (xy 168.91 132.08) (xy 207.01 132.08)) 1893 | (stroke (width 0) (type default) (color 0 0 0 0)) 1894 | (uuid b8e4f681-7347-4f28-a8d7-07afca03a43e) 1895 | ) 1896 | (wire (pts (xy 148.59 144.78) (xy 148.59 149.86)) 1897 | (stroke (width 0) (type default) (color 0 0 0 0)) 1898 | (uuid b9f346be-babc-4c34-b6e8-c656911ff0d6) 1899 | ) 1900 | (wire (pts (xy 132.08 132.08) (xy 128.27 132.08)) 1901 | (stroke (width 0) (type default) (color 0 0 0 0)) 1902 | (uuid bb298066-28e3-4897-8701-8b2b1cbdfa23) 1903 | ) 1904 | (wire (pts (xy 146.05 35.56) (xy 158.75 35.56)) 1905 | (stroke (width 0) (type default) (color 0 0 0 0)) 1906 | (uuid bc2cb3ac-463f-4682-9f6c-6e802c7acd07) 1907 | ) 1908 | (wire (pts (xy 110.49 27.94) (xy 110.49 44.45)) 1909 | (stroke (width 0) (type default) (color 0 0 0 0)) 1910 | (uuid bcbf8811-6540-455a-b46a-4d18c9c77621) 1911 | ) 1912 | (wire (pts (xy 88.9 149.86) (xy 86.36 149.86)) 1913 | (stroke (width 0) (type default) (color 0 0 0 0)) 1914 | (uuid c067f43a-487b-4d13-ab19-bca38dfbb2c5) 1915 | ) 1916 | (wire (pts (xy 247.65 47.625) (xy 236.22 47.625)) 1917 | (stroke (width 0) (type default) (color 0 0 0 0)) 1918 | (uuid c21d71ab-69d7-449e-8042-a2ab141687eb) 1919 | ) 1920 | (wire (pts (xy 123.19 27.94) (xy 127 27.94)) 1921 | (stroke (width 0) (type default) (color 0 0 0 0)) 1922 | (uuid c4c55198-2a28-439b-b643-1efc535e4ab5) 1923 | ) 1924 | (wire (pts (xy 123.19 60.96) (xy 123.19 27.94)) 1925 | (stroke (width 0) (type default) (color 0 0 0 0)) 1926 | (uuid c642192d-e1f6-495c-af0a-c0610a1e1df4) 1927 | ) 1928 | (wire (pts (xy 168.91 64.77) (xy 173.99 64.77)) 1929 | (stroke (width 0) (type default) (color 0 0 0 0)) 1930 | (uuid cd69a35e-c89c-4a62-845e-5e9cac2edbac) 1931 | ) 1932 | (wire (pts (xy 63.5 147.32) (xy 63.5 144.78)) 1933 | (stroke (width 0) (type default) (color 0 0 0 0)) 1934 | (uuid cf9d5448-d643-4d91-9468-14b1506a13af) 1935 | ) 1936 | (wire (pts (xy 240.03 81.28) (xy 247.65 81.28)) 1937 | (stroke (width 0) (type default) (color 0 0 0 0)) 1938 | (uuid d1238931-fd05-48ce-b254-cf6847b09b08) 1939 | ) 1940 | (wire (pts (xy 101.6 69.85) (xy 110.49 69.85)) 1941 | (stroke (width 0) (type default) (color 0 0 0 0)) 1942 | (uuid d2752264-7dc7-4788-bd7f-b771fdcf17bd) 1943 | ) 1944 | (wire (pts (xy 146.05 78.74) (xy 146.05 82.55)) 1945 | (stroke (width 0) (type default) (color 0 0 0 0)) 1946 | (uuid d4047c1f-2953-4c99-a29f-1dbf6f13bd07) 1947 | ) 1948 | (wire (pts (xy 156.21 71.12) (xy 156.21 78.74)) 1949 | (stroke (width 0) (type default) (color 0 0 0 0)) 1950 | (uuid d5e68fb0-7f73-40c5-9817-45aae76cd15e) 1951 | ) 1952 | (wire (pts (xy 156.21 78.74) (xy 146.05 78.74)) 1953 | (stroke (width 0) (type default) (color 0 0 0 0)) 1954 | (uuid d5fd33a7-a963-470c-b26e-1a308d76aef8) 1955 | ) 1956 | (wire (pts (xy 40.64 185.42) (xy 40.64 189.23)) 1957 | (stroke (width 0) (type default) (color 0 0 0 0)) 1958 | (uuid db5eee57-71a9-41d2-84ae-3a208d9127dc) 1959 | ) 1960 | (wire (pts (xy 140.97 40.64) (xy 140.97 43.18)) 1961 | (stroke (width 0) (type default) (color 0 0 0 0)) 1962 | (uuid dfe43875-c408-4603-be5a-4abaac07ee48) 1963 | ) 1964 | (wire (pts (xy 39.37 110.49) (xy 46.99 110.49)) 1965 | (stroke (width 0) (type default) (color 0 0 0 0)) 1966 | (uuid dffe1b65-1bea-4331-980c-9f683bf5d76e) 1967 | ) 1968 | (wire (pts (xy 242.57 116.84) (xy 247.65 116.84)) 1969 | (stroke (width 0) (type default) (color 0 0 0 0)) 1970 | (uuid e1b6a8aa-b000-4358-b941-616b4c3a0b37) 1971 | ) 1972 | (wire (pts (xy 242.57 106.68) (xy 247.65 106.68)) 1973 | (stroke (width 0) (type default) (color 0 0 0 0)) 1974 | (uuid e260b958-e1c5-40d1-a2f3-6370d4a1489f) 1975 | ) 1976 | (wire (pts (xy 110.49 72.39) (xy 123.19 72.39)) 1977 | (stroke (width 0) (type default) (color 0 0 0 0)) 1978 | (uuid e28bb85b-1be8-4752-94de-24cce00348bd) 1979 | ) 1980 | (wire (pts (xy 43.18 80.01) (xy 57.15 80.01)) 1981 | (stroke (width 0) (type default) (color 0 0 0 0)) 1982 | (uuid e5acdbef-e965-485c-b66d-f8a27dd5febc) 1983 | ) 1984 | (wire (pts (xy 63.5 152.4) (xy 68.58 152.4)) 1985 | (stroke (width 0) (type default) (color 0 0 0 0)) 1986 | (uuid e73b5e31-2470-4b90-886a-640fff8c75d6) 1987 | ) 1988 | (wire (pts (xy 116.84 105.41) (xy 128.27 105.41)) 1989 | (stroke (width 0) (type default) (color 0 0 0 0)) 1990 | (uuid e763556c-3aa8-4eb1-b263-7f108caa2254) 1991 | ) 1992 | (wire (pts (xy 240.03 109.22) (xy 240.03 114.3)) 1993 | (stroke (width 0) (type default) (color 0 0 0 0)) 1994 | (uuid e87d6291-d889-4bca-99b4-4ea1e6c6bd38) 1995 | ) 1996 | (wire (pts (xy 146.05 35.56) (xy 146.05 43.18)) 1997 | (stroke (width 0) (type default) (color 0 0 0 0)) 1998 | (uuid ea0bf661-fcae-4ec1-bc92-425de3d7f8b9) 1999 | ) 2000 | (wire (pts (xy 86.36 147.32) (xy 88.9 147.32)) 2001 | (stroke (width 0) (type default) (color 0 0 0 0)) 2002 | (uuid eb5f6024-1303-44be-a0d7-11f381403d77) 2003 | ) 2004 | (wire (pts (xy 143.51 146.05) (xy 143.51 149.86)) 2005 | (stroke (width 0) (type default) (color 0 0 0 0)) 2006 | (uuid eedd8a81-9a34-4c00-8c2e-0d0bf09d59c9) 2007 | ) 2008 | (wire (pts (xy 68.58 144.78) (xy 69.85 144.78)) 2009 | (stroke (width 0) (type default) (color 0 0 0 0)) 2010 | (uuid f0b2478d-dc98-4818-8be0-5f3c19beab1b) 2011 | ) 2012 | (wire (pts (xy 166.37 147.32) (xy 166.37 143.51)) 2013 | (stroke (width 0) (type default) (color 0 0 0 0)) 2014 | (uuid f30643d8-a6c0-4d89-a608-84b48255fb86) 2015 | ) 2016 | (wire (pts (xy 242.57 111.76) (xy 242.57 116.84)) 2017 | (stroke (width 0) (type default) (color 0 0 0 0)) 2018 | (uuid f5051bc1-a4d0-44e9-b265-fcebf0085f0f) 2019 | ) 2020 | (wire (pts (xy 175.26 27.94) (xy 175.26 36.83)) 2021 | (stroke (width 0) (type default) (color 0 0 0 0)) 2022 | (uuid f85ac415-6ddc-4e16-bbca-3b45c8fadc3f) 2023 | ) 2024 | (wire (pts (xy 127 34.29) (xy 127 27.94)) 2025 | (stroke (width 0) (type default) (color 0 0 0 0)) 2026 | (uuid f97f4010-0169-4b15-823f-eced3dc5c57f) 2027 | ) 2028 | (wire (pts (xy 176.53 124.46) (xy 176.53 125.73)) 2029 | (stroke (width 0) (type default) (color 0 0 0 0)) 2030 | (uuid fa908367-8b4c-4e41-99d5-b25af69dba07) 2031 | ) 2032 | (wire (pts (xy 240.03 119.38) (xy 247.65 119.38)) 2033 | (stroke (width 0) (type default) (color 0 0 0 0)) 2034 | (uuid fc60cf5d-a7e9-49fd-8855-551136a053b6) 2035 | ) 2036 | 2037 | (text "Buck Converter Output" (at 40.005 58.42 90) 2038 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2039 | (uuid 3d3f4a61-e748-4e00-8965-8f62eb799618) 2040 | ) 2041 | (text "Indicator LEDs" (at 64.135 20.955 180) 2042 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2043 | (uuid 3ea48f0d-8b24-483a-a60c-19b3e7cdd389) 2044 | ) 2045 | (text "Power to Load" (at 55.245 59.055 90) 2046 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2047 | (uuid 822d58a4-c657-4a01-819f-3d90d4ab8202) 2048 | ) 2049 | (text "Soft Start/Protection" (at 156.21 19.05 180) 2050 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2051 | (uuid cb1c99fb-cdb9-41a3-b5c5-16dd246bf9ff) 2052 | ) 2053 | 2054 | (global_label "PSTATUS" (shape input) (at 101.6 69.85 180) (fields_autoplaced) 2055 | (effects (font (size 1.27 1.27)) (justify right)) 2056 | (uuid 391e7996-3604-47df-939c-42c211edd613) 2057 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 91.1436 69.7706 0) 2058 | (effects (font (size 1.27 1.27)) (justify right) hide) 2059 | ) 2060 | ) 2061 | (global_label "PSTATUS" (shape input) (at 73.66 30.48 90) (fields_autoplaced) 2062 | (effects (font (size 1.27 1.27)) (justify left)) 2063 | (uuid 546f894f-8939-410b-b385-019ac0ba2cd1) 2064 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 73.7394 20.0236 90) 2065 | (effects (font (size 1.27 1.27)) (justify left) hide) 2066 | ) 2067 | ) 2068 | (global_label "LX" (shape input) (at 160.02 116.84 90) (fields_autoplaced) 2069 | (effects (font (size 1.27 1.27)) (justify left)) 2070 | (uuid 8e873c8e-5ecf-4766-9548-135da70df303) 2071 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 159.9406 112.1893 90) 2072 | (effects (font (size 1.27 1.27)) (justify left) hide) 2073 | ) 2074 | ) 2075 | (global_label "PEN" (shape input) (at 110.49 72.39 180) (fields_autoplaced) 2076 | (effects (font (size 1.27 1.27)) (justify right)) 2077 | (uuid dcd850db-3012-4699-894d-3f1b890e0fee) 2078 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.3274 72.3106 0) 2079 | (effects (font (size 1.27 1.27)) (justify right) hide) 2080 | ) 2081 | ) 2082 | (global_label "PEN" (shape input) (at 96.52 87.63 180) (fields_autoplaced) 2083 | (effects (font (size 1.27 1.27)) (justify right)) 2084 | (uuid ed069113-e999-4617-923a-4e8707ad27d6) 2085 | (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 90.3574 87.5506 0) 2086 | (effects (font (size 1.27 1.27)) (justify right) hide) 2087 | ) 2088 | ) 2089 | 2090 | (symbol (lib_id "power:GND") (at 48.26 189.23 0) (unit 1) 2091 | (in_bom yes) (on_board yes) (fields_autoplaced) 2092 | (uuid 1554f29e-f79d-4c41-a131-c63b807a3e28) 2093 | (property "Reference" "#PWR0118" (id 0) (at 48.26 195.58 0) 2094 | (effects (font (size 1.27 1.27)) hide) 2095 | ) 2096 | (property "Value" "GND" (id 1) (at 48.26 193.6734 0)) 2097 | (property "Footprint" "" (id 2) (at 48.26 189.23 0) 2098 | (effects (font (size 1.27 1.27)) hide) 2099 | ) 2100 | (property "Datasheet" "" (id 3) (at 48.26 189.23 0) 2101 | (effects (font (size 1.27 1.27)) hide) 2102 | ) 2103 | (pin "1" (uuid e3dcd46e-7b20-42b4-aea1-86df79892b68)) 2104 | ) 2105 | 2106 | (symbol (lib_id "power:GND") (at 146.05 83.82 0) (unit 1) 2107 | (in_bom yes) (on_board yes) (fields_autoplaced) 2108 | (uuid 15f2c487-72e3-4c7f-9da8-ca57e89f6d47) 2109 | (property "Reference" "#PWR0110" (id 0) (at 146.05 90.17 0) 2110 | (effects (font (size 1.27 1.27)) hide) 2111 | ) 2112 | (property "Value" "GND" (id 1) (at 146.05 88.3825 0)) 2113 | (property "Footprint" "" (id 2) (at 146.05 83.82 0) 2114 | (effects (font (size 1.27 1.27)) hide) 2115 | ) 2116 | (property "Datasheet" "" (id 3) (at 146.05 83.82 0) 2117 | (effects (font (size 1.27 1.27)) hide) 2118 | ) 2119 | (pin "1" (uuid ad509dec-838d-420a-a261-cbbf2608e45d)) 2120 | ) 2121 | 2122 | (symbol (lib_id "Device:R") (at 76.2 148.59 0) (unit 1) 2123 | (in_bom yes) (on_board yes) (fields_autoplaced) 2124 | (uuid 1aec70fd-034e-458c-8fb4-4507cb936896) 2125 | (property "Reference" "R7" (id 0) (at 77.978 147.6815 0) 2126 | (effects (font (size 1.27 1.27)) (justify left)) 2127 | ) 2128 | (property "Value" "5.1k" (id 1) (at 77.978 150.4566 0) 2129 | (effects (font (size 1.27 1.27)) (justify left)) 2130 | ) 2131 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 74.422 148.59 90) 2132 | (effects (font (size 1.27 1.27)) hide) 2133 | ) 2134 | (property "Datasheet" "~" (id 3) (at 76.2 148.59 0) 2135 | (effects (font (size 1.27 1.27)) hide) 2136 | ) 2137 | (pin "1" (uuid 7aa71125-5909-4ae4-8517-a0e461459a45)) 2138 | (pin "2" (uuid 9ba779a3-f50a-4792-8338-542724c68e08)) 2139 | ) 2140 | 2141 | (symbol (lib_id "Mechanical:MountingHole") (at 146.05 177.8 0) (unit 1) 2142 | (in_bom yes) (on_board yes) (fields_autoplaced) 2143 | (uuid 2088b1ac-8829-4293-9015-12bec94f9d55) 2144 | (property "Reference" "H4" (id 0) (at 148.59 176.9653 0) 2145 | (effects (font (size 1.27 1.27)) (justify left)) 2146 | ) 2147 | (property "Value" "MountingHole" (id 1) (at 148.59 179.5022 0) 2148 | (effects (font (size 1.27 1.27)) (justify left)) 2149 | ) 2150 | (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (id 2) (at 146.05 177.8 0) 2151 | (effects (font (size 1.27 1.27)) hide) 2152 | ) 2153 | (property "Datasheet" "~" (id 3) (at 146.05 177.8 0) 2154 | (effects (font (size 1.27 1.27)) hide) 2155 | ) 2156 | ) 2157 | 2158 | (symbol (lib_id "power:VDD") (at 92.71 90.17 90) (unit 1) 2159 | (in_bom yes) (on_board yes) (fields_autoplaced) 2160 | (uuid 20fd1aec-5fb6-446f-a004-9981951dc124) 2161 | (property "Reference" "#PWR0122" (id 0) (at 96.52 90.17 0) 2162 | (effects (font (size 1.27 1.27)) hide) 2163 | ) 2164 | (property "Value" "VDD" (id 1) (at 93.345 90.649 90) 2165 | (effects (font (size 1.27 1.27)) (justify right)) 2166 | ) 2167 | (property "Footprint" "" (id 2) (at 92.71 90.17 0) 2168 | (effects (font (size 1.27 1.27)) hide) 2169 | ) 2170 | (property "Datasheet" "" (id 3) (at 92.71 90.17 0) 2171 | (effects (font (size 1.27 1.27)) hide) 2172 | ) 2173 | (pin "1" (uuid d45d11e6-5313-4462-a8c5-5d67b48915c2)) 2174 | ) 2175 | 2176 | (symbol (lib_id "Device:L") (at 168.91 116.84 90) (unit 1) 2177 | (in_bom yes) (on_board yes) 2178 | (uuid 244b749f-174a-49b7-828e-ed41080839d8) 2179 | (property "Reference" "L1" (id 0) (at 168.91 118.11 90)) 2180 | (property "Value" "4.7uH" (id 1) (at 168.91 115.1406 90)) 2181 | (property "Footprint" "Inductor_SMD:L_Coilcraft_XAL60xx_6.36x6.56mm" (id 2) (at 168.91 116.84 0) 2182 | (effects (font (size 1.27 1.27)) hide) 2183 | ) 2184 | (property "Datasheet" "~" (id 3) (at 168.91 116.84 0) 2185 | (effects (font (size 1.27 1.27)) hide) 2186 | ) 2187 | (pin "1" (uuid 9eedc8f6-5f56-4ca3-8a57-1adaa1e7caf0)) 2188 | (pin "2" (uuid 2417d970-e3df-48a4-be8f-6cec67d71c85)) 2189 | ) 2190 | 2191 | (symbol (lib_id "power:PWR_FLAG") (at 46.99 110.49 0) (unit 1) 2192 | (in_bom yes) (on_board yes) (fields_autoplaced) 2193 | (uuid 2a7fce8e-6c95-4192-ba6e-daae8415063a) 2194 | (property "Reference" "#FLG0102" (id 0) (at 46.99 108.585 0) 2195 | (effects (font (size 1.27 1.27)) hide) 2196 | ) 2197 | (property "Value" "PWR_FLAG" (id 1) (at 46.99 106.8855 0)) 2198 | (property "Footprint" "" (id 2) (at 46.99 110.49 0) 2199 | (effects (font (size 1.27 1.27)) hide) 2200 | ) 2201 | (property "Datasheet" "~" (id 3) (at 46.99 110.49 0) 2202 | (effects (font (size 1.27 1.27)) hide) 2203 | ) 2204 | (pin "1" (uuid 51d6e445-9ea2-41c2-92f0-c82048e46cda)) 2205 | ) 2206 | 2207 | (symbol (lib_id "power:+5V") (at 39.37 133.35 0) (unit 1) 2208 | (in_bom yes) (on_board yes) (fields_autoplaced) 2209 | (uuid 2e10a5b3-3896-40d1-a910-7070f5779277) 2210 | (property "Reference" "#PWR0133" (id 0) (at 39.37 137.16 0) 2211 | (effects (font (size 1.27 1.27)) hide) 2212 | ) 2213 | (property "Value" "+5V" (id 1) (at 39.37 129.7455 0)) 2214 | (property "Footprint" "" (id 2) (at 39.37 133.35 0) 2215 | (effects (font (size 1.27 1.27)) hide) 2216 | ) 2217 | (property "Datasheet" "" (id 3) (at 39.37 133.35 0) 2218 | (effects (font (size 1.27 1.27)) hide) 2219 | ) 2220 | (pin "1" (uuid af0511b8-6a46-474f-92ed-e1b84fcd839a)) 2221 | ) 2222 | 2223 | (symbol (lib_id "power:GND") (at 173.99 64.77 90) (unit 1) 2224 | (in_bom yes) (on_board yes) (fields_autoplaced) 2225 | (uuid 2e35a6cf-083e-4f7b-ad2b-11a34b7e8ec3) 2226 | (property "Reference" "#PWR0101" (id 0) (at 180.34 64.77 0) 2227 | (effects (font (size 1.27 1.27)) hide) 2228 | ) 2229 | (property "Value" "GND" (id 1) (at 177.165 65.249 90) 2230 | (effects (font (size 1.27 1.27)) (justify right)) 2231 | ) 2232 | (property "Footprint" "" (id 2) (at 173.99 64.77 0) 2233 | (effects (font (size 1.27 1.27)) hide) 2234 | ) 2235 | (property "Datasheet" "" (id 3) (at 173.99 64.77 0) 2236 | (effects (font (size 1.27 1.27)) hide) 2237 | ) 2238 | (pin "1" (uuid b40f2ce7-b0a5-4377-88ad-319feea5aacd)) 2239 | ) 2240 | 2241 | (symbol (lib_id "power:VDD") (at 101.6 27.94 0) (unit 1) 2242 | (in_bom yes) (on_board yes) (fields_autoplaced) 2243 | (uuid 2e573b09-546d-49bd-b774-3fc14a41235c) 2244 | (property "Reference" "#PWR0113" (id 0) (at 101.6 31.75 0) 2245 | (effects (font (size 1.27 1.27)) hide) 2246 | ) 2247 | (property "Value" "VDD" (id 1) (at 101.6 24.3642 0)) 2248 | (property "Footprint" "" (id 2) (at 101.6 27.94 0) 2249 | (effects (font (size 1.27 1.27)) hide) 2250 | ) 2251 | (property "Datasheet" "" (id 3) (at 101.6 27.94 0) 2252 | (effects (font (size 1.27 1.27)) hide) 2253 | ) 2254 | (pin "1" (uuid 64219ce2-a1a3-492b-809f-30f7dd822d6b)) 2255 | ) 2256 | 2257 | (symbol (lib_id "power:GNDA") (at 39.37 120.65 0) (unit 1) 2258 | (in_bom yes) (on_board yes) (fields_autoplaced) 2259 | (uuid 2ef4afc6-d39a-4db6-add1-329238e1dc3b) 2260 | (property "Reference" "#PWR0135" (id 0) (at 39.37 127 0) 2261 | (effects (font (size 1.27 1.27)) hide) 2262 | ) 2263 | (property "Value" "GNDA" (id 1) (at 39.37 125.2125 0)) 2264 | (property "Footprint" "" (id 2) (at 39.37 120.65 0) 2265 | (effects (font (size 1.27 1.27)) hide) 2266 | ) 2267 | (property "Datasheet" "" (id 3) (at 39.37 120.65 0) 2268 | (effects (font (size 1.27 1.27)) hide) 2269 | ) 2270 | (pin "1" (uuid b8cac06a-6002-4613-a811-f251eb5a63fd)) 2271 | ) 2272 | 2273 | (symbol (lib_id "Device:C") (at 158.75 40.64 0) (unit 1) 2274 | (in_bom yes) (on_board yes) 2275 | (uuid 2fa455f4-fa0e-4f62-bd46-377927a99562) 2276 | (property "Reference" "C5" (id 0) (at 161.671 39.7315 0) 2277 | (effects (font (size 1.27 1.27)) (justify left)) 2278 | ) 2279 | (property "Value" "0" (id 1) (at 161.671 42.5066 0) 2280 | (effects (font (size 1.27 1.27)) (justify left)) 2281 | ) 2282 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 159.7152 44.45 0) 2283 | (effects (font (size 1.27 1.27)) hide) 2284 | ) 2285 | (property "Datasheet" "~" (id 3) (at 158.75 40.64 0) 2286 | (effects (font (size 1.27 1.27)) hide) 2287 | ) 2288 | (pin "1" (uuid 4b4046ec-1657-4990-af28-25bfe0a81231)) 2289 | (pin "2" (uuid 4de1c272-850c-4350-8101-dc54ae5d2ce7)) 2290 | ) 2291 | 2292 | (symbol (lib_id "Device:C") (at 128.27 139.7 0) (unit 1) 2293 | (in_bom yes) (on_board yes) 2294 | (uuid 320f4df2-77bb-4a1e-b4a4-4701108ea3d8) 2295 | (property "Reference" "C4" (id 0) (at 131.191 138.7915 0) 2296 | (effects (font (size 1.27 1.27)) (justify left)) 2297 | ) 2298 | (property "Value" "2.2uF 10V" (id 1) (at 131.191 141.5666 0) 2299 | (effects (font (size 1.27 1.27)) (justify left)) 2300 | ) 2301 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 129.2352 143.51 0) 2302 | (effects (font (size 1.27 1.27)) hide) 2303 | ) 2304 | (property "Datasheet" "~" (id 3) (at 128.27 139.7 0) 2305 | (effects (font (size 1.27 1.27)) hide) 2306 | ) 2307 | (pin "1" (uuid c458233e-9037-4011-b5c8-4339830e0ed4)) 2308 | (pin "2" (uuid b98edae8-39db-4393-90d0-5e6510c77920)) 2309 | ) 2310 | 2311 | (symbol (lib_id "power:GND") (at 116.84 114.3 0) (unit 1) 2312 | (in_bom yes) (on_board yes) (fields_autoplaced) 2313 | (uuid 353dad36-cfde-4236-aac6-5bd32b3f1017) 2314 | (property "Reference" "#PWR0129" (id 0) (at 116.84 120.65 0) 2315 | (effects (font (size 1.27 1.27)) hide) 2316 | ) 2317 | (property "Value" "GND" (id 1) (at 116.84 118.8625 0)) 2318 | (property "Footprint" "" (id 2) (at 116.84 114.3 0) 2319 | (effects (font (size 1.27 1.27)) hide) 2320 | ) 2321 | (property "Datasheet" "" (id 3) (at 116.84 114.3 0) 2322 | (effects (font (size 1.27 1.27)) hide) 2323 | ) 2324 | (pin "1" (uuid 691dacc9-fff4-4fc3-ba04-2631511ea090)) 2325 | ) 2326 | 2327 | (symbol (lib_id "power:GND") (at 86.36 152.4 0) (unit 1) 2328 | (in_bom yes) (on_board yes) (fields_autoplaced) 2329 | (uuid 3748fc6c-2394-4259-aa1e-4bee3c172a6d) 2330 | (property "Reference" "#PWR0106" (id 0) (at 86.36 158.75 0) 2331 | (effects (font (size 1.27 1.27)) hide) 2332 | ) 2333 | (property "Value" "GND" (id 1) (at 86.36 156.8434 0)) 2334 | (property "Footprint" "" (id 2) (at 86.36 152.4 0) 2335 | (effects (font (size 1.27 1.27)) hide) 2336 | ) 2337 | (property "Datasheet" "" (id 3) (at 86.36 152.4 0) 2338 | (effects (font (size 1.27 1.27)) hide) 2339 | ) 2340 | (pin "1" (uuid 920e9a0e-8e57-489b-9608-87b81470e6d1)) 2341 | ) 2342 | 2343 | (symbol (lib_id "Connector:USB_C_Receptacle_USB2.0") (at 48.26 162.56 0) (unit 1) 2344 | (in_bom yes) (on_board yes) (fields_autoplaced) 2345 | (uuid 37e43d63-cb41-40f8-97c4-4ee588727924) 2346 | (property "Reference" "J2" (id 0) (at 48.26 140.8135 0)) 2347 | (property "Value" "USB_C_Receptacle_USB2.0" (id 1) (at 48.26 143.5886 0)) 2348 | (property "Footprint" "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (id 2) (at 52.07 162.56 0) 2349 | (effects (font (size 1.27 1.27)) hide) 2350 | ) 2351 | (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (id 3) (at 52.07 162.56 0) 2352 | (effects (font (size 1.27 1.27)) hide) 2353 | ) 2354 | (pin "A1" (uuid 728dda43-38f9-4d13-b2a9-59e599c86d99)) 2355 | (pin "A12" (uuid eef9a49b-90d1-4463-b2c5-af035d3ae9d7)) 2356 | (pin "A4" (uuid a1441258-3477-4706-8540-9e88ae0dac49)) 2357 | (pin "A5" (uuid 430cb5a0-6865-46d0-be60-5d722d3e8d80)) 2358 | (pin "A6" (uuid 8d9ea4cf-1047-42af-bf72-13258f22d6ad)) 2359 | (pin "A7" (uuid e16a8ef9-72be-44ea-a34c-71d53d6ff2bf)) 2360 | (pin "A8" (uuid b2de1057-44b4-4b1a-b3d7-c19d3cd25553)) 2361 | (pin "A9" (uuid c3f6c24d-368b-47d2-9a0a-d716bb140344)) 2362 | (pin "B1" (uuid 04b78285-4974-4fa0-8f4e-46d399f5727c)) 2363 | (pin "B12" (uuid ecb190c3-7d33-4f9e-917d-98f2e006b7de)) 2364 | (pin "B4" (uuid af5a6355-b37d-4130-98e5-c563dae6ea34)) 2365 | (pin "B5" (uuid 43758126-6174-43ff-b8a7-6d55ec68152a)) 2366 | (pin "B6" (uuid 5fe5bd8d-5a86-4565-bd10-e08c6de9aa03)) 2367 | (pin "B7" (uuid 885a1129-9446-432d-8d93-f91d54873594)) 2368 | (pin "B8" (uuid ba660766-df56-40bf-b584-d5d4ed6cb6fc)) 2369 | (pin "B9" (uuid 2c3d5c2f-c119-4276-9b7e-33808f1d9396)) 2370 | (pin "S1" (uuid 46255620-16a2-4e81-9e4a-58dddcf89388)) 2371 | ) 2372 | 2373 | (symbol (lib_id "Power_Management:LM5060") (at 146.05 62.23 0) (unit 1) 2374 | (in_bom yes) (on_board yes) (fields_autoplaced) 2375 | (uuid 3ac98cf4-6a16-4035-9e8f-5861024b9940) 2376 | (property "Reference" "U2" (id 0) (at 148.0694 74.5395 0) 2377 | (effects (font (size 1.27 1.27)) (justify left)) 2378 | ) 2379 | (property "Value" "LM5060" (id 1) (at 148.0694 77.3146 0) 2380 | (effects (font (size 1.27 1.27)) (justify left)) 2381 | ) 2382 | (property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (id 2) (at 151.13 77.47 0) 2383 | (effects (font (size 1.27 1.27)) hide) 2384 | ) 2385 | (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm5060.pdf" (id 3) (at 146.05 50.8 0) 2386 | (effects (font (size 1.27 1.27)) hide) 2387 | ) 2388 | (pin "6" (uuid 87ddd80d-3ce8-4677-b479-08fe58a1d559)) 2389 | (pin "1" (uuid 44ed2461-ceb8-4339-97f7-4cefb48da1a7)) 2390 | (pin "10" (uuid 0a1c796f-2699-4332-833a-12011549628d)) 2391 | (pin "2" (uuid e8628e71-9d5f-4ed7-95dd-04d312ec562b)) 2392 | (pin "3" (uuid 5aafb6dd-3353-45bc-bd05-eace5baab059)) 2393 | (pin "4" (uuid 4eb23b78-d101-47f0-a982-2863642f3b9f)) 2394 | (pin "5" (uuid bae09d75-c278-47b3-a281-8bf741a73bda)) 2395 | (pin "7" (uuid c333e184-9949-4b5c-b459-8fde42a6ae29)) 2396 | (pin "8" (uuid 403dfe9b-382e-4009-a727-18d4160a2580)) 2397 | (pin "9" (uuid 54944ded-bc34-4593-8e81-22e07f9e4ad9)) 2398 | ) 2399 | 2400 | (symbol (lib_id "power:+5V") (at 69.85 139.7 0) (unit 1) 2401 | (in_bom yes) (on_board yes) 2402 | (uuid 3e26675b-9076-42c1-af02-d3dfff7ad2ac) 2403 | (property "Reference" "#PWR0119" (id 0) (at 69.85 143.51 0) 2404 | (effects (font (size 1.27 1.27)) hide) 2405 | ) 2406 | (property "Value" "+5V" (id 1) (at 69.85 136.1242 0)) 2407 | (property "Footprint" "" (id 2) (at 69.85 139.7 0) 2408 | (effects (font (size 1.27 1.27)) hide) 2409 | ) 2410 | (property "Datasheet" "" (id 3) (at 69.85 139.7 0) 2411 | (effects (font (size 1.27 1.27)) hide) 2412 | ) 2413 | (pin "1" (uuid c7fb8fa3-6aae-41ef-87aa-1f4e5d29d826)) 2414 | ) 2415 | 2416 | (symbol (lib_id "Device:R") (at 207.01 135.89 0) (unit 1) 2417 | (in_bom yes) (on_board yes) (fields_autoplaced) 2418 | (uuid 3ff85890-f013-47bf-b77e-5e98412ecbdb) 2419 | (property "Reference" "R9" (id 0) (at 208.788 134.9815 0) 2420 | (effects (font (size 1.27 1.27)) (justify left)) 2421 | ) 2422 | (property "Value" "24.9k" (id 1) (at 208.788 137.7566 0) 2423 | (effects (font (size 1.27 1.27)) (justify left)) 2424 | ) 2425 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 205.232 135.89 90) 2426 | (effects (font (size 1.27 1.27)) hide) 2427 | ) 2428 | (property "Datasheet" "~" (id 3) (at 207.01 135.89 0) 2429 | (effects (font (size 1.27 1.27)) hide) 2430 | ) 2431 | (pin "1" (uuid f27ed146-e272-4c27-8004-cf096f87fd76)) 2432 | (pin "2" (uuid 93546746-ce7c-4545-9a0b-25abe8a9d8e2)) 2433 | ) 2434 | 2435 | (symbol (lib_id "Device:LED") (at 43.18 57.15 90) (unit 1) 2436 | (in_bom yes) (on_board yes) (fields_autoplaced) 2437 | (uuid 49ac2b6b-5619-4c45-a68f-ba587d67cab4) 2438 | (property "Reference" "D1" (id 0) (at 46.101 57.9028 90) 2439 | (effects (font (size 1.27 1.27)) (justify right)) 2440 | ) 2441 | (property "Value" "LED_WHITE" (id 1) (at 46.101 60.4397 90) 2442 | (effects (font (size 1.27 1.27)) (justify right)) 2443 | ) 2444 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 43.18 57.15 0) 2445 | (effects (font (size 1.27 1.27)) hide) 2446 | ) 2447 | (property "Datasheet" "~" (id 3) (at 43.18 57.15 0) 2448 | (effects (font (size 1.27 1.27)) hide) 2449 | ) 2450 | (pin "1" (uuid bee4dfbe-ee67-4ce1-bdc4-868dd40e8ac7)) 2451 | (pin "2" (uuid 28c44848-5bb4-4db1-a8b8-2796103ba63a)) 2452 | ) 2453 | 2454 | (symbol (lib_id "Device:C") (at 116.84 109.22 0) (unit 1) 2455 | (in_bom yes) (on_board yes) 2456 | (uuid 500e7529-8909-414f-983c-657b0a08e1db) 2457 | (property "Reference" "C2" (id 0) (at 119.761 108.3115 0) 2458 | (effects (font (size 1.27 1.27)) (justify left)) 2459 | ) 2460 | (property "Value" "2.2uF 75V" (id 1) (at 119.761 111.0866 0) 2461 | (effects (font (size 1.27 1.27)) (justify left)) 2462 | ) 2463 | (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (id 2) (at 117.8052 113.03 0) 2464 | (effects (font (size 1.27 1.27)) hide) 2465 | ) 2466 | (property "Datasheet" "~" (id 3) (at 116.84 109.22 0) 2467 | (effects (font (size 1.27 1.27)) hide) 2468 | ) 2469 | (pin "1" (uuid 9a34d834-3ccf-4d8b-b3fb-c8ca74339c66)) 2470 | (pin "2" (uuid 5d5827d9-16ab-4532-a8b8-cc102ee112da)) 2471 | ) 2472 | 2473 | (symbol (lib_id "Device:Q_NMOS_GSD") (at 146.05 30.48 90) (unit 1) 2474 | (in_bom yes) (on_board yes) (fields_autoplaced) 2475 | (uuid 5b851567-b41b-4346-b432-9e2a2cc09547) 2476 | (property "Reference" "Q1" (id 0) (at 146.05 22.0685 90)) 2477 | (property "Value" "Q_NMOS_DGS" (id 1) (at 146.05 24.8436 90)) 2478 | (property "Footprint" "Package_TO_SOT_SMD:PQFN_8x8" (id 2) (at 143.51 25.4 0) 2479 | (effects (font (size 1.27 1.27)) hide) 2480 | ) 2481 | (property "Datasheet" "~" (id 3) (at 146.05 30.48 0) 2482 | (effects (font (size 1.27 1.27)) hide) 2483 | ) 2484 | (pin "1" (uuid 2bfc1051-b75a-4b0b-b96f-78a22e99e306)) 2485 | (pin "2" (uuid d425604c-6a22-454e-a724-6bb057255dcd)) 2486 | (pin "3" (uuid 5010d227-8e9e-4092-a10d-2dd31b4e4584)) 2487 | ) 2488 | 2489 | (symbol (lib_id "power:PWR_FLAG") (at 46.99 102.87 0) (unit 1) 2490 | (in_bom yes) (on_board yes) (fields_autoplaced) 2491 | (uuid 5ec448c7-6d6b-4bda-a0ba-531e2c9c9c5b) 2492 | (property "Reference" "#FLG0101" (id 0) (at 46.99 100.965 0) 2493 | (effects (font (size 1.27 1.27)) hide) 2494 | ) 2495 | (property "Value" "PWR_FLAG" (id 1) (at 46.99 99.2655 0)) 2496 | (property "Footprint" "" (id 2) (at 46.99 102.87 0) 2497 | (effects (font (size 1.27 1.27)) hide) 2498 | ) 2499 | (property "Datasheet" "~" (id 3) (at 46.99 102.87 0) 2500 | (effects (font (size 1.27 1.27)) hide) 2501 | ) 2502 | (pin "1" (uuid 7a77dcf4-bb52-4591-a161-b61d0d0e16b8)) 2503 | ) 2504 | 2505 | (symbol (lib_id "power:GNDA") (at 166.37 147.32 0) (unit 1) 2506 | (in_bom yes) (on_board yes) (fields_autoplaced) 2507 | (uuid 5fee127e-0005-4d34-812a-a5a90f93c3d8) 2508 | (property "Reference" "#PWR0131" (id 0) (at 166.37 153.67 0) 2509 | (effects (font (size 1.27 1.27)) hide) 2510 | ) 2511 | (property "Value" "GNDA" (id 1) (at 166.37 151.8825 0)) 2512 | (property "Footprint" "" (id 2) (at 166.37 147.32 0) 2513 | (effects (font (size 1.27 1.27)) hide) 2514 | ) 2515 | (property "Datasheet" "" (id 3) (at 166.37 147.32 0) 2516 | (effects (font (size 1.27 1.27)) hide) 2517 | ) 2518 | (pin "1" (uuid 17853a82-5616-43f6-bb5e-f20b26a56115)) 2519 | ) 2520 | 2521 | (symbol (lib_id "Mechanical:MountingHole") (at 127 177.8 0) (unit 1) 2522 | (in_bom yes) (on_board yes) (fields_autoplaced) 2523 | (uuid 62d60b68-4a2c-45fa-9381-3b96c5c8596d) 2524 | (property "Reference" "H2" (id 0) (at 129.54 176.9653 0) 2525 | (effects (font (size 1.27 1.27)) (justify left)) 2526 | ) 2527 | (property "Value" "MountingHole" (id 1) (at 129.54 179.5022 0) 2528 | (effects (font (size 1.27 1.27)) (justify left)) 2529 | ) 2530 | (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (id 2) (at 127 177.8 0) 2531 | (effects (font (size 1.27 1.27)) hide) 2532 | ) 2533 | (property "Datasheet" "~" (id 3) (at 127 177.8 0) 2534 | (effects (font (size 1.27 1.27)) hide) 2535 | ) 2536 | ) 2537 | 2538 | (symbol (lib_id "power:VDD") (at 236.22 36.83 0) (unit 1) 2539 | (in_bom yes) (on_board yes) (fields_autoplaced) 2540 | (uuid 634dec91-418e-48b9-91c3-067202900897) 2541 | (property "Reference" "#PWR0103" (id 0) (at 236.22 40.64 0) 2542 | (effects (font (size 1.27 1.27)) hide) 2543 | ) 2544 | (property "Value" "VDD" (id 1) (at 236.22 33.2542 0)) 2545 | (property "Footprint" "" (id 2) (at 236.22 36.83 0) 2546 | (effects (font (size 1.27 1.27)) hide) 2547 | ) 2548 | (property "Datasheet" "" (id 3) (at 236.22 36.83 0) 2549 | (effects (font (size 1.27 1.27)) hide) 2550 | ) 2551 | (pin "1" (uuid 672ec637-e9e5-4373-bddc-24d85a1e7e1a)) 2552 | ) 2553 | 2554 | (symbol (lib_id "Connector:Screw_Terminal_01x01") (at 252.73 39.37 0) (unit 1) 2555 | (in_bom yes) (on_board yes) (fields_autoplaced) 2556 | (uuid 658e9404-3bcc-4882-83f2-3854413839d0) 2557 | (property "Reference" "J6" (id 0) (at 254.762 38.5353 0) 2558 | (effects (font (size 1.27 1.27)) (justify left)) 2559 | ) 2560 | (property "Value" "Screw_Terminal_01x01" (id 1) (at 254.762 41.0722 0) 2561 | (effects (font (size 1.27 1.27)) (justify left)) 2562 | ) 2563 | (property "Footprint" "MountingHole:MountingHole_4.3mm_M4_DIN965_Pad_TopBottom" (id 2) (at 252.73 39.37 0) 2564 | (effects (font (size 1.27 1.27)) hide) 2565 | ) 2566 | (property "Datasheet" "~" (id 3) (at 252.73 39.37 0) 2567 | (effects (font (size 1.27 1.27)) hide) 2568 | ) 2569 | (pin "1" (uuid 19cfafa9-d3b0-42f7-af01-7d9478141751)) 2570 | ) 2571 | 2572 | (symbol (lib_id "power:+5V") (at 213.36 116.84 0) (unit 1) 2573 | (in_bom yes) (on_board yes) (fields_autoplaced) 2574 | (uuid 66591b08-7273-4d8f-b9e5-32eb29b61896) 2575 | (property "Reference" "#PWR0114" (id 0) (at 213.36 120.65 0) 2576 | (effects (font (size 1.27 1.27)) hide) 2577 | ) 2578 | (property "Value" "+5V" (id 1) (at 213.36 113.2355 0)) 2579 | (property "Footprint" "" (id 2) (at 213.36 116.84 0) 2580 | (effects (font (size 1.27 1.27)) hide) 2581 | ) 2582 | (property "Datasheet" "" (id 3) (at 213.36 116.84 0) 2583 | (effects (font (size 1.27 1.27)) hide) 2584 | ) 2585 | (pin "1" (uuid 9abce74b-666a-4be8-bfba-b3297a873ec7)) 2586 | ) 2587 | 2588 | (symbol (lib_id "power:GND") (at 57.15 80.01 0) (unit 1) 2589 | (in_bom yes) (on_board yes) (fields_autoplaced) 2590 | (uuid 66a5e751-7c1f-450b-a5ea-344566104a89) 2591 | (property "Reference" "#PWR0128" (id 0) (at 57.15 86.36 0) 2592 | (effects (font (size 1.27 1.27)) hide) 2593 | ) 2594 | (property "Value" "GND" (id 1) (at 57.15 84.4534 0)) 2595 | (property "Footprint" "" (id 2) (at 57.15 80.01 0) 2596 | (effects (font (size 1.27 1.27)) hide) 2597 | ) 2598 | (property "Datasheet" "" (id 3) (at 57.15 80.01 0) 2599 | (effects (font (size 1.27 1.27)) hide) 2600 | ) 2601 | (pin "1" (uuid 3b450ffa-c35b-47ee-b8ab-089ed09928fb)) 2602 | ) 2603 | 2604 | (symbol (lib_id "power:VSS") (at 191.77 27.94 0) (unit 1) 2605 | (in_bom yes) (on_board yes) (fields_autoplaced) 2606 | (uuid 686d0fec-a77c-43b2-ba3f-1c63f09433f5) 2607 | (property "Reference" "#PWR0107" (id 0) (at 191.77 31.75 0) 2608 | (effects (font (size 1.27 1.27)) hide) 2609 | ) 2610 | (property "Value" "VSS" (id 1) (at 191.77 24.3642 0)) 2611 | (property "Footprint" "" (id 2) (at 191.77 27.94 0) 2612 | (effects (font (size 1.27 1.27)) hide) 2613 | ) 2614 | (property "Datasheet" "" (id 3) (at 191.77 27.94 0) 2615 | (effects (font (size 1.27 1.27)) hide) 2616 | ) 2617 | (pin "1" (uuid cd1a64da-5ee0-42cf-905e-7d285a94f5d3)) 2618 | ) 2619 | 2620 | (symbol (lib_id "power:GND") (at 123.19 64.77 270) (unit 1) 2621 | (in_bom yes) (on_board yes) (fields_autoplaced) 2622 | (uuid 6c560364-2968-4e45-ab03-5adb3bf175d5) 2623 | (property "Reference" "#PWR0111" (id 0) (at 116.84 64.77 0) 2624 | (effects (font (size 1.27 1.27)) hide) 2625 | ) 2626 | (property "Value" "GND" (id 1) (at 123.825 65.249 90) 2627 | (effects (font (size 1.27 1.27)) (justify left)) 2628 | ) 2629 | (property "Footprint" "" (id 2) (at 123.19 64.77 0) 2630 | (effects (font (size 1.27 1.27)) hide) 2631 | ) 2632 | (property "Datasheet" "" (id 3) (at 123.19 64.77 0) 2633 | (effects (font (size 1.27 1.27)) hide) 2634 | ) 2635 | (pin "1" (uuid b6518181-dbf7-496f-acc6-50a206d15e75)) 2636 | ) 2637 | 2638 | (symbol (lib_id "power:VDD") (at 39.37 102.87 0) (unit 1) 2639 | (in_bom yes) (on_board yes) (fields_autoplaced) 2640 | (uuid 6db372a4-2f3e-46e1-9494-79a8bf77fbb9) 2641 | (property "Reference" "#PWR0121" (id 0) (at 39.37 106.68 0) 2642 | (effects (font (size 1.27 1.27)) hide) 2643 | ) 2644 | (property "Value" "VDD" (id 1) (at 39.37 99.2942 0)) 2645 | (property "Footprint" "" (id 2) (at 39.37 102.87 0) 2646 | (effects (font (size 1.27 1.27)) hide) 2647 | ) 2648 | (property "Datasheet" "" (id 3) (at 39.37 102.87 0) 2649 | (effects (font (size 1.27 1.27)) hide) 2650 | ) 2651 | (pin "1" (uuid e8d2c5e4-669c-4a30-9a71-a19d7b9bf9c2)) 2652 | ) 2653 | 2654 | (symbol (lib_id "power:GND") (at 39.37 110.49 0) (unit 1) 2655 | (in_bom yes) (on_board yes) (fields_autoplaced) 2656 | (uuid 7440b328-ffca-4e74-893a-b4643110adce) 2657 | (property "Reference" "#PWR0125" (id 0) (at 39.37 116.84 0) 2658 | (effects (font (size 1.27 1.27)) hide) 2659 | ) 2660 | (property "Value" "GND" (id 1) (at 39.37 115.0525 0)) 2661 | (property "Footprint" "" (id 2) (at 39.37 110.49 0) 2662 | (effects (font (size 1.27 1.27)) hide) 2663 | ) 2664 | (property "Datasheet" "" (id 3) (at 39.37 110.49 0) 2665 | (effects (font (size 1.27 1.27)) hide) 2666 | ) 2667 | (pin "1" (uuid c67654c0-fa17-49d1-a27d-c8a1210b8556)) 2668 | ) 2669 | 2670 | (symbol (lib_id "Connector:Screw_Terminal_01x06") (at 252.73 111.76 0) (unit 1) 2671 | (in_bom yes) (on_board yes) (fields_autoplaced) 2672 | (uuid 75a11b59-583e-4a99-95e9-5981e1dd9b99) 2673 | (property "Reference" "J5" (id 0) (at 254.762 112.1215 0) 2674 | (effects (font (size 1.27 1.27)) (justify left)) 2675 | ) 2676 | (property "Value" "Screw_Terminal_01x06" (id 1) (at 254.762 114.8966 0) 2677 | (effects (font (size 1.27 1.27)) (justify left)) 2678 | ) 2679 | (property "Footprint" "TerminalBlock:TerminalBlock_bornier-6_P5.08mm" (id 2) (at 252.73 111.76 0) 2680 | (effects (font (size 1.27 1.27)) hide) 2681 | ) 2682 | (property "Datasheet" "~" (id 3) (at 252.73 111.76 0) 2683 | (effects (font (size 1.27 1.27)) hide) 2684 | ) 2685 | (pin "1" (uuid 15bc6c88-f87a-4ad8-994b-236705dd1bbf)) 2686 | (pin "2" (uuid c8a6ef24-41a3-4487-8172-55daa3308719)) 2687 | (pin "3" (uuid 7c079cdd-5d2f-499f-8c5b-280d901e425e)) 2688 | (pin "4" (uuid 7a3ce6f4-7eb5-453a-b479-e95deb533d24)) 2689 | (pin "5" (uuid 66becfff-6c72-4445-8813-3e8b109d2d96)) 2690 | (pin "6" (uuid 0dbc23ce-a90a-4181-9311-0dc972721fe4)) 2691 | ) 2692 | 2693 | (symbol (lib_id "Device:C") (at 132.08 40.64 0) (unit 1) 2694 | (in_bom yes) (on_board yes) 2695 | (uuid 7b30e56f-2c67-40dc-8a4b-ab00d6cc2343) 2696 | (property "Reference" "C1" (id 0) (at 135.001 39.7315 0) 2697 | (effects (font (size 1.27 1.27)) (justify left)) 2698 | ) 2699 | (property "Value" "0" (id 1) (at 135.001 42.5066 0) 2700 | (effects (font (size 1.27 1.27)) (justify left)) 2701 | ) 2702 | (property "Footprint" "" (id 2) (at 133.0452 44.45 0) 2703 | (effects (font (size 1.27 1.27)) hide) 2704 | ) 2705 | (property "Datasheet" "~" (id 3) (at 132.08 40.64 0) 2706 | (effects (font (size 1.27 1.27)) hide) 2707 | ) 2708 | (pin "1" (uuid 70a54642-0307-4768-8fbd-50738b6002c6)) 2709 | (pin "2" (uuid 42da38c4-9cb2-4e76-9b18-94f89b5d7a8f)) 2710 | ) 2711 | 2712 | (symbol (lib_id "Device:LED") (at 73.66 57.15 90) (unit 1) 2713 | (in_bom yes) (on_board yes) (fields_autoplaced) 2714 | (uuid 7b845be9-8db7-4895-acf5-afd13d934940) 2715 | (property "Reference" "D3" (id 0) (at 76.581 57.829 90) 2716 | (effects (font (size 1.27 1.27)) (justify right)) 2717 | ) 2718 | (property "Value" "LED_RED" (id 1) (at 76.581 60.6041 90) 2719 | (effects (font (size 1.27 1.27)) (justify right)) 2720 | ) 2721 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 73.66 57.15 0) 2722 | (effects (font (size 1.27 1.27)) hide) 2723 | ) 2724 | (property "Datasheet" "~" (id 3) (at 73.66 57.15 0) 2725 | (effects (font (size 1.27 1.27)) hide) 2726 | ) 2727 | (pin "1" (uuid 9215c391-c1b0-4f4f-b404-ec1cb7983411)) 2728 | (pin "2" (uuid fe07270a-f994-4011-870f-2f3e8b803ae5)) 2729 | ) 2730 | 2731 | (symbol (lib_id "Device:NetTie_2") (at 172.72 143.51 0) (unit 1) 2732 | (in_bom yes) (on_board yes) (fields_autoplaced) 2733 | (uuid 7d2dbaed-6d02-4841-881c-ebebe5317ae0) 2734 | (property "Reference" "NT1" (id 0) (at 172.72 139.5435 0)) 2735 | (property "Value" "NetTie_2" (id 1) (at 172.72 142.3186 0)) 2736 | (property "Footprint" "NetTie:NetTie-2_SMD_Pad0.5mm" (id 2) (at 172.72 143.51 0) 2737 | (effects (font (size 1.27 1.27)) hide) 2738 | ) 2739 | (property "Datasheet" "~" (id 3) (at 172.72 143.51 0) 2740 | (effects (font (size 1.27 1.27)) hide) 2741 | ) 2742 | (pin "1" (uuid ecf885dc-805e-4a5b-ada4-870d79810dc5)) 2743 | (pin "2" (uuid 9632ed6a-506f-4b30-970b-41c4bbae09f7)) 2744 | ) 2745 | 2746 | (symbol (lib_id "Device:C") (at 175.26 40.64 0) (unit 1) 2747 | (in_bom yes) (on_board yes) 2748 | (uuid 7f088750-04ef-49c2-9c6b-a8c381692bfa) 2749 | (property "Reference" "C9" (id 0) (at 178.181 39.7315 0) 2750 | (effects (font (size 1.27 1.27)) (justify left)) 2751 | ) 2752 | (property "Value" "2.2uF 75V" (id 1) (at 178.181 42.5066 0) 2753 | (effects (font (size 1.27 1.27)) (justify left)) 2754 | ) 2755 | (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (id 2) (at 176.2252 44.45 0) 2756 | (effects (font (size 1.27 1.27)) hide) 2757 | ) 2758 | (property "Datasheet" "~" (id 3) (at 175.26 40.64 0) 2759 | (effects (font (size 1.27 1.27)) hide) 2760 | ) 2761 | (pin "1" (uuid 86b3ecc5-4919-498e-a5fc-2c1b3a23f15b)) 2762 | (pin "2" (uuid 7f8e45dc-badb-4836-a0e7-93baf76d8db5)) 2763 | ) 2764 | 2765 | (symbol (lib_id "Movr:ΜΑΧ17504") (at 146.05 119.38 0) (unit 1) 2766 | (in_bom yes) (on_board yes) (fields_autoplaced) 2767 | (uuid 80cdf499-6199-4466-9c10-facc138ea768) 2768 | (property "Reference" "U1" (id 0) (at 146.05 96.3405 0)) 2769 | (property "Value" "ΜΑΧ17504" (id 1) (at 146.05 99.1156 0)) 2770 | (property "Footprint" "Movr:MAX17504" (id 2) (at 146.05 100.33 0) 2771 | (effects (font (size 1.27 1.27)) hide) 2772 | ) 2773 | (property "Datasheet" "" (id 3) (at 146.05 100.33 0) 2774 | (effects (font (size 1.27 1.27)) hide) 2775 | ) 2776 | (pin "1" (uuid 5173b488-ed41-4852-aee2-ce7e3e3791ef)) 2777 | (pin "10" (uuid 4d8089d1-c9d7-4a85-9e25-810c208664b8)) 2778 | (pin "11" (uuid 5075d71f-066d-4a7a-8a0f-a6c45adaff10)) 2779 | (pin "12" (uuid d7e8a2b4-a99c-468e-a68e-1d4cc507d4fa)) 2780 | (pin "13" (uuid 94bebe52-5fee-43b1-9dc8-8e4badc8fc6d)) 2781 | (pin "14" (uuid 8f323551-ff3a-470c-a40e-450bd5430f54)) 2782 | (pin "17" (uuid 2d02da8f-0681-48d3-b901-db3fe4542545)) 2783 | (pin "20" (uuid 7fe9fc89-d473-4e46-8977-04c3db05a1d8)) 2784 | (pin "4" (uuid 0de0b66f-0596-4701-8402-8035224e328b)) 2785 | (pin "5" (uuid 15ed4ae8-dc9e-48b7-98c5-b56a67c0f0db)) 2786 | (pin "6" (uuid 1b065f33-0b1e-4247-8ff4-07f80ce63c59)) 2787 | (pin "7" (uuid 784232a4-523d-4f0f-a4cb-ceb9ffd5effe)) 2788 | (pin "8" (uuid 9b0a1b5d-3ad9-4019-bc6a-a3169112ca9e)) 2789 | (pin "9" (uuid f9dae3a7-433a-4a67-a3ae-7f4505a6aa40)) 2790 | ) 2791 | 2792 | (symbol (lib_id "Device:R") (at 57.15 36.195 0) (unit 1) 2793 | (in_bom yes) (on_board yes) (fields_autoplaced) 2794 | (uuid 83bd42fa-eba4-44f1-953a-bd8e419d6b11) 2795 | (property "Reference" "R3" (id 0) (at 58.928 35.3603 0) 2796 | (effects (font (size 1.27 1.27)) (justify left)) 2797 | ) 2798 | (property "Value" "22k" (id 1) (at 58.928 37.8972 0) 2799 | (effects (font (size 1.27 1.27)) (justify left)) 2800 | ) 2801 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 55.372 36.195 90) 2802 | (effects (font (size 1.27 1.27)) hide) 2803 | ) 2804 | (property "Datasheet" "~" (id 3) (at 57.15 36.195 0) 2805 | (effects (font (size 1.27 1.27)) hide) 2806 | ) 2807 | (pin "1" (uuid 288279e9-c09b-4639-b5bb-3c3793febf3d)) 2808 | (pin "2" (uuid a658dd08-ea6d-40cd-abfe-9af6c32e96aa)) 2809 | ) 2810 | 2811 | (symbol (lib_id "power:GND") (at 179.07 147.32 0) (unit 1) 2812 | (in_bom yes) (on_board yes) (fields_autoplaced) 2813 | (uuid 83f54a0b-2221-4c34-b22d-819c9428701f) 2814 | (property "Reference" "#PWR0132" (id 0) (at 179.07 153.67 0) 2815 | (effects (font (size 1.27 1.27)) hide) 2816 | ) 2817 | (property "Value" "GND" (id 1) (at 179.07 151.8825 0)) 2818 | (property "Footprint" "" (id 2) (at 179.07 147.32 0) 2819 | (effects (font (size 1.27 1.27)) hide) 2820 | ) 2821 | (property "Datasheet" "" (id 3) (at 179.07 147.32 0) 2822 | (effects (font (size 1.27 1.27)) hide) 2823 | ) 2824 | (pin "1" (uuid a2081b1f-f33f-424b-949e-cc8b5e3ef74d)) 2825 | ) 2826 | 2827 | (symbol (lib_id "Mechanical:MountingHole") (at 127 171.45 0) (unit 1) 2828 | (in_bom yes) (on_board yes) (fields_autoplaced) 2829 | (uuid 85bac15c-b1ac-4ae5-9171-99f36a2b5272) 2830 | (property "Reference" "H1" (id 0) (at 129.54 170.6153 0) 2831 | (effects (font (size 1.27 1.27)) (justify left)) 2832 | ) 2833 | (property "Value" "MountingHole" (id 1) (at 129.54 173.1522 0) 2834 | (effects (font (size 1.27 1.27)) (justify left)) 2835 | ) 2836 | (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (id 2) (at 127 171.45 0) 2837 | (effects (font (size 1.27 1.27)) hide) 2838 | ) 2839 | (property "Datasheet" "~" (id 3) (at 127 171.45 0) 2840 | (effects (font (size 1.27 1.27)) hide) 2841 | ) 2842 | ) 2843 | 2844 | (symbol (lib_id "power:GND") (at 132.08 44.45 0) (unit 1) 2845 | (in_bom yes) (on_board yes) (fields_autoplaced) 2846 | (uuid 87a8c98f-0b8b-4d3f-8688-a7d7594c81dd) 2847 | (property "Reference" "#PWR0109" (id 0) (at 132.08 50.8 0) 2848 | (effects (font (size 1.27 1.27)) hide) 2849 | ) 2850 | (property "Value" "GND" (id 1) (at 132.08 49.0125 0)) 2851 | (property "Footprint" "" (id 2) (at 132.08 44.45 0) 2852 | (effects (font (size 1.27 1.27)) hide) 2853 | ) 2854 | (property "Datasheet" "" (id 3) (at 132.08 44.45 0) 2855 | (effects (font (size 1.27 1.27)) hide) 2856 | ) 2857 | (pin "1" (uuid 7222465a-e229-4fed-9170-6e5b7183ba6c)) 2858 | ) 2859 | 2860 | (symbol (lib_id "Device:LED") (at 57.15 57.15 90) (unit 1) 2861 | (in_bom yes) (on_board yes) (fields_autoplaced) 2862 | (uuid 88669cb8-770f-410f-affd-bd254113db5a) 2863 | (property "Reference" "D2" (id 0) (at 60.071 57.9028 90) 2864 | (effects (font (size 1.27 1.27)) (justify right)) 2865 | ) 2866 | (property "Value" "LED_WHITE" (id 1) (at 60.071 60.4397 90) 2867 | (effects (font (size 1.27 1.27)) (justify right)) 2868 | ) 2869 | (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 57.15 57.15 0) 2870 | (effects (font (size 1.27 1.27)) hide) 2871 | ) 2872 | (property "Datasheet" "~" (id 3) (at 57.15 57.15 0) 2873 | (effects (font (size 1.27 1.27)) hide) 2874 | ) 2875 | (pin "1" (uuid 2e200155-c727-450b-9011-2a2ec4124ec3)) 2876 | (pin "2" (uuid f290ef6e-0bf9-4715-839b-12489d871032)) 2877 | ) 2878 | 2879 | (symbol (lib_id "power:GND") (at 242.57 142.24 0) (unit 1) 2880 | (in_bom yes) (on_board yes) (fields_autoplaced) 2881 | (uuid 8b0a9ed8-5ba6-45c5-8ccc-d001aebbcd7a) 2882 | (property "Reference" "#PWR0108" (id 0) (at 242.57 148.59 0) 2883 | (effects (font (size 1.27 1.27)) hide) 2884 | ) 2885 | (property "Value" "GND" (id 1) (at 242.57 146.6834 0)) 2886 | (property "Footprint" "" (id 2) (at 242.57 142.24 0) 2887 | (effects (font (size 1.27 1.27)) hide) 2888 | ) 2889 | (property "Datasheet" "" (id 3) (at 242.57 142.24 0) 2890 | (effects (font (size 1.27 1.27)) hide) 2891 | ) 2892 | (pin "1" (uuid e7a83e24-e1f6-4cb2-b598-807dc6808406)) 2893 | ) 2894 | 2895 | (symbol (lib_id "Device:R") (at 140.97 36.83 0) (unit 1) 2896 | (in_bom yes) (on_board yes) (fields_autoplaced) 2897 | (uuid 8c6674af-d3a2-4048-850f-b0b4984b73c2) 2898 | (property "Reference" "R5" (id 0) (at 142.748 35.9215 0) 2899 | (effects (font (size 1.27 1.27)) (justify left)) 2900 | ) 2901 | (property "Value" "5.1k" (id 1) (at 142.748 38.6966 0) 2902 | (effects (font (size 1.27 1.27)) (justify left)) 2903 | ) 2904 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 139.192 36.83 90) 2905 | (effects (font (size 1.27 1.27)) hide) 2906 | ) 2907 | (property "Datasheet" "~" (id 3) (at 140.97 36.83 0) 2908 | (effects (font (size 1.27 1.27)) hide) 2909 | ) 2910 | (pin "1" (uuid 77a5eb29-dc49-44b3-85c7-e3e04280a8be)) 2911 | (pin "2" (uuid ee2fc0a3-868e-4f3f-8677-8e79619f2385)) 2912 | ) 2913 | 2914 | (symbol (lib_id "Device:R") (at 68.58 148.59 0) (unit 1) 2915 | (in_bom yes) (on_board yes) (fields_autoplaced) 2916 | (uuid 908063c2-0d27-44d4-865c-7c15b36c6c4f) 2917 | (property "Reference" "R6" (id 0) (at 70.358 147.6815 0) 2918 | (effects (font (size 1.27 1.27)) (justify left)) 2919 | ) 2920 | (property "Value" "5.1k" (id 1) (at 70.358 150.4566 0) 2921 | (effects (font (size 1.27 1.27)) (justify left)) 2922 | ) 2923 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 66.802 148.59 90) 2924 | (effects (font (size 1.27 1.27)) hide) 2925 | ) 2926 | (property "Datasheet" "~" (id 3) (at 68.58 148.59 0) 2927 | (effects (font (size 1.27 1.27)) hide) 2928 | ) 2929 | (pin "1" (uuid 248abe81-7e1e-4a2a-b26a-de7e545c6bca)) 2930 | (pin "2" (uuid b809517a-3044-431b-904a-1ca594300831)) 2931 | ) 2932 | 2933 | (symbol (lib_id "Device:C") (at 165.1 64.77 90) (unit 1) 2934 | (in_bom yes) (on_board yes) 2935 | (uuid 94b58eab-8e97-4429-a4bb-5f2a30053b85) 2936 | (property "Reference" "C8" (id 0) (at 164.1915 61.849 0) 2937 | (effects (font (size 1.27 1.27)) (justify left)) 2938 | ) 2939 | (property "Value" "2.2uF 10V" (id 1) (at 166.9666 61.849 0) 2940 | (effects (font (size 1.27 1.27)) (justify left)) 2941 | ) 2942 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 168.91 63.8048 0) 2943 | (effects (font (size 1.27 1.27)) hide) 2944 | ) 2945 | (property "Datasheet" "~" (id 3) (at 165.1 64.77 0) 2946 | (effects (font (size 1.27 1.27)) hide) 2947 | ) 2948 | (pin "1" (uuid 1812424e-b06f-4214-94a9-a5add449896a)) 2949 | (pin "2" (uuid fae9557d-24ce-43e8-9d52-bfb7a3cb795e)) 2950 | ) 2951 | 2952 | (symbol (lib_id "power:GND") (at 176.53 125.73 0) (unit 1) 2953 | (in_bom yes) (on_board yes) (fields_autoplaced) 2954 | (uuid 9939ebda-c4a8-4a1d-8c3d-f4c55cd8270c) 2955 | (property "Reference" "#PWR0112" (id 0) (at 176.53 132.08 0) 2956 | (effects (font (size 1.27 1.27)) hide) 2957 | ) 2958 | (property "Value" "GND" (id 1) (at 176.53 130.2925 0)) 2959 | (property "Footprint" "" (id 2) (at 176.53 125.73 0) 2960 | (effects (font (size 1.27 1.27)) hide) 2961 | ) 2962 | (property "Datasheet" "" (id 3) (at 176.53 125.73 0) 2963 | (effects (font (size 1.27 1.27)) hide) 2964 | ) 2965 | (pin "1" (uuid 376639f7-2a92-4324-99b6-25728bdd1a8c)) 2966 | ) 2967 | 2968 | (symbol (lib_id "Connector:Screw_Terminal_01x06") (at 252.73 78.74 0) (unit 1) 2969 | (in_bom yes) (on_board yes) (fields_autoplaced) 2970 | (uuid 9aa4051b-5d8e-420b-bd92-028862775303) 2971 | (property "Reference" "J1" (id 0) (at 254.762 79.1015 0) 2972 | (effects (font (size 1.27 1.27)) (justify left)) 2973 | ) 2974 | (property "Value" "Screw_Terminal_01x06" (id 1) (at 254.762 81.8766 0) 2975 | (effects (font (size 1.27 1.27)) (justify left)) 2976 | ) 2977 | (property "Footprint" "TerminalBlock:TerminalBlock_bornier-6_P5.08mm" (id 2) (at 252.73 78.74 0) 2978 | (effects (font (size 1.27 1.27)) hide) 2979 | ) 2980 | (property "Datasheet" "~" (id 3) (at 252.73 78.74 0) 2981 | (effects (font (size 1.27 1.27)) hide) 2982 | ) 2983 | (pin "1" (uuid ca9b4264-1527-4eb9-9c4a-0f8f3219656b)) 2984 | (pin "2" (uuid dd7274bb-36be-4baa-903e-939c1f1b99f6)) 2985 | (pin "3" (uuid a277cb94-54f4-4201-9b19-13124e8120b4)) 2986 | (pin "4" (uuid 2d9bce5f-b18b-47a2-9654-99086bc7c8ca)) 2987 | (pin "5" (uuid 5cfef867-dff5-4abc-9cf1-6fa8f45eaef2)) 2988 | (pin "6" (uuid c6f64293-5e29-4afa-8644-d8f9ea3d34e8)) 2989 | ) 2990 | 2991 | (symbol (lib_id "power:PWR_FLAG") (at 46.99 133.35 0) (unit 1) 2992 | (in_bom yes) (on_board yes) (fields_autoplaced) 2993 | (uuid 9de90143-f22e-4e2c-ad54-61db66cd788d) 2994 | (property "Reference" "#FLG0103" (id 0) (at 46.99 131.445 0) 2995 | (effects (font (size 1.27 1.27)) hide) 2996 | ) 2997 | (property "Value" "PWR_FLAG" (id 1) (at 46.99 129.7455 0)) 2998 | (property "Footprint" "" (id 2) (at 46.99 133.35 0) 2999 | (effects (font (size 1.27 1.27)) hide) 3000 | ) 3001 | (property "Datasheet" "~" (id 3) (at 46.99 133.35 0) 3002 | (effects (font (size 1.27 1.27)) hide) 3003 | ) 3004 | (pin "1" (uuid 9d966373-5286-4f8c-b9c5-7ffb5c5ccec3)) 3005 | ) 3006 | 3007 | (symbol (lib_id "Device:C") (at 176.53 120.65 0) (unit 1) 3008 | (in_bom yes) (on_board yes) 3009 | (uuid a276e073-6b12-410e-a2bf-6fa42f7eb934) 3010 | (property "Reference" "C7" (id 0) (at 179.451 119.7415 0) 3011 | (effects (font (size 1.27 1.27)) (justify left)) 3012 | ) 3013 | (property "Value" "22uF 10V" (id 1) (at 179.451 122.5166 0) 3014 | (effects (font (size 1.27 1.27)) (justify left)) 3015 | ) 3016 | (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (id 2) (at 177.4952 124.46 0) 3017 | (effects (font (size 1.27 1.27)) hide) 3018 | ) 3019 | (property "Datasheet" "~" (id 3) (at 176.53 120.65 0) 3020 | (effects (font (size 1.27 1.27)) hide) 3021 | ) 3022 | (pin "1" (uuid 0b5f9a28-defb-4ac3-861b-c16939b3d75d)) 3023 | (pin "2" (uuid 584128a0-22e1-4b36-8ba6-36509a47af42)) 3024 | ) 3025 | 3026 | (symbol (lib_id "Connector:Screw_Terminal_01x01") (at 252.73 47.625 0) (unit 1) 3027 | (in_bom yes) (on_board yes) (fields_autoplaced) 3028 | (uuid a633eaf7-668c-4152-b7d6-93137db04225) 3029 | (property "Reference" "J7" (id 0) (at 254.762 46.7903 0) 3030 | (effects (font (size 1.27 1.27)) (justify left)) 3031 | ) 3032 | (property "Value" "Screw_Terminal_01x01" (id 1) (at 254.762 49.3272 0) 3033 | (effects (font (size 1.27 1.27)) (justify left)) 3034 | ) 3035 | (property "Footprint" "MountingHole:MountingHole_4.3mm_M4_DIN965_Pad_TopBottom" (id 2) (at 252.73 47.625 0) 3036 | (effects (font (size 1.27 1.27)) hide) 3037 | ) 3038 | (property "Datasheet" "~" (id 3) (at 252.73 47.625 0) 3039 | (effects (font (size 1.27 1.27)) hide) 3040 | ) 3041 | (pin "1" (uuid f791ed19-1481-4f15-aa18-9ab4726e294a)) 3042 | ) 3043 | 3044 | (symbol (lib_id "Device:R") (at 123.19 78.74 0) (unit 1) 3045 | (in_bom yes) (on_board yes) (fields_autoplaced) 3046 | (uuid aa144cb2-799a-4e31-a6ec-06aebf4c28b7) 3047 | (property "Reference" "R8" (id 0) (at 124.968 77.8315 0) 3048 | (effects (font (size 1.27 1.27)) (justify left)) 3049 | ) 3050 | (property "Value" "47k" (id 1) (at 124.968 80.6066 0) 3051 | (effects (font (size 1.27 1.27)) (justify left)) 3052 | ) 3053 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 121.412 78.74 90) 3054 | (effects (font (size 1.27 1.27)) hide) 3055 | ) 3056 | (property "Datasheet" "~" (id 3) (at 123.19 78.74 0) 3057 | (effects (font (size 1.27 1.27)) hide) 3058 | ) 3059 | (pin "1" (uuid aaea0085-da98-4784-a12a-c80db0070faa)) 3060 | (pin "2" (uuid 25051765-6ba0-46b2-8ad7-9f2e75da1aac)) 3061 | ) 3062 | 3063 | (symbol (lib_id "power:VSS") (at 240.03 36.83 0) (unit 1) 3064 | (in_bom yes) (on_board yes) (fields_autoplaced) 3065 | (uuid ab7aac14-cb91-4a64-9c07-bf0d184d69e5) 3066 | (property "Reference" "#PWR0104" (id 0) (at 240.03 40.64 0) 3067 | (effects (font (size 1.27 1.27)) hide) 3068 | ) 3069 | (property "Value" "VSS" (id 1) (at 240.03 33.2542 0)) 3070 | (property "Footprint" "" (id 2) (at 240.03 36.83 0) 3071 | (effects (font (size 1.27 1.27)) hide) 3072 | ) 3073 | (property "Datasheet" "" (id 3) (at 240.03 36.83 0) 3074 | (effects (font (size 1.27 1.27)) hide) 3075 | ) 3076 | (pin "1" (uuid e4ccd4a2-fa03-433c-b8ef-f1f55d14f4dc)) 3077 | ) 3078 | 3079 | (symbol (lib_id "Device:C") (at 162.56 110.49 0) (unit 1) 3080 | (in_bom yes) (on_board yes) 3081 | (uuid ad6f6083-6a5f-4e78-9132-4d6e334f6815) 3082 | (property "Reference" "C6" (id 0) (at 165.481 109.5815 0) 3083 | (effects (font (size 1.27 1.27)) (justify left)) 3084 | ) 3085 | (property "Value" "0.1uF 75V" (id 1) (at 165.481 112.3566 0) 3086 | (effects (font (size 1.27 1.27)) (justify left)) 3087 | ) 3088 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 163.5252 114.3 0) 3089 | (effects (font (size 1.27 1.27)) hide) 3090 | ) 3091 | (property "Datasheet" "~" (id 3) (at 162.56 110.49 0) 3092 | (effects (font (size 1.27 1.27)) hide) 3093 | ) 3094 | (pin "1" (uuid 85a11978-f906-405c-8bb9-3fa98c98d071)) 3095 | (pin "2" (uuid f3926f52-d499-420f-aa33-9325872cae5a)) 3096 | ) 3097 | 3098 | (symbol (lib_id "Connector:Conn_01x02_Male") (at 93.98 149.86 180) (unit 1) 3099 | (in_bom yes) (on_board yes) (fields_autoplaced) 3100 | (uuid ae9838ba-2813-4172-b7f5-5eec3bb8901c) 3101 | (property "Reference" "J3" (id 0) (at 94.6912 147.6815 0) 3102 | (effects (font (size 1.27 1.27)) (justify right)) 3103 | ) 3104 | (property "Value" "Conn_01x02_Male" (id 1) (at 94.6912 150.4566 0) 3105 | (effects (font (size 1.27 1.27)) (justify right)) 3106 | ) 3107 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 93.98 149.86 0) 3108 | (effects (font (size 1.27 1.27)) hide) 3109 | ) 3110 | (property "Datasheet" "~" (id 3) (at 93.98 149.86 0) 3111 | (effects (font (size 1.27 1.27)) hide) 3112 | ) 3113 | (pin "1" (uuid 79395739-5b58-4aae-aef4-d23a7b2201c1)) 3114 | (pin "2" (uuid 864830c7-6e74-464c-9714-07feda4a225a)) 3115 | ) 3116 | 3117 | (symbol (lib_id "power:VDD") (at 101.6 102.87 0) (unit 1) 3118 | (in_bom yes) (on_board yes) (fields_autoplaced) 3119 | (uuid b12f5c65-7662-47d5-aa17-6bcd130ce62b) 3120 | (property "Reference" "#PWR0120" (id 0) (at 101.6 106.68 0) 3121 | (effects (font (size 1.27 1.27)) hide) 3122 | ) 3123 | (property "Value" "VDD" (id 1) (at 101.6 99.2942 0)) 3124 | (property "Footprint" "" (id 2) (at 101.6 102.87 0) 3125 | (effects (font (size 1.27 1.27)) hide) 3126 | ) 3127 | (property "Datasheet" "" (id 3) (at 101.6 102.87 0) 3128 | (effects (font (size 1.27 1.27)) hide) 3129 | ) 3130 | (pin "1" (uuid 6969aefb-4355-42d1-a7c7-0554a8db4101)) 3131 | ) 3132 | 3133 | (symbol (lib_id "power:+5V") (at 43.18 30.48 0) (unit 1) 3134 | (in_bom yes) (on_board yes) (fields_autoplaced) 3135 | (uuid b443c02a-620d-4cce-8478-a650230f8b8d) 3136 | (property "Reference" "#PWR0126" (id 0) (at 43.18 34.29 0) 3137 | (effects (font (size 1.27 1.27)) hide) 3138 | ) 3139 | (property "Value" "+5V" (id 1) (at 43.18 26.9042 0)) 3140 | (property "Footprint" "" (id 2) (at 43.18 30.48 0) 3141 | (effects (font (size 1.27 1.27)) hide) 3142 | ) 3143 | (property "Datasheet" "" (id 3) (at 43.18 30.48 0) 3144 | (effects (font (size 1.27 1.27)) hide) 3145 | ) 3146 | (pin "1" (uuid df580e53-8b37-4050-b01c-e596165b3b31)) 3147 | ) 3148 | 3149 | (symbol (lib_id "Device:R") (at 43.18 36.195 0) (unit 1) 3150 | (in_bom yes) (on_board yes) (fields_autoplaced) 3151 | (uuid b5b7cce0-fc96-4ce6-911a-c879226db90f) 3152 | (property "Reference" "R1" (id 0) (at 44.958 35.3603 0) 3153 | (effects (font (size 1.27 1.27)) (justify left)) 3154 | ) 3155 | (property "Value" "2k" (id 1) (at 44.958 37.8972 0) 3156 | (effects (font (size 1.27 1.27)) (justify left)) 3157 | ) 3158 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 41.402 36.195 90) 3159 | (effects (font (size 1.27 1.27)) hide) 3160 | ) 3161 | (property "Datasheet" "~" (id 3) (at 43.18 36.195 0) 3162 | (effects (font (size 1.27 1.27)) hide) 3163 | ) 3164 | (pin "1" (uuid 632e0a90-a8e8-47b5-a950-0299c40e6ee6)) 3165 | (pin "2" (uuid 66e147f5-da06-45c2-8092-5e1635bec954)) 3166 | ) 3167 | 3168 | (symbol (lib_id "power:GNDA") (at 207.01 142.24 0) (unit 1) 3169 | (in_bom yes) (on_board yes) (fields_autoplaced) 3170 | (uuid b8dfc180-b822-46c5-bb86-ad467bfbe5e3) 3171 | (property "Reference" "#PWR0115" (id 0) (at 207.01 148.59 0) 3172 | (effects (font (size 1.27 1.27)) hide) 3173 | ) 3174 | (property "Value" "GNDA" (id 1) (at 207.01 146.8025 0)) 3175 | (property "Footprint" "" (id 2) (at 207.01 142.24 0) 3176 | (effects (font (size 1.27 1.27)) hide) 3177 | ) 3178 | (property "Datasheet" "" (id 3) (at 207.01 142.24 0) 3179 | (effects (font (size 1.27 1.27)) hide) 3180 | ) 3181 | (pin "1" (uuid 3f30707b-a272-495d-98f9-2df01ad0222c)) 3182 | ) 3183 | 3184 | (symbol (lib_id "power:GND") (at 175.26 44.45 0) (unit 1) 3185 | (in_bom yes) (on_board yes) (fields_autoplaced) 3186 | (uuid bac120cd-1976-4c66-8cdc-9a863814d0a0) 3187 | (property "Reference" "#PWR0105" (id 0) (at 175.26 50.8 0) 3188 | (effects (font (size 1.27 1.27)) hide) 3189 | ) 3190 | (property "Value" "GND" (id 1) (at 175.26 49.0125 0)) 3191 | (property "Footprint" "" (id 2) (at 175.26 44.45 0) 3192 | (effects (font (size 1.27 1.27)) hide) 3193 | ) 3194 | (property "Datasheet" "" (id 3) (at 175.26 44.45 0) 3195 | (effects (font (size 1.27 1.27)) hide) 3196 | ) 3197 | (pin "1" (uuid 423a2c32-7422-4f6e-83a8-944ded4ab90c)) 3198 | ) 3199 | 3200 | (symbol (lib_id "power:VSS") (at 57.15 30.48 0) (unit 1) 3201 | (in_bom yes) (on_board yes) (fields_autoplaced) 3202 | (uuid bae2a06d-542d-48c2-87fa-8cae756447d0) 3203 | (property "Reference" "#PWR0127" (id 0) (at 57.15 34.29 0) 3204 | (effects (font (size 1.27 1.27)) hide) 3205 | ) 3206 | (property "Value" "VSS" (id 1) (at 57.15 26.9042 0)) 3207 | (property "Footprint" "" (id 2) (at 57.15 30.48 0) 3208 | (effects (font (size 1.27 1.27)) hide) 3209 | ) 3210 | (property "Datasheet" "" (id 3) (at 57.15 30.48 0) 3211 | (effects (font (size 1.27 1.27)) hide) 3212 | ) 3213 | (pin "1" (uuid 07144382-3e4a-480d-9895-efe85421034b)) 3214 | ) 3215 | 3216 | (symbol (lib_id "Device:R") (at 207.01 120.65 0) (unit 1) 3217 | (in_bom yes) (on_board yes) (fields_autoplaced) 3218 | (uuid bb2b9440-6d30-4a85-9e94-023ffbe375de) 3219 | (property "Reference" "R2" (id 0) (at 208.788 119.7415 0) 3220 | (effects (font (size 1.27 1.27)) (justify left)) 3221 | ) 3222 | (property "Value" "115k" (id 1) (at 208.788 122.5166 0) 3223 | (effects (font (size 1.27 1.27)) (justify left)) 3224 | ) 3225 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 205.232 120.65 90) 3226 | (effects (font (size 1.27 1.27)) hide) 3227 | ) 3228 | (property "Datasheet" "~" (id 3) (at 207.01 120.65 0) 3229 | (effects (font (size 1.27 1.27)) hide) 3230 | ) 3231 | (pin "1" (uuid edfe95a0-6d66-416a-8e4a-3ea4309da44f)) 3232 | (pin "2" (uuid 9ade2c1e-f27a-4e10-b1ed-774e547069b6)) 3233 | ) 3234 | 3235 | (symbol (lib_id "power:GND") (at 158.75 44.45 0) (unit 1) 3236 | (in_bom yes) (on_board yes) (fields_autoplaced) 3237 | (uuid bcaf7fd5-bbeb-4d3e-bdfb-8e8d362e0e9d) 3238 | (property "Reference" "#PWR0102" (id 0) (at 158.75 50.8 0) 3239 | (effects (font (size 1.27 1.27)) hide) 3240 | ) 3241 | (property "Value" "GND" (id 1) (at 158.75 49.0125 0)) 3242 | (property "Footprint" "" (id 2) (at 158.75 44.45 0) 3243 | (effects (font (size 1.27 1.27)) hide) 3244 | ) 3245 | (property "Datasheet" "" (id 3) (at 158.75 44.45 0) 3246 | (effects (font (size 1.27 1.27)) hide) 3247 | ) 3248 | (pin "1" (uuid b1c73ef3-e4b1-4a78-8358-134c53ef776e)) 3249 | ) 3250 | 3251 | (symbol (lib_id "Device:R") (at 125.73 128.27 90) (unit 1) 3252 | (in_bom yes) (on_board yes) (fields_autoplaced) 3253 | (uuid bdfefa7a-0765-4d6a-9dca-a8458b4d1222) 3254 | (property "Reference" "R10" (id 0) (at 125.73 123.2875 90)) 3255 | (property "Value" "19.1k" (id 1) (at 125.73 126.0626 90)) 3256 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 125.73 130.048 90) 3257 | (effects (font (size 1.27 1.27)) hide) 3258 | ) 3259 | (property "Datasheet" "~" (id 3) (at 125.73 128.27 0) 3260 | (effects (font (size 1.27 1.27)) hide) 3261 | ) 3262 | (pin "1" (uuid b21a5062-3ac3-4c20-9fc7-159eec724e20)) 3263 | (pin "2" (uuid 0fa516b9-0362-4b2d-a91c-bf96ff49a282)) 3264 | ) 3265 | 3266 | (symbol (lib_id "power:GNDA") (at 143.51 149.86 0) (unit 1) 3267 | (in_bom yes) (on_board yes) (fields_autoplaced) 3268 | (uuid c05cbcfd-82ab-481b-8613-0f6d72504dab) 3269 | (property "Reference" "#PWR0117" (id 0) (at 143.51 156.21 0) 3270 | (effects (font (size 1.27 1.27)) hide) 3271 | ) 3272 | (property "Value" "GNDA" (id 1) (at 143.51 154.4225 0)) 3273 | (property "Footprint" "" (id 2) (at 143.51 149.86 0) 3274 | (effects (font (size 1.27 1.27)) hide) 3275 | ) 3276 | (property "Datasheet" "" (id 3) (at 143.51 149.86 0) 3277 | (effects (font (size 1.27 1.27)) hide) 3278 | ) 3279 | (pin "1" (uuid 3ddf4446-abe9-410b-949a-b2a26fc71f1d)) 3280 | ) 3281 | 3282 | (symbol (lib_id "power:VSS") (at 39.37 92.71 0) (unit 1) 3283 | (in_bom yes) (on_board yes) (fields_autoplaced) 3284 | (uuid c38223f3-b17a-4358-aa1f-3b903ba0dad3) 3285 | (property "Reference" "#PWR0134" (id 0) (at 39.37 96.52 0) 3286 | (effects (font (size 1.27 1.27)) hide) 3287 | ) 3288 | (property "Value" "VSS" (id 1) (at 39.37 89.1342 0)) 3289 | (property "Footprint" "" (id 2) (at 39.37 92.71 0) 3290 | (effects (font (size 1.27 1.27)) hide) 3291 | ) 3292 | (property "Datasheet" "" (id 3) (at 39.37 92.71 0) 3293 | (effects (font (size 1.27 1.27)) hide) 3294 | ) 3295 | (pin "1" (uuid a1da5c6b-3964-4581-9411-85c2b4d0bd95)) 3296 | ) 3297 | 3298 | (symbol (lib_id "power:GNDA") (at 105.41 130.81 0) (unit 1) 3299 | (in_bom yes) (on_board yes) (fields_autoplaced) 3300 | (uuid d46959e3-2d87-4a45-8bfe-b16a4bc4b24c) 3301 | (property "Reference" "#PWR0130" (id 0) (at 105.41 137.16 0) 3302 | (effects (font (size 1.27 1.27)) hide) 3303 | ) 3304 | (property "Value" "GNDA" (id 1) (at 105.41 135.3725 0)) 3305 | (property "Footprint" "" (id 2) (at 105.41 130.81 0) 3306 | (effects (font (size 1.27 1.27)) hide) 3307 | ) 3308 | (property "Datasheet" "" (id 3) (at 105.41 130.81 0) 3309 | (effects (font (size 1.27 1.27)) hide) 3310 | ) 3311 | (pin "1" (uuid d4afb748-d3db-422a-adab-f4ada9d7c95a)) 3312 | ) 3313 | 3314 | (symbol (lib_id "Mechanical:MountingHole") (at 146.05 171.45 0) (unit 1) 3315 | (in_bom yes) (on_board yes) (fields_autoplaced) 3316 | (uuid da8a7fc6-f774-4a90-a410-fd7265fa6da8) 3317 | (property "Reference" "H3" (id 0) (at 148.59 170.6153 0) 3318 | (effects (font (size 1.27 1.27)) (justify left)) 3319 | ) 3320 | (property "Value" "MountingHole" (id 1) (at 148.59 173.1522 0) 3321 | (effects (font (size 1.27 1.27)) (justify left)) 3322 | ) 3323 | (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (id 2) (at 146.05 171.45 0) 3324 | (effects (font (size 1.27 1.27)) hide) 3325 | ) 3326 | (property "Datasheet" "~" (id 3) (at 146.05 171.45 0) 3327 | (effects (font (size 1.27 1.27)) hide) 3328 | ) 3329 | ) 3330 | 3331 | (symbol (lib_id "Connector:Conn_01x02_Male") (at 101.6 90.17 180) (unit 1) 3332 | (in_bom yes) (on_board yes) (fields_autoplaced) 3333 | (uuid e86b26b8-16f9-4a4f-8311-70cf1e26c17a) 3334 | (property "Reference" "J4" (id 0) (at 102.3112 87.9915 0) 3335 | (effects (font (size 1.27 1.27)) (justify right)) 3336 | ) 3337 | (property "Value" "Conn_01x02_Male" (id 1) (at 102.3112 90.7666 0) 3338 | (effects (font (size 1.27 1.27)) (justify right)) 3339 | ) 3340 | (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 101.6 90.17 0) 3341 | (effects (font (size 1.27 1.27)) hide) 3342 | ) 3343 | (property "Datasheet" "~" (id 3) (at 101.6 90.17 0) 3344 | (effects (font (size 1.27 1.27)) hide) 3345 | ) 3346 | (pin "1" (uuid 719e7ded-3bda-4b51-ad4c-ee3557ee4d58)) 3347 | (pin "2" (uuid b47af3f7-c478-4584-8857-7cfd0bfc7b29)) 3348 | ) 3349 | 3350 | (symbol (lib_id "power:PWR_FLAG") (at 46.99 120.65 0) (unit 1) 3351 | (in_bom yes) (on_board yes) (fields_autoplaced) 3352 | (uuid eb48045d-6096-4973-ba06-b0af29fea8a6) 3353 | (property "Reference" "#FLG0105" (id 0) (at 46.99 118.745 0) 3354 | (effects (font (size 1.27 1.27)) hide) 3355 | ) 3356 | (property "Value" "PWR_FLAG" (id 1) (at 46.99 117.0455 0)) 3357 | (property "Footprint" "" (id 2) (at 46.99 120.65 0) 3358 | (effects (font (size 1.27 1.27)) hide) 3359 | ) 3360 | (property "Datasheet" "~" (id 3) (at 46.99 120.65 0) 3361 | (effects (font (size 1.27 1.27)) hide) 3362 | ) 3363 | (pin "1" (uuid 679f174e-1292-4ff5-8494-d85e3f90de7b)) 3364 | ) 3365 | 3366 | (symbol (lib_id "power:GND") (at 148.59 149.86 0) (unit 1) 3367 | (in_bom yes) (on_board yes) (fields_autoplaced) 3368 | (uuid eb9636aa-b56e-4cdc-9abe-e4c343ce68a4) 3369 | (property "Reference" "#PWR0116" (id 0) (at 148.59 156.21 0) 3370 | (effects (font (size 1.27 1.27)) hide) 3371 | ) 3372 | (property "Value" "GND" (id 1) (at 148.59 154.4225 0)) 3373 | (property "Footprint" "" (id 2) (at 148.59 149.86 0) 3374 | (effects (font (size 1.27 1.27)) hide) 3375 | ) 3376 | (property "Datasheet" "" (id 3) (at 148.59 149.86 0) 3377 | (effects (font (size 1.27 1.27)) hide) 3378 | ) 3379 | (pin "1" (uuid c9a081e6-21f4-4aec-b869-7d9ebe979485)) 3380 | ) 3381 | 3382 | (symbol (lib_id "power:PWR_FLAG") (at 46.99 92.71 0) (unit 1) 3383 | (in_bom yes) (on_board yes) (fields_autoplaced) 3384 | (uuid f38f8511-7fd3-4570-bde5-59df18b6164e) 3385 | (property "Reference" "#FLG0104" (id 0) (at 46.99 90.805 0) 3386 | (effects (font (size 1.27 1.27)) hide) 3387 | ) 3388 | (property "Value" "PWR_FLAG" (id 1) (at 46.99 89.1055 0)) 3389 | (property "Footprint" "" (id 2) (at 46.99 92.71 0) 3390 | (effects (font (size 1.27 1.27)) hide) 3391 | ) 3392 | (property "Datasheet" "~" (id 3) (at 46.99 92.71 0) 3393 | (effects (font (size 1.27 1.27)) hide) 3394 | ) 3395 | (pin "1" (uuid bb96fc8e-996a-4ad1-8333-86c20f8bd650)) 3396 | ) 3397 | 3398 | (symbol (lib_id "Device:R") (at 110.49 48.26 0) (unit 1) 3399 | (in_bom yes) (on_board yes) (fields_autoplaced) 3400 | (uuid feadd54d-df28-48f9-962a-ca1cd94a4a53) 3401 | (property "Reference" "R4" (id 0) (at 112.268 47.3515 0) 3402 | (effects (font (size 1.27 1.27)) (justify left)) 3403 | ) 3404 | (property "Value" "100k" (id 1) (at 112.268 50.1266 0) 3405 | (effects (font (size 1.27 1.27)) (justify left)) 3406 | ) 3407 | (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 108.712 48.26 90) 3408 | (effects (font (size 1.27 1.27)) hide) 3409 | ) 3410 | (property "Datasheet" "~" (id 3) (at 110.49 48.26 0) 3411 | (effects (font (size 1.27 1.27)) hide) 3412 | ) 3413 | (pin "1" (uuid 8f7b2ad3-9257-4be1-8c2c-fd6f3ecfa93b)) 3414 | (pin "2" (uuid a07f4319-aa44-402c-9b3f-73b4aaba1ad1)) 3415 | ) 3416 | 3417 | (symbol (lib_id "Device:C") (at 105.41 124.46 0) (unit 1) 3418 | (in_bom yes) (on_board yes) 3419 | (uuid ffba7eaa-b217-476f-88c9-912f6d164570) 3420 | (property "Reference" "C3" (id 0) (at 108.331 123.5515 0) 3421 | (effects (font (size 1.27 1.27)) (justify left)) 3422 | ) 3423 | (property "Value" "12nF 75V" (id 1) (at 108.331 126.3266 0) 3424 | (effects (font (size 1.27 1.27)) (justify left)) 3425 | ) 3426 | (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 106.3752 128.27 0) 3427 | (effects (font (size 1.27 1.27)) hide) 3428 | ) 3429 | (property "Datasheet" "~" (id 3) (at 105.41 124.46 0) 3430 | (effects (font (size 1.27 1.27)) hide) 3431 | ) 3432 | (pin "1" (uuid 0242782c-718e-4586-87ea-9da8d109f7d2)) 3433 | (pin "2" (uuid b1514297-e5f8-4819-bd98-603876425483)) 3434 | ) 3435 | 3436 | (sheet_instances 3437 | (path "/" (page "1")) 3438 | ) 3439 | 3440 | (symbol_instances 3441 | (path "/5ec448c7-6d6b-4bda-a0ba-531e2c9c9c5b" 3442 | (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "") 3443 | ) 3444 | (path "/2a7fce8e-6c95-4192-ba6e-daae8415063a" 3445 | (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "") 3446 | ) 3447 | (path "/9de90143-f22e-4e2c-ad54-61db66cd788d" 3448 | (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "") 3449 | ) 3450 | (path "/f38f8511-7fd3-4570-bde5-59df18b6164e" 3451 | (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "") 3452 | ) 3453 | (path "/eb48045d-6096-4973-ba06-b0af29fea8a6" 3454 | (reference "#FLG0105") (unit 1) (value "PWR_FLAG") (footprint "") 3455 | ) 3456 | (path "/2e35a6cf-083e-4f7b-ad2b-11a34b7e8ec3" 3457 | (reference "#PWR0101") (unit 1) (value "GND") (footprint "") 3458 | ) 3459 | (path "/bcaf7fd5-bbeb-4d3e-bdfb-8e8d362e0e9d" 3460 | (reference "#PWR0102") (unit 1) (value "GND") (footprint "") 3461 | ) 3462 | (path "/634dec91-418e-48b9-91c3-067202900897" 3463 | (reference "#PWR0103") (unit 1) (value "VDD") (footprint "") 3464 | ) 3465 | (path "/ab7aac14-cb91-4a64-9c07-bf0d184d69e5" 3466 | (reference "#PWR0104") (unit 1) (value "VSS") (footprint "") 3467 | ) 3468 | (path "/bac120cd-1976-4c66-8cdc-9a863814d0a0" 3469 | (reference "#PWR0105") (unit 1) (value "GND") (footprint "") 3470 | ) 3471 | (path "/3748fc6c-2394-4259-aa1e-4bee3c172a6d" 3472 | (reference "#PWR0106") (unit 1) (value "GND") (footprint "") 3473 | ) 3474 | (path "/686d0fec-a77c-43b2-ba3f-1c63f09433f5" 3475 | (reference "#PWR0107") (unit 1) (value "VSS") (footprint "") 3476 | ) 3477 | (path "/8b0a9ed8-5ba6-45c5-8ccc-d001aebbcd7a" 3478 | (reference "#PWR0108") (unit 1) (value "GND") (footprint "") 3479 | ) 3480 | (path "/87a8c98f-0b8b-4d3f-8688-a7d7594c81dd" 3481 | (reference "#PWR0109") (unit 1) (value "GND") (footprint "") 3482 | ) 3483 | (path "/15f2c487-72e3-4c7f-9da8-ca57e89f6d47" 3484 | (reference "#PWR0110") (unit 1) (value "GND") (footprint "") 3485 | ) 3486 | (path "/6c560364-2968-4e45-ab03-5adb3bf175d5" 3487 | (reference "#PWR0111") (unit 1) (value "GND") (footprint "") 3488 | ) 3489 | (path "/9939ebda-c4a8-4a1d-8c3d-f4c55cd8270c" 3490 | (reference "#PWR0112") (unit 1) (value "GND") (footprint "") 3491 | ) 3492 | (path "/2e573b09-546d-49bd-b774-3fc14a41235c" 3493 | (reference "#PWR0113") (unit 1) (value "VDD") (footprint "") 3494 | ) 3495 | (path "/66591b08-7273-4d8f-b9e5-32eb29b61896" 3496 | (reference "#PWR0114") (unit 1) (value "+5V") (footprint "") 3497 | ) 3498 | (path "/b8dfc180-b822-46c5-bb86-ad467bfbe5e3" 3499 | (reference "#PWR0115") (unit 1) (value "GNDA") (footprint "") 3500 | ) 3501 | (path "/eb9636aa-b56e-4cdc-9abe-e4c343ce68a4" 3502 | (reference "#PWR0116") (unit 1) (value "GND") (footprint "") 3503 | ) 3504 | (path "/c05cbcfd-82ab-481b-8613-0f6d72504dab" 3505 | (reference "#PWR0117") (unit 1) (value "GNDA") (footprint "") 3506 | ) 3507 | (path "/1554f29e-f79d-4c41-a131-c63b807a3e28" 3508 | (reference "#PWR0118") (unit 1) (value "GND") (footprint "") 3509 | ) 3510 | (path "/3e26675b-9076-42c1-af02-d3dfff7ad2ac" 3511 | (reference "#PWR0119") (unit 1) (value "+5V") (footprint "") 3512 | ) 3513 | (path "/b12f5c65-7662-47d5-aa17-6bcd130ce62b" 3514 | (reference "#PWR0120") (unit 1) (value "VDD") (footprint "") 3515 | ) 3516 | (path "/6db372a4-2f3e-46e1-9494-79a8bf77fbb9" 3517 | (reference "#PWR0121") (unit 1) (value "VDD") (footprint "") 3518 | ) 3519 | (path "/20fd1aec-5fb6-446f-a004-9981951dc124" 3520 | (reference "#PWR0122") (unit 1) (value "VDD") (footprint "") 3521 | ) 3522 | (path "/7440b328-ffca-4e74-893a-b4643110adce" 3523 | (reference "#PWR0125") (unit 1) (value "GND") (footprint "") 3524 | ) 3525 | (path "/b443c02a-620d-4cce-8478-a650230f8b8d" 3526 | (reference "#PWR0126") (unit 1) (value "+5V") (footprint "") 3527 | ) 3528 | (path "/bae2a06d-542d-48c2-87fa-8cae756447d0" 3529 | (reference "#PWR0127") (unit 1) (value "VSS") (footprint "") 3530 | ) 3531 | (path "/66a5e751-7c1f-450b-a5ea-344566104a89" 3532 | (reference "#PWR0128") (unit 1) (value "GND") (footprint "") 3533 | ) 3534 | (path "/353dad36-cfde-4236-aac6-5bd32b3f1017" 3535 | (reference "#PWR0129") (unit 1) (value "GND") (footprint "") 3536 | ) 3537 | (path "/d46959e3-2d87-4a45-8bfe-b16a4bc4b24c" 3538 | (reference "#PWR0130") (unit 1) (value "GNDA") (footprint "") 3539 | ) 3540 | (path "/5fee127e-0005-4d34-812a-a5a90f93c3d8" 3541 | (reference "#PWR0131") (unit 1) (value "GNDA") (footprint "") 3542 | ) 3543 | (path "/83f54a0b-2221-4c34-b22d-819c9428701f" 3544 | (reference "#PWR0132") (unit 1) (value "GND") (footprint "") 3545 | ) 3546 | (path "/2e10a5b3-3896-40d1-a910-7070f5779277" 3547 | (reference "#PWR0133") (unit 1) (value "+5V") (footprint "") 3548 | ) 3549 | (path "/c38223f3-b17a-4358-aa1f-3b903ba0dad3" 3550 | (reference "#PWR0134") (unit 1) (value "VSS") (footprint "") 3551 | ) 3552 | (path "/2ef4afc6-d39a-4db6-add1-329238e1dc3b" 3553 | (reference "#PWR0135") (unit 1) (value "GNDA") (footprint "") 3554 | ) 3555 | (path "/7b30e56f-2c67-40dc-8a4b-ab00d6cc2343" 3556 | (reference "C1") (unit 1) (value "0") (footprint "") 3557 | ) 3558 | (path "/500e7529-8909-414f-983c-657b0a08e1db" 3559 | (reference "C2") (unit 1) (value "2.2uF 75V") (footprint "Capacitor_SMD:C_1210_3225Metric") 3560 | ) 3561 | (path "/ffba7eaa-b217-476f-88c9-912f6d164570" 3562 | (reference "C3") (unit 1) (value "12nF 75V") (footprint "Capacitor_SMD:C_0603_1608Metric") 3563 | ) 3564 | (path "/320f4df2-77bb-4a1e-b4a4-4701108ea3d8" 3565 | (reference "C4") (unit 1) (value "2.2uF 10V") (footprint "Capacitor_SMD:C_0603_1608Metric") 3566 | ) 3567 | (path "/2fa455f4-fa0e-4f62-bd46-377927a99562" 3568 | (reference "C5") (unit 1) (value "0") (footprint "Capacitor_SMD:C_0603_1608Metric") 3569 | ) 3570 | (path "/ad6f6083-6a5f-4e78-9132-4d6e334f6815" 3571 | (reference "C6") (unit 1) (value "0.1uF 75V") (footprint "Capacitor_SMD:C_0603_1608Metric") 3572 | ) 3573 | (path "/a276e073-6b12-410e-a2bf-6fa42f7eb934" 3574 | (reference "C7") (unit 1) (value "22uF 10V") (footprint "Capacitor_SMD:C_1210_3225Metric") 3575 | ) 3576 | (path "/94b58eab-8e97-4429-a4bb-5f2a30053b85" 3577 | (reference "C8") (unit 1) (value "2.2uF 10V") (footprint "Capacitor_SMD:C_0603_1608Metric") 3578 | ) 3579 | (path "/7f088750-04ef-49c2-9c6b-a8c381692bfa" 3580 | (reference "C9") (unit 1) (value "2.2uF 75V") (footprint "Capacitor_SMD:C_1210_3225Metric") 3581 | ) 3582 | (path "/49ac2b6b-5619-4c45-a68f-ba587d67cab4" 3583 | (reference "D1") (unit 1) (value "LED_WHITE") (footprint "LED_SMD:LED_0603_1608Metric") 3584 | ) 3585 | (path "/88669cb8-770f-410f-affd-bd254113db5a" 3586 | (reference "D2") (unit 1) (value "LED_WHITE") (footprint "LED_SMD:LED_0603_1608Metric") 3587 | ) 3588 | (path "/7b845be9-8db7-4895-acf5-afd13d934940" 3589 | (reference "D3") (unit 1) (value "LED_RED") (footprint "LED_SMD:LED_0603_1608Metric") 3590 | ) 3591 | (path "/85bac15c-b1ac-4ae5-9171-99f36a2b5272" 3592 | (reference "H1") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad") 3593 | ) 3594 | (path "/62d60b68-4a2c-45fa-9381-3b96c5c8596d" 3595 | (reference "H2") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad") 3596 | ) 3597 | (path "/da8a7fc6-f774-4a90-a410-fd7265fa6da8" 3598 | (reference "H3") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad") 3599 | ) 3600 | (path "/2088b1ac-8829-4293-9015-12bec94f9d55" 3601 | (reference "H4") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad") 3602 | ) 3603 | (path "/9aa4051b-5d8e-420b-bd92-028862775303" 3604 | (reference "J1") (unit 1) (value "Screw_Terminal_01x06") (footprint "TerminalBlock:TerminalBlock_bornier-6_P5.08mm") 3605 | ) 3606 | (path "/37e43d63-cb41-40f8-97c4-4ee588727924" 3607 | (reference "J2") (unit 1) (value "USB_C_Receptacle_USB2.0") (footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12") 3608 | ) 3609 | (path "/ae9838ba-2813-4172-b7f5-5eec3bb8901c" 3610 | (reference "J3") (unit 1) (value "Conn_01x02_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") 3611 | ) 3612 | (path "/e86b26b8-16f9-4a4f-8311-70cf1e26c17a" 3613 | (reference "J4") (unit 1) (value "Conn_01x02_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") 3614 | ) 3615 | (path "/75a11b59-583e-4a99-95e9-5981e1dd9b99" 3616 | (reference "J5") (unit 1) (value "Screw_Terminal_01x06") (footprint "TerminalBlock:TerminalBlock_bornier-6_P5.08mm") 3617 | ) 3618 | (path "/658e9404-3bcc-4882-83f2-3854413839d0" 3619 | (reference "J6") (unit 1) (value "Screw_Terminal_01x01") (footprint "MountingHole:MountingHole_4.3mm_M4_DIN965_Pad_TopBottom") 3620 | ) 3621 | (path "/a633eaf7-668c-4152-b7d6-93137db04225" 3622 | (reference "J7") (unit 1) (value "Screw_Terminal_01x01") (footprint "MountingHole:MountingHole_4.3mm_M4_DIN965_Pad_TopBottom") 3623 | ) 3624 | (path "/244b749f-174a-49b7-828e-ed41080839d8" 3625 | (reference "L1") (unit 1) (value "4.7uH") (footprint "Inductor_SMD:L_Coilcraft_XAL60xx_6.36x6.56mm") 3626 | ) 3627 | (path "/7d2dbaed-6d02-4841-881c-ebebe5317ae0" 3628 | (reference "NT1") (unit 1) (value "NetTie_2") (footprint "NetTie:NetTie-2_SMD_Pad0.5mm") 3629 | ) 3630 | (path "/5b851567-b41b-4346-b432-9e2a2cc09547" 3631 | (reference "Q1") (unit 1) (value "Q_NMOS_DGS") (footprint "Package_TO_SOT_SMD:PQFN_8x8") 3632 | ) 3633 | (path "/b5b7cce0-fc96-4ce6-911a-c879226db90f" 3634 | (reference "R1") (unit 1) (value "2k") (footprint "Resistor_SMD:R_0603_1608Metric") 3635 | ) 3636 | (path "/bb2b9440-6d30-4a85-9e94-023ffbe375de" 3637 | (reference "R2") (unit 1) (value "115k") (footprint "Resistor_SMD:R_0603_1608Metric") 3638 | ) 3639 | (path "/83bd42fa-eba4-44f1-953a-bd8e419d6b11" 3640 | (reference "R3") (unit 1) (value "22k") (footprint "Resistor_SMD:R_0603_1608Metric") 3641 | ) 3642 | (path "/feadd54d-df28-48f9-962a-ca1cd94a4a53" 3643 | (reference "R4") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0603_1608Metric") 3644 | ) 3645 | (path "/8c6674af-d3a2-4048-850f-b0b4984b73c2" 3646 | (reference "R5") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric") 3647 | ) 3648 | (path "/908063c2-0d27-44d4-865c-7c15b36c6c4f" 3649 | (reference "R6") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric") 3650 | ) 3651 | (path "/1aec70fd-034e-458c-8fb4-4507cb936896" 3652 | (reference "R7") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0603_1608Metric") 3653 | ) 3654 | (path "/aa144cb2-799a-4e31-a6ec-06aebf4c28b7" 3655 | (reference "R8") (unit 1) (value "47k") (footprint "Resistor_SMD:R_0603_1608Metric") 3656 | ) 3657 | (path "/3ff85890-f013-47bf-b77e-5e98412ecbdb" 3658 | (reference "R9") (unit 1) (value "24.9k") (footprint "Resistor_SMD:R_0603_1608Metric") 3659 | ) 3660 | (path "/bdfefa7a-0765-4d6a-9dca-a8458b4d1222" 3661 | (reference "R10") (unit 1) (value "19.1k") (footprint "Resistor_SMD:R_0603_1608Metric") 3662 | ) 3663 | (path "/80cdf499-6199-4466-9c10-facc138ea768" 3664 | (reference "U1") (unit 1) (value "ΜΑΧ17504") (footprint "Movr:MAX17504") 3665 | ) 3666 | (path "/3ac98cf4-6a16-4035-9e8f-5861024b9940" 3667 | (reference "U2") (unit 1) (value "LM5060") (footprint "Package_SO:MSOP-10_3x3mm_P0.5mm") 3668 | ) 3669 | ) 3670 | ) 3671 | --------------------------------------------------------------------------------