├── README.md ├── .gitignore ├── cpu-boards └── esp32-pico-v3-02 │ ├── inwall-relay-esp32.kicad_prl │ ├── inwall-relay-esp32.kicad_pro │ └── inwall-relay-esp32.kicad_sch ├── base-board ├── inwall-relay.kicad_prl └── inwall-relay.kicad_pro └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | # smahoo-hw -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: http://www.kicad-pcb.org/ 2 | # Format documentation: http://kicad-pcb.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.sch-bak 10 | *~ 11 | _autosave-* 12 | *.tmp 13 | *-save.pro 14 | *-save.kicad_pcb 15 | fp-info-cache 16 | 17 | # Netlist files (exported from Eeschema) 18 | *.net 19 | 20 | # Autorouter files (exported from Pcbnew) 21 | *.dsn 22 | *.ses 23 | 24 | # Exported BOM files 25 | *.xml 26 | *.csv 27 | -------------------------------------------------------------------------------- /cpu-boards/esp32-pico-v3-02/inwall-relay-esp32.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 49, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 1, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "images": 0.6, 11 | "pads": 1.0, 12 | "tracks": 1.0, 13 | "vias": 1.0, 14 | "zones": 1.0 15 | }, 16 | "ratsnest_display_mode": 0, 17 | "selection_filter": { 18 | "dimensions": true, 19 | "footprints": true, 20 | "graphics": true, 21 | "keepouts": true, 22 | "lockedItems": true, 23 | "otherItems": true, 24 | "pads": false, 25 | "text": true, 26 | "tracks": true, 27 | "vias": true, 28 | "zones": true 29 | }, 30 | "visible_items": [ 31 | 0, 32 | 1, 33 | 2, 34 | 3, 35 | 4, 36 | 5, 37 | 8, 38 | 9, 39 | 10, 40 | 11, 41 | 12, 42 | 13, 43 | 14, 44 | 15, 45 | 16, 46 | 17, 47 | 18, 48 | 19, 49 | 20, 50 | 21, 51 | 22, 52 | 23, 53 | 24, 54 | 25, 55 | 26, 56 | 27, 57 | 28, 58 | 29, 59 | 30, 60 | 32, 61 | 33, 62 | 34, 63 | 35, 64 | 36 65 | ], 66 | "visible_layers": "3feffff_80000007", 67 | "zone_display_mode": 1 68 | }, 69 | "meta": { 70 | "filename": "inwall-relay-esp32.kicad_prl", 71 | "version": 3 72 | }, 73 | "project": { 74 | "files": [] 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /base-board/inwall-relay.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 4 | "active_layer_preset": "All Layers", 5 | "auto_track_width": true, 6 | "hidden_netclasses": [], 7 | "hidden_nets": [], 8 | "high_contrast_mode": 1, 9 | "net_color_mode": 1, 10 | "opacity": { 11 | "images": 0.6, 12 | "pads": 1.0, 13 | "tracks": 1.0, 14 | "vias": 1.0, 15 | "zones": 0.6 16 | }, 17 | "ratsnest_display_mode": 0, 18 | "selection_filter": { 19 | "dimensions": true, 20 | "footprints": true, 21 | "graphics": true, 22 | "keepouts": true, 23 | "lockedItems": true, 24 | "otherItems": true, 25 | "pads": false, 26 | "text": true, 27 | "tracks": true, 28 | "vias": true, 29 | "zones": true 30 | }, 31 | "visible_items": [ 32 | 0, 33 | 1, 34 | 2, 35 | 3, 36 | 4, 37 | 5, 38 | 8, 39 | 9, 40 | 10, 41 | 11, 42 | 12, 43 | 13, 44 | 15, 45 | 16, 46 | 17, 47 | 18, 48 | 19, 49 | 20, 50 | 21, 51 | 22, 52 | 23, 53 | 24, 54 | 25, 55 | 26, 56 | 27, 57 | 28, 58 | 29, 59 | 30, 60 | 32, 61 | 33, 62 | 34, 63 | 35, 64 | 36, 65 | 39, 66 | 40 67 | ], 68 | "visible_layers": "fffffff_ffffffff", 69 | "zone_display_mode": 0 70 | }, 71 | "meta": { 72 | "filename": "inwall-relay.kicad_prl", 73 | "version": 3 74 | }, 75 | "project": { 76 | "files": [] 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /cpu-boards/esp32-pico-v3-02/inwall-relay-esp32.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.762, 38 | "height": 1.524, 39 | "width": 1.524 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.3 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [], 60 | "meta": { 61 | "version": 2 62 | }, 63 | "rule_severities": { 64 | "annular_width": "error", 65 | "clearance": "error", 66 | "connection_width": "ignore", 67 | "copper_edge_clearance": "error", 68 | "copper_sliver": "warning", 69 | "courtyards_overlap": "error", 70 | "diff_pair_gap_out_of_range": "error", 71 | "diff_pair_uncoupled_length_too_long": "error", 72 | "drill_out_of_range": "error", 73 | "duplicate_footprints": "warning", 74 | "extra_footprint": "warning", 75 | "footprint_type_mismatch": "error", 76 | "hole_clearance": "error", 77 | "hole_near_hole": "error", 78 | "invalid_outline": "error", 79 | "isolated_copper": "warning", 80 | "item_on_disabled_layer": "error", 81 | "items_not_allowed": "error", 82 | "length_out_of_range": "error", 83 | "lib_footprint_issues": "error", 84 | "lib_footprint_mismatch": "error", 85 | "malformed_courtyard": "error", 86 | "microvia_drill_out_of_range": "error", 87 | "missing_courtyard": "ignore", 88 | "missing_footprint": "warning", 89 | "net_conflict": "warning", 90 | "npth_inside_courtyard": "ignore", 91 | "overlapping_pads": "warning", 92 | "padstack": "error", 93 | "pth_inside_courtyard": "ignore", 94 | "shorting_items": "error", 95 | "silk_edge_clearance": "warning", 96 | "silk_over_copper": "warning", 97 | "silk_overlap": "warning", 98 | "skew_out_of_range": "error", 99 | "solder_mask_bridge": "error", 100 | "starved_thermal": "error", 101 | "text_height": "warning", 102 | "text_thickness": "warning", 103 | "through_hole_pad_without_hole": "error", 104 | "too_many_vias": "error", 105 | "track_dangling": "warning", 106 | "track_width": "error", 107 | "tracks_crossing": "error", 108 | "unconnected_items": "error", 109 | "unresolved_variable": "error", 110 | "via_dangling": "warning", 111 | "zones_intersect": "error" 112 | }, 113 | "rules": { 114 | "allow_blind_buried_vias": false, 115 | "allow_microvias": false, 116 | "max_error": 0.005, 117 | "min_clearance": 0.0, 118 | "min_connection": 0.0, 119 | "min_copper_edge_clearance": 0.0, 120 | "min_hole_clearance": 0.25, 121 | "min_hole_to_hole": 0.25, 122 | "min_microvia_diameter": 0.19999999999999998, 123 | "min_microvia_drill": 0.09999999999999999, 124 | "min_resolved_spokes": 1, 125 | "min_silk_clearance": 0.0, 126 | "min_text_height": 0.7999999999999999, 127 | "min_text_thickness": 0.12, 128 | "min_through_hole_diameter": 0.3, 129 | "min_track_width": 0.19999999999999998, 130 | "min_via_annular_width": 0.049999999999999996, 131 | "min_via_diameter": 0.39999999999999997, 132 | "solder_mask_clearance": 0.0, 133 | "solder_mask_min_width": 0.0, 134 | "solder_mask_to_copper_clearance": 0.0, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_allow_use_two_tracks": true, 140 | "td_curve_segcount": 5, 141 | "td_on_pad_in_zone": false, 142 | "td_onpadsmd": true, 143 | "td_onroundshapesonly": false, 144 | "td_ontrackend": false, 145 | "td_onviapad": true 146 | } 147 | ], 148 | "teardrop_parameters": [ 149 | { 150 | "td_curve_segcount": 0, 151 | "td_height_ratio": 1.0, 152 | "td_length_ratio": 0.5, 153 | "td_maxheight": 2.0, 154 | "td_maxlen": 1.0, 155 | "td_target_name": "td_round_shape", 156 | "td_width_to_size_filter_ratio": 0.9 157 | }, 158 | { 159 | "td_curve_segcount": 0, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_target_name": "td_rect_shape", 165 | "td_width_to_size_filter_ratio": 0.9 166 | }, 167 | { 168 | "td_curve_segcount": 0, 169 | "td_height_ratio": 1.0, 170 | "td_length_ratio": 0.5, 171 | "td_maxheight": 2.0, 172 | "td_maxlen": 1.0, 173 | "td_target_name": "td_track_end", 174 | "td_width_to_size_filter_ratio": 0.9 175 | } 176 | ], 177 | "track_widths": [ 178 | 0.0 179 | ], 180 | "via_dimensions": [ 181 | { 182 | "diameter": 0.0, 183 | "drill": 0.0 184 | }, 185 | { 186 | "diameter": 0.45, 187 | "drill": 0.2 188 | } 189 | ], 190 | "zones_allow_external_fillets": true, 191 | "zones_use_no_outline": true 192 | }, 193 | "layer_presets": [], 194 | "viewports": [] 195 | }, 196 | "boards": [], 197 | "cvpcb": { 198 | "equivalence_files": [] 199 | }, 200 | "erc": { 201 | "erc_exclusions": [], 202 | "meta": { 203 | "version": 0 204 | }, 205 | "pin_map": [ 206 | [ 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 1, 214 | 0, 215 | 0, 216 | 0, 217 | 0, 218 | 2 219 | ], 220 | [ 221 | 0, 222 | 2, 223 | 0, 224 | 1, 225 | 0, 226 | 0, 227 | 1, 228 | 0, 229 | 2, 230 | 2, 231 | 2, 232 | 2 233 | ], 234 | [ 235 | 0, 236 | 0, 237 | 0, 238 | 0, 239 | 0, 240 | 0, 241 | 1, 242 | 0, 243 | 1, 244 | 0, 245 | 1, 246 | 2 247 | ], 248 | [ 249 | 0, 250 | 1, 251 | 0, 252 | 0, 253 | 0, 254 | 0, 255 | 1, 256 | 1, 257 | 2, 258 | 1, 259 | 1, 260 | 2 261 | ], 262 | [ 263 | 0, 264 | 0, 265 | 0, 266 | 0, 267 | 0, 268 | 0, 269 | 1, 270 | 0, 271 | 0, 272 | 0, 273 | 0, 274 | 2 275 | ], 276 | [ 277 | 0, 278 | 0, 279 | 0, 280 | 0, 281 | 0, 282 | 0, 283 | 0, 284 | 0, 285 | 0, 286 | 0, 287 | 0, 288 | 2 289 | ], 290 | [ 291 | 1, 292 | 1, 293 | 1, 294 | 1, 295 | 1, 296 | 0, 297 | 1, 298 | 1, 299 | 1, 300 | 1, 301 | 1, 302 | 2 303 | ], 304 | [ 305 | 0, 306 | 0, 307 | 0, 308 | 1, 309 | 0, 310 | 0, 311 | 1, 312 | 0, 313 | 0, 314 | 0, 315 | 0, 316 | 2 317 | ], 318 | [ 319 | 0, 320 | 2, 321 | 1, 322 | 2, 323 | 0, 324 | 0, 325 | 1, 326 | 0, 327 | 2, 328 | 2, 329 | 2, 330 | 2 331 | ], 332 | [ 333 | 0, 334 | 2, 335 | 0, 336 | 1, 337 | 0, 338 | 0, 339 | 1, 340 | 0, 341 | 2, 342 | 0, 343 | 0, 344 | 2 345 | ], 346 | [ 347 | 0, 348 | 2, 349 | 1, 350 | 1, 351 | 0, 352 | 0, 353 | 1, 354 | 0, 355 | 2, 356 | 0, 357 | 0, 358 | 2 359 | ], 360 | [ 361 | 2, 362 | 2, 363 | 2, 364 | 2, 365 | 2, 366 | 2, 367 | 2, 368 | 2, 369 | 2, 370 | 2, 371 | 2, 372 | 2 373 | ] 374 | ], 375 | "rule_severities": { 376 | "bus_definition_conflict": "error", 377 | "bus_entry_needed": "error", 378 | "bus_label_syntax": "error", 379 | "bus_to_bus_conflict": "error", 380 | "bus_to_net_conflict": "error", 381 | "different_unit_footprint": "error", 382 | "different_unit_net": "error", 383 | "duplicate_reference": "error", 384 | "duplicate_sheet_names": "error", 385 | "extra_units": "error", 386 | "global_label_dangling": "warning", 387 | "hier_label_mismatch": "error", 388 | "label_dangling": "error", 389 | "lib_symbol_issues": "warning", 390 | "multiple_net_names": "warning", 391 | "net_not_bus_member": "warning", 392 | "no_connect_connected": "warning", 393 | "no_connect_dangling": "warning", 394 | "pin_not_connected": "error", 395 | "pin_not_driven": "error", 396 | "pin_to_pin": "warning", 397 | "power_pin_not_driven": "error", 398 | "similar_labels": "warning", 399 | "unannotated": "error", 400 | "unit_value_mismatch": "error", 401 | "unresolved_variable": "error", 402 | "wire_dangling": "error" 403 | } 404 | }, 405 | "libraries": { 406 | "pinned_footprint_libs": [], 407 | "pinned_symbol_libs": [] 408 | }, 409 | "meta": { 410 | "filename": "inwall-relay-esp32.kicad_pro", 411 | "version": 1 412 | }, 413 | "net_settings": { 414 | "classes": [ 415 | { 416 | "bus_width": 12.0, 417 | "clearance": 0.127, 418 | "diff_pair_gap": 0.25, 419 | "diff_pair_via_gap": 0.25, 420 | "diff_pair_width": 0.2, 421 | "line_style": 0, 422 | "microvia_diameter": 0.3, 423 | "microvia_drill": 0.1, 424 | "name": "Default", 425 | "pcb_color": "rgba(0, 0, 0, 0.000)", 426 | "schematic_color": "rgba(0, 0, 0, 0.000)", 427 | "track_width": 0.25, 428 | "via_diameter": 0.8, 429 | "via_drill": 0.4, 430 | "wire_width": 6.0 431 | } 432 | ], 433 | "meta": { 434 | "version": 3 435 | }, 436 | "net_colors": null, 437 | "netclass_assignments": null, 438 | "netclass_patterns": [] 439 | }, 440 | "pcbnew": { 441 | "last_paths": { 442 | "gencad": "", 443 | "idf": "", 444 | "netlist": "", 445 | "specctra_dsn": "", 446 | "step": "", 447 | "vrml": "" 448 | }, 449 | "page_layout_descr_file": "" 450 | }, 451 | "schematic": { 452 | "annotate_start_num": 0, 453 | "drawing": { 454 | "dashed_lines_dash_length_ratio": 12.0, 455 | "dashed_lines_gap_length_ratio": 3.0, 456 | "default_bus_thickness": 12.0, 457 | "default_junction_size": 36.0, 458 | "default_line_thickness": 6.0, 459 | "default_text_size": 50.0, 460 | "default_wire_thickness": 6.0, 461 | "field_names": [], 462 | "intersheets_ref_own_page": false, 463 | "intersheets_ref_prefix": "", 464 | "intersheets_ref_short": false, 465 | "intersheets_ref_show": false, 466 | "intersheets_ref_suffix": "", 467 | "junction_size_choice": 3, 468 | "label_size_ratio": 0.15, 469 | "pin_symbol_size": 25.0, 470 | "text_offset_ratio": 0.15 471 | }, 472 | "legacy_lib_dir": "", 473 | "legacy_lib_list": [], 474 | "meta": { 475 | "version": 1 476 | }, 477 | "net_format_name": "", 478 | "ngspice": { 479 | "fix_include_paths": true, 480 | "fix_passive_vals": false, 481 | "meta": { 482 | "version": 0 483 | }, 484 | "model_mode": 0, 485 | "workbook_filename": "" 486 | }, 487 | "page_layout_descr_file": "", 488 | "plot_directory": "", 489 | "spice_adjust_passive_values": false, 490 | "spice_external_command": "spice \"%I\"", 491 | "spice_save_all_currents": false, 492 | "spice_save_all_voltages": false, 493 | "subpart_first_id": 65, 494 | "subpart_id_separator": 0 495 | }, 496 | "sheets": [ 497 | [ 498 | "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", 499 | "" 500 | ] 501 | ], 502 | "text_variables": {} 503 | } 504 | -------------------------------------------------------------------------------- /base-board/inwall-relay.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.762, 38 | "height": 1.524, 39 | "width": 1.524 40 | }, 41 | "silk_line_width": 0.09999999999999999, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 0.5, 44 | "silk_text_size_v": 0.5, 45 | "silk_text_thickness": 0.09999999999999999, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.19999999999999998 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [ 60 | "clearance|105513274|55776726|dcb2d1c1-f0f3-494c-b9de-51e183f1d2f3|57aacddf-3843-44c8-9e91-dfd39d697c07", 61 | "clearance|105513274|55983274|f5fbffe0-edca-489a-b0cc-0ea4272b5a3e|57aacddf-3843-44c8-9e91-dfd39d697c07", 62 | "clearance|105966981|56623565|40cdc06a-2671-473c-be60-819281949871|57aacddf-3843-44c8-9e91-dfd39d697c07", 63 | "clearance|106045000|56515000|956666be-b6f6-4b15-bc53-41146cbbc77e|57aacddf-3843-44c8-9e91-dfd39d697c07", 64 | "clearance|106256109|56726109|d870c887-bd8f-4abb-8d7e-0e4b08de2ef7|57aacddf-3843-44c8-9e91-dfd39d697c07", 65 | "clearance|106256109|57341103|72cbd804-2871-408d-9a6b-869dd51486bc|57aacddf-3843-44c8-9e91-dfd39d697c07", 66 | "clearance|106256109|57341103|af1c949e-cb18-4a7c-b0b8-6ac90e416913|57aacddf-3843-44c8-9e91-dfd39d697c07", 67 | "clearance|106281881|57341103|ac3ff940-f1f9-4547-aba5-35a61f6c87f5|57aacddf-3843-44c8-9e91-dfd39d697c07", 68 | "clearance|106432886|56987550|6ec028d9-f10a-4ce8-87e3-ed22773d65ba|57aacddf-3843-44c8-9e91-dfd39d697c07", 69 | "clearance|106685116|56619670|790f5477-183b-49bf-b4d4-cbf5bbb25efe|57aacddf-3843-44c8-9e91-dfd39d697c07" 70 | ], 71 | "meta": { 72 | "version": 2 73 | }, 74 | "rule_severities": { 75 | "annular_width": "error", 76 | "clearance": "error", 77 | "connection_width": "ignore", 78 | "copper_edge_clearance": "ignore", 79 | "copper_sliver": "warning", 80 | "courtyards_overlap": "ignore", 81 | "diff_pair_gap_out_of_range": "error", 82 | "diff_pair_uncoupled_length_too_long": "error", 83 | "drill_out_of_range": "error", 84 | "duplicate_footprints": "warning", 85 | "extra_footprint": "warning", 86 | "footprint_type_mismatch": "error", 87 | "hole_clearance": "error", 88 | "hole_near_hole": "ignore", 89 | "invalid_outline": "error", 90 | "isolated_copper": "warning", 91 | "item_on_disabled_layer": "error", 92 | "items_not_allowed": "error", 93 | "length_out_of_range": "error", 94 | "lib_footprint_issues": "error", 95 | "lib_footprint_mismatch": "ignore", 96 | "malformed_courtyard": "error", 97 | "microvia_drill_out_of_range": "error", 98 | "missing_courtyard": "ignore", 99 | "missing_footprint": "warning", 100 | "net_conflict": "warning", 101 | "npth_inside_courtyard": "ignore", 102 | "overlapping_pads": "error", 103 | "padstack": "error", 104 | "pth_inside_courtyard": "ignore", 105 | "shorting_items": "error", 106 | "silk_edge_clearance": "warning", 107 | "silk_over_copper": "warning", 108 | "silk_overlap": "ignore", 109 | "skew_out_of_range": "error", 110 | "solder_mask_bridge": "ignore", 111 | "starved_thermal": "error", 112 | "text_height": "ignore", 113 | "text_thickness": "ignore", 114 | "through_hole_pad_without_hole": "error", 115 | "too_many_vias": "error", 116 | "track_dangling": "warning", 117 | "track_width": "error", 118 | "tracks_crossing": "error", 119 | "unconnected_items": "error", 120 | "unresolved_variable": "error", 121 | "via_dangling": "warning", 122 | "zones_intersect": "error" 123 | }, 124 | "rules": { 125 | "allow_blind_buried_vias": false, 126 | "allow_microvias": false, 127 | "max_error": 0.005, 128 | "min_clearance": 0.0, 129 | "min_connection": 0.0, 130 | "min_copper_edge_clearance": 0.0, 131 | "min_hole_clearance": 0.25, 132 | "min_hole_to_hole": 0.25, 133 | "min_microvia_diameter": 0.19999999999999998, 134 | "min_microvia_drill": 0.09999999999999999, 135 | "min_resolved_spokes": 2, 136 | "min_silk_clearance": 0.0, 137 | "min_text_height": 0.7999999999999999, 138 | "min_text_thickness": 0.12, 139 | "min_through_hole_diameter": 0.3, 140 | "min_track_width": 0.19999999999999998, 141 | "min_via_annular_width": 0.049999999999999996, 142 | "min_via_diameter": 0.39999999999999997, 143 | "solder_mask_clearance": 0.0, 144 | "solder_mask_min_width": 0.0, 145 | "solder_mask_to_copper_clearance": 0.0, 146 | "use_height_for_length_calcs": true 147 | }, 148 | "teardrop_options": [ 149 | { 150 | "td_allow_use_two_tracks": true, 151 | "td_curve_segcount": 5, 152 | "td_on_pad_in_zone": false, 153 | "td_onpadsmd": true, 154 | "td_onroundshapesonly": false, 155 | "td_ontrackend": false, 156 | "td_onviapad": true 157 | } 158 | ], 159 | "teardrop_parameters": [ 160 | { 161 | "td_curve_segcount": 0, 162 | "td_height_ratio": 1.0, 163 | "td_length_ratio": 0.5, 164 | "td_maxheight": 2.0, 165 | "td_maxlen": 1.0, 166 | "td_target_name": "td_round_shape", 167 | "td_width_to_size_filter_ratio": 0.9 168 | }, 169 | { 170 | "td_curve_segcount": 0, 171 | "td_height_ratio": 1.0, 172 | "td_length_ratio": 0.5, 173 | "td_maxheight": 2.0, 174 | "td_maxlen": 1.0, 175 | "td_target_name": "td_rect_shape", 176 | "td_width_to_size_filter_ratio": 0.9 177 | }, 178 | { 179 | "td_curve_segcount": 0, 180 | "td_height_ratio": 1.0, 181 | "td_length_ratio": 0.5, 182 | "td_maxheight": 2.0, 183 | "td_maxlen": 1.0, 184 | "td_target_name": "td_track_end", 185 | "td_width_to_size_filter_ratio": 0.9 186 | } 187 | ], 188 | "track_widths": [ 189 | 0.0, 190 | 1.0 191 | ], 192 | "via_dimensions": [ 193 | { 194 | "diameter": 0.0, 195 | "drill": 0.0 196 | } 197 | ], 198 | "zones_allow_external_fillets": true, 199 | "zones_use_no_outline": true 200 | }, 201 | "layer_presets": [ 202 | { 203 | "activeLayer": -2, 204 | "layers": [ 205 | 44, 206 | 49 207 | ], 208 | "name": "bestueckung_top", 209 | "renderLayers": [ 210 | 125, 211 | 126, 212 | 127, 213 | 128, 214 | 129, 215 | 130, 216 | 133, 217 | 134, 218 | 135, 219 | 136, 220 | 137, 221 | 138, 222 | 139, 223 | 140, 224 | 141, 225 | 142, 226 | 143, 227 | 144, 228 | 145, 229 | 146, 230 | 147, 231 | 148, 232 | 149, 233 | 150, 234 | 151, 235 | 152, 236 | 153, 237 | 154, 238 | 155, 239 | 157, 240 | 158, 241 | 159, 242 | 160, 243 | 161 244 | ] 245 | } 246 | ], 247 | "viewports": [ 248 | { 249 | "h": 44294818.81950386, 250 | "name": "bestueckung_top", 251 | "w": 78229775.0556031, 252 | "x": 74452541.7279845, 253 | "y": 45273999.38410042 254 | } 255 | ] 256 | }, 257 | "boards": [], 258 | "cvpcb": { 259 | "equivalence_files": [] 260 | }, 261 | "erc": { 262 | "erc_exclusions": [], 263 | "meta": { 264 | "version": 0 265 | }, 266 | "pin_map": [ 267 | [ 268 | 0, 269 | 0, 270 | 0, 271 | 0, 272 | 0, 273 | 0, 274 | 1, 275 | 0, 276 | 0, 277 | 0, 278 | 0, 279 | 2 280 | ], 281 | [ 282 | 0, 283 | 2, 284 | 0, 285 | 1, 286 | 0, 287 | 0, 288 | 1, 289 | 0, 290 | 2, 291 | 2, 292 | 2, 293 | 2 294 | ], 295 | [ 296 | 0, 297 | 0, 298 | 0, 299 | 0, 300 | 0, 301 | 0, 302 | 1, 303 | 0, 304 | 1, 305 | 0, 306 | 1, 307 | 2 308 | ], 309 | [ 310 | 0, 311 | 1, 312 | 0, 313 | 0, 314 | 0, 315 | 0, 316 | 1, 317 | 1, 318 | 2, 319 | 1, 320 | 1, 321 | 2 322 | ], 323 | [ 324 | 0, 325 | 0, 326 | 0, 327 | 0, 328 | 0, 329 | 0, 330 | 1, 331 | 0, 332 | 0, 333 | 0, 334 | 0, 335 | 2 336 | ], 337 | [ 338 | 0, 339 | 0, 340 | 0, 341 | 0, 342 | 0, 343 | 0, 344 | 0, 345 | 0, 346 | 0, 347 | 0, 348 | 0, 349 | 2 350 | ], 351 | [ 352 | 1, 353 | 1, 354 | 1, 355 | 1, 356 | 1, 357 | 0, 358 | 1, 359 | 1, 360 | 1, 361 | 1, 362 | 1, 363 | 2 364 | ], 365 | [ 366 | 0, 367 | 0, 368 | 0, 369 | 1, 370 | 0, 371 | 0, 372 | 1, 373 | 0, 374 | 0, 375 | 0, 376 | 0, 377 | 2 378 | ], 379 | [ 380 | 0, 381 | 2, 382 | 1, 383 | 2, 384 | 0, 385 | 0, 386 | 1, 387 | 0, 388 | 2, 389 | 2, 390 | 2, 391 | 2 392 | ], 393 | [ 394 | 0, 395 | 2, 396 | 0, 397 | 1, 398 | 0, 399 | 0, 400 | 1, 401 | 0, 402 | 2, 403 | 0, 404 | 0, 405 | 2 406 | ], 407 | [ 408 | 0, 409 | 2, 410 | 1, 411 | 1, 412 | 0, 413 | 0, 414 | 1, 415 | 0, 416 | 2, 417 | 0, 418 | 0, 419 | 2 420 | ], 421 | [ 422 | 2, 423 | 2, 424 | 2, 425 | 2, 426 | 2, 427 | 2, 428 | 2, 429 | 2, 430 | 2, 431 | 2, 432 | 2, 433 | 2 434 | ] 435 | ], 436 | "rule_severities": { 437 | "bus_definition_conflict": "error", 438 | "bus_entry_needed": "error", 439 | "bus_label_syntax": "error", 440 | "bus_to_bus_conflict": "error", 441 | "bus_to_net_conflict": "error", 442 | "different_unit_footprint": "error", 443 | "different_unit_net": "error", 444 | "duplicate_reference": "error", 445 | "duplicate_sheet_names": "error", 446 | "extra_units": "error", 447 | "global_label_dangling": "warning", 448 | "hier_label_mismatch": "error", 449 | "label_dangling": "error", 450 | "lib_symbol_issues": "warning", 451 | "multiple_net_names": "warning", 452 | "net_not_bus_member": "warning", 453 | "no_connect_connected": "warning", 454 | "no_connect_dangling": "warning", 455 | "pin_not_connected": "error", 456 | "pin_not_driven": "error", 457 | "pin_to_pin": "warning", 458 | "power_pin_not_driven": "error", 459 | "similar_labels": "warning", 460 | "unannotated": "error", 461 | "unit_value_mismatch": "error", 462 | "unresolved_variable": "error", 463 | "wire_dangling": "error" 464 | } 465 | }, 466 | "libraries": { 467 | "pinned_footprint_libs": [], 468 | "pinned_symbol_libs": [] 469 | }, 470 | "meta": { 471 | "filename": "inwall-relay.kicad_pro", 472 | "version": 1 473 | }, 474 | "net_settings": { 475 | "classes": [ 476 | { 477 | "bus_width": 12.0, 478 | "clearance": 0.127, 479 | "diff_pair_gap": 0.25, 480 | "diff_pair_via_gap": 0.25, 481 | "diff_pair_width": 0.2, 482 | "line_style": 0, 483 | "microvia_diameter": 0.3, 484 | "microvia_drill": 0.1, 485 | "name": "Default", 486 | "pcb_color": "rgba(0, 0, 0, 0.000)", 487 | "schematic_color": "rgba(0, 0, 0, 0.000)", 488 | "track_width": 0.25, 489 | "via_diameter": 0.8, 490 | "via_drill": 0.4, 491 | "wire_width": 6.0 492 | }, 493 | { 494 | "bus_width": 12.0, 495 | "clearance": 0.7, 496 | "diff_pair_gap": 0.25, 497 | "diff_pair_via_gap": 0.25, 498 | "diff_pair_width": 0.2, 499 | "line_style": 0, 500 | "microvia_diameter": 0.3, 501 | "microvia_drill": 0.1, 502 | "name": "230V", 503 | "pcb_color": "rgba(0, 0, 0, 0.000)", 504 | "schematic_color": "rgba(0, 0, 0, 0.000)", 505 | "track_width": 1.0, 506 | "via_diameter": 1.2, 507 | "via_drill": 0.6, 508 | "wire_width": 6.0 509 | } 510 | ], 511 | "meta": { 512 | "version": 3 513 | }, 514 | "net_colors": null, 515 | "netclass_assignments": null, 516 | "netclass_patterns": [ 517 | { 518 | "netclass": "230V", 519 | "pattern": "/VIN_L_FUSED" 520 | }, 521 | { 522 | "netclass": "230V", 523 | "pattern": "D" 524 | }, 525 | { 526 | "netclass": "230V", 527 | "pattern": "L_OUT" 528 | }, 529 | { 530 | "netclass": "230V", 531 | "pattern": "VIN_L" 532 | }, 533 | { 534 | "netclass": "230V", 535 | "pattern": "VIN_L+" 536 | }, 537 | { 538 | "netclass": "230V", 539 | "pattern": "VIN_N" 540 | } 541 | ] 542 | }, 543 | "pcbnew": { 544 | "last_paths": { 545 | "gencad": "", 546 | "idf": "", 547 | "netlist": "", 548 | "specctra_dsn": "", 549 | "step": "inwall-relay.step", 550 | "vrml": "" 551 | }, 552 | "page_layout_descr_file": "" 553 | }, 554 | "schematic": { 555 | "annotate_start_num": 0, 556 | "drawing": { 557 | "dashed_lines_dash_length_ratio": 12.0, 558 | "dashed_lines_gap_length_ratio": 3.0, 559 | "default_line_thickness": 6.0, 560 | "default_text_size": 50.0, 561 | "field_names": [], 562 | "intersheets_ref_own_page": false, 563 | "intersheets_ref_prefix": "", 564 | "intersheets_ref_short": false, 565 | "intersheets_ref_show": false, 566 | "intersheets_ref_suffix": "", 567 | "junction_size_choice": 3, 568 | "label_size_ratio": 0.375, 569 | "pin_symbol_size": 25.0, 570 | "text_offset_ratio": 0.15 571 | }, 572 | "legacy_lib_dir": "", 573 | "legacy_lib_list": [], 574 | "meta": { 575 | "version": 1 576 | }, 577 | "net_format_name": "", 578 | "ngspice": { 579 | "fix_include_paths": true, 580 | "fix_passive_vals": false, 581 | "meta": { 582 | "version": 0 583 | }, 584 | "model_mode": 0, 585 | "workbook_filename": "" 586 | }, 587 | "page_layout_descr_file": "", 588 | "plot_directory": "", 589 | "spice_adjust_passive_values": false, 590 | "spice_external_command": "spice \"%I\"", 591 | "subpart_first_id": 65, 592 | "subpart_id_separator": 0 593 | }, 594 | "sheets": [ 595 | [ 596 | "e401af1c-349e-4882-b648-716c9d0a116f", 597 | "" 598 | ] 599 | ], 600 | "text_variables": {} 601 | } 602 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /cpu-boards/esp32-pico-v3-02/inwall-relay-esp32.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20220622) (generator eeschema) 2 | 3 | (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) 4 | 5 | (paper "A4") 6 | 7 | (lib_symbols 8 | (symbol "Connector:Conn_01x01_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 9 | (property "Reference" "J" (id 0) (at 0 2.54 0) 10 | (effects (font (size 1.27 1.27))) 11 | ) 12 | (property "Value" "Conn_01x01_Male" (id 1) (at 0 -2.54 0) 13 | (effects (font (size 1.27 1.27))) 14 | ) 15 | (property "Footprint" "" (id 2) (at 0 0 0) 16 | (effects (font (size 1.27 1.27)) hide) 17 | ) 18 | (property "Datasheet" "~" (id 3) (at 0 0 0) 19 | (effects (font (size 1.27 1.27)) hide) 20 | ) 21 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 22 | (effects (font (size 1.27 1.27)) hide) 23 | ) 24 | (property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 25 | (effects (font (size 1.27 1.27)) hide) 26 | ) 27 | (property "ki_fp_filters" "Connector*:*" (id 6) (at 0 0 0) 28 | (effects (font (size 1.27 1.27)) hide) 29 | ) 30 | (symbol "Conn_01x01_Male_1_1" 31 | (polyline 32 | (pts 33 | (xy 1.27 0) 34 | (xy 0.8636 0) 35 | ) 36 | (stroke (width 0.1524) (type default)) 37 | (fill (type none)) 38 | ) 39 | (rectangle (start 0.8636 0.127) (end 0 -0.127) 40 | (stroke (width 0.1524) (type default)) 41 | (fill (type outline)) 42 | ) 43 | (pin passive line (at 5.08 0 180) (length 3.81) 44 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 45 | (number "1" (effects (font (size 1.27 1.27)))) 46 | ) 47 | ) 48 | ) 49 | (symbol "Connector:Conn_01x09_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 50 | (property "Reference" "J" (id 0) (at 0 12.7 0) 51 | (effects (font (size 1.27 1.27))) 52 | ) 53 | (property "Value" "Conn_01x09_Male" (id 1) (at 0 -12.7 0) 54 | (effects (font (size 1.27 1.27))) 55 | ) 56 | (property "Footprint" "" (id 2) (at 0 0 0) 57 | (effects (font (size 1.27 1.27)) hide) 58 | ) 59 | (property "Datasheet" "~" (id 3) (at 0 0 0) 60 | (effects (font (size 1.27 1.27)) hide) 61 | ) 62 | (property "ki_keywords" "connector" (id 4) (at 0 0 0) 63 | (effects (font (size 1.27 1.27)) hide) 64 | ) 65 | (property "ki_description" "Generic connector, single row, 01x09, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) 66 | (effects (font (size 1.27 1.27)) hide) 67 | ) 68 | (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) 69 | (effects (font (size 1.27 1.27)) hide) 70 | ) 71 | (symbol "Conn_01x09_Male_1_1" 72 | (polyline 73 | (pts 74 | (xy 1.27 -10.16) 75 | (xy 0.8636 -10.16) 76 | ) 77 | (stroke (width 0.1524) (type default)) 78 | (fill (type none)) 79 | ) 80 | (polyline 81 | (pts 82 | (xy 1.27 -7.62) 83 | (xy 0.8636 -7.62) 84 | ) 85 | (stroke (width 0.1524) (type default)) 86 | (fill (type none)) 87 | ) 88 | (polyline 89 | (pts 90 | (xy 1.27 -5.08) 91 | (xy 0.8636 -5.08) 92 | ) 93 | (stroke (width 0.1524) (type default)) 94 | (fill (type none)) 95 | ) 96 | (polyline 97 | (pts 98 | (xy 1.27 -2.54) 99 | (xy 0.8636 -2.54) 100 | ) 101 | (stroke (width 0.1524) (type default)) 102 | (fill (type none)) 103 | ) 104 | (polyline 105 | (pts 106 | (xy 1.27 0) 107 | (xy 0.8636 0) 108 | ) 109 | (stroke (width 0.1524) (type default)) 110 | (fill (type none)) 111 | ) 112 | (polyline 113 | (pts 114 | (xy 1.27 2.54) 115 | (xy 0.8636 2.54) 116 | ) 117 | (stroke (width 0.1524) (type default)) 118 | (fill (type none)) 119 | ) 120 | (polyline 121 | (pts 122 | (xy 1.27 5.08) 123 | (xy 0.8636 5.08) 124 | ) 125 | (stroke (width 0.1524) (type default)) 126 | (fill (type none)) 127 | ) 128 | (polyline 129 | (pts 130 | (xy 1.27 7.62) 131 | (xy 0.8636 7.62) 132 | ) 133 | (stroke (width 0.1524) (type default)) 134 | (fill (type none)) 135 | ) 136 | (polyline 137 | (pts 138 | (xy 1.27 10.16) 139 | (xy 0.8636 10.16) 140 | ) 141 | (stroke (width 0.1524) (type default)) 142 | (fill (type none)) 143 | ) 144 | (rectangle (start 0.8636 -10.033) (end 0 -10.287) 145 | (stroke (width 0.1524) (type default)) 146 | (fill (type outline)) 147 | ) 148 | (rectangle (start 0.8636 -7.493) (end 0 -7.747) 149 | (stroke (width 0.1524) (type default)) 150 | (fill (type outline)) 151 | ) 152 | (rectangle (start 0.8636 -4.953) (end 0 -5.207) 153 | (stroke (width 0.1524) (type default)) 154 | (fill (type outline)) 155 | ) 156 | (rectangle (start 0.8636 -2.413) (end 0 -2.667) 157 | (stroke (width 0.1524) (type default)) 158 | (fill (type outline)) 159 | ) 160 | (rectangle (start 0.8636 0.127) (end 0 -0.127) 161 | (stroke (width 0.1524) (type default)) 162 | (fill (type outline)) 163 | ) 164 | (rectangle (start 0.8636 2.667) (end 0 2.413) 165 | (stroke (width 0.1524) (type default)) 166 | (fill (type outline)) 167 | ) 168 | (rectangle (start 0.8636 5.207) (end 0 4.953) 169 | (stroke (width 0.1524) (type default)) 170 | (fill (type outline)) 171 | ) 172 | (rectangle (start 0.8636 7.747) (end 0 7.493) 173 | (stroke (width 0.1524) (type default)) 174 | (fill (type outline)) 175 | ) 176 | (rectangle (start 0.8636 10.287) (end 0 10.033) 177 | (stroke (width 0.1524) (type default)) 178 | (fill (type outline)) 179 | ) 180 | (pin passive line (at 5.08 10.16 180) (length 3.81) 181 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 182 | (number "1" (effects (font (size 1.27 1.27)))) 183 | ) 184 | (pin passive line (at 5.08 7.62 180) (length 3.81) 185 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 186 | (number "2" (effects (font (size 1.27 1.27)))) 187 | ) 188 | (pin passive line (at 5.08 5.08 180) (length 3.81) 189 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 190 | (number "3" (effects (font (size 1.27 1.27)))) 191 | ) 192 | (pin passive line (at 5.08 2.54 180) (length 3.81) 193 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 194 | (number "4" (effects (font (size 1.27 1.27)))) 195 | ) 196 | (pin passive line (at 5.08 0 180) (length 3.81) 197 | (name "Pin_5" (effects (font (size 1.27 1.27)))) 198 | (number "5" (effects (font (size 1.27 1.27)))) 199 | ) 200 | (pin passive line (at 5.08 -2.54 180) (length 3.81) 201 | (name "Pin_6" (effects (font (size 1.27 1.27)))) 202 | (number "6" (effects (font (size 1.27 1.27)))) 203 | ) 204 | (pin passive line (at 5.08 -5.08 180) (length 3.81) 205 | (name "Pin_7" (effects (font (size 1.27 1.27)))) 206 | (number "7" (effects (font (size 1.27 1.27)))) 207 | ) 208 | (pin passive line (at 5.08 -7.62 180) (length 3.81) 209 | (name "Pin_8" (effects (font (size 1.27 1.27)))) 210 | (number "8" (effects (font (size 1.27 1.27)))) 211 | ) 212 | (pin passive line (at 5.08 -10.16 180) (length 3.81) 213 | (name "Pin_9" (effects (font (size 1.27 1.27)))) 214 | (number "9" (effects (font (size 1.27 1.27)))) 215 | ) 216 | ) 217 | ) 218 | (symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) 219 | (property "Reference" "TP" (id 0) (at 0 6.858 0) 220 | (effects (font (size 1.27 1.27))) 221 | ) 222 | (property "Value" "TestPoint" (id 1) (at 0 5.08 0) 223 | (effects (font (size 1.27 1.27))) 224 | ) 225 | (property "Footprint" "" (id 2) (at 5.08 0 0) 226 | (effects (font (size 1.27 1.27)) hide) 227 | ) 228 | (property "Datasheet" "~" (id 3) (at 5.08 0 0) 229 | (effects (font (size 1.27 1.27)) hide) 230 | ) 231 | (property "ki_keywords" "test point tp" (id 4) (at 0 0 0) 232 | (effects (font (size 1.27 1.27)) hide) 233 | ) 234 | (property "ki_description" "test point" (id 5) (at 0 0 0) 235 | (effects (font (size 1.27 1.27)) hide) 236 | ) 237 | (property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0) 238 | (effects (font (size 1.27 1.27)) hide) 239 | ) 240 | (symbol "TestPoint_0_1" 241 | (circle (center 0 3.302) (radius 0.762) 242 | (stroke (width 0) (type default)) 243 | (fill (type none)) 244 | ) 245 | ) 246 | (symbol "TestPoint_1_1" 247 | (pin passive line (at 0 0 90) (length 2.54) 248 | (name "1" (effects (font (size 1.27 1.27)))) 249 | (number "1" (effects (font (size 1.27 1.27)))) 250 | ) 251 | ) 252 | ) 253 | (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 254 | (property "Reference" "C" (id 0) (at 0.635 2.54 0) 255 | (effects (font (size 1.27 1.27)) (justify left)) 256 | ) 257 | (property "Value" "C" (id 1) (at 0.635 -2.54 0) 258 | (effects (font (size 1.27 1.27)) (justify left)) 259 | ) 260 | (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) 261 | (effects (font (size 1.27 1.27)) hide) 262 | ) 263 | (property "Datasheet" "~" (id 3) (at 0 0 0) 264 | (effects (font (size 1.27 1.27)) hide) 265 | ) 266 | (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) 267 | (effects (font (size 1.27 1.27)) hide) 268 | ) 269 | (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) 270 | (effects (font (size 1.27 1.27)) hide) 271 | ) 272 | (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) 273 | (effects (font (size 1.27 1.27)) hide) 274 | ) 275 | (symbol "C_0_1" 276 | (polyline 277 | (pts 278 | (xy -2.032 -0.762) 279 | (xy 2.032 -0.762) 280 | ) 281 | (stroke (width 0.508) (type default)) 282 | (fill (type none)) 283 | ) 284 | (polyline 285 | (pts 286 | (xy -2.032 0.762) 287 | (xy 2.032 0.762) 288 | ) 289 | (stroke (width 0.508) (type default)) 290 | (fill (type none)) 291 | ) 292 | ) 293 | (symbol "C_1_1" 294 | (pin passive line (at 0 3.81 270) (length 2.794) 295 | (name "~" (effects (font (size 1.27 1.27)))) 296 | (number "1" (effects (font (size 1.27 1.27)))) 297 | ) 298 | (pin passive line (at 0 -3.81 90) (length 2.794) 299 | (name "~" (effects (font (size 1.27 1.27)))) 300 | (number "2" (effects (font (size 1.27 1.27)))) 301 | ) 302 | ) 303 | ) 304 | (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) 305 | (property "Reference" "R" (id 0) (at 2.032 0 90) 306 | (effects (font (size 1.27 1.27))) 307 | ) 308 | (property "Value" "R" (id 1) (at 0 0 90) 309 | (effects (font (size 1.27 1.27))) 310 | ) 311 | (property "Footprint" "" (id 2) (at -1.778 0 90) 312 | (effects (font (size 1.27 1.27)) hide) 313 | ) 314 | (property "Datasheet" "~" (id 3) (at 0 0 0) 315 | (effects (font (size 1.27 1.27)) hide) 316 | ) 317 | (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) 318 | (effects (font (size 1.27 1.27)) hide) 319 | ) 320 | (property "ki_description" "Resistor" (id 5) (at 0 0 0) 321 | (effects (font (size 1.27 1.27)) hide) 322 | ) 323 | (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) 324 | (effects (font (size 1.27 1.27)) hide) 325 | ) 326 | (symbol "R_0_1" 327 | (rectangle (start -1.016 -2.54) (end 1.016 2.54) 328 | (stroke (width 0.254) (type default)) 329 | (fill (type none)) 330 | ) 331 | ) 332 | (symbol "R_1_1" 333 | (pin passive line (at 0 3.81 270) (length 1.27) 334 | (name "~" (effects (font (size 1.27 1.27)))) 335 | (number "1" (effects (font (size 1.27 1.27)))) 336 | ) 337 | (pin passive line (at 0 -3.81 90) (length 1.27) 338 | (name "~" (effects (font (size 1.27 1.27)))) 339 | (number "2" (effects (font (size 1.27 1.27)))) 340 | ) 341 | ) 342 | ) 343 | (symbol "LED:WS2812B-2020" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) 344 | (property "Reference" "D" (id 0) (at 5.08 5.715 0) 345 | (effects (font (size 1.27 1.27)) (justify right bottom)) 346 | ) 347 | (property "Value" "WS2812B-2020" (id 1) (at 1.27 -5.715 0) 348 | (effects (font (size 1.27 1.27)) (justify left top)) 349 | ) 350 | (property "Footprint" "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" (id 2) (at 1.27 -7.62 0) 351 | (effects (font (size 1.27 1.27)) (justify left top) hide) 352 | ) 353 | (property "Datasheet" "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" (id 3) (at 2.54 -9.525 0) 354 | (effects (font (size 1.27 1.27)) (justify left top) hide) 355 | ) 356 | (property "ki_keywords" "RGB LED NeoPixel addressable" (id 4) (at 0 0 0) 357 | (effects (font (size 1.27 1.27)) hide) 358 | ) 359 | (property "ki_description" "RGB LED with integrated controller" (id 5) (at 0 0 0) 360 | (effects (font (size 1.27 1.27)) hide) 361 | ) 362 | (property "ki_fp_filters" "ws2812b-2020" (id 6) (at 0 0 0) 363 | (effects (font (size 1.27 1.27)) hide) 364 | ) 365 | (symbol "WS2812B-2020_0_0" 366 | (text "RGB" (at 2.286 -4.191 0) 367 | (effects (font (size 0.762 0.762))) 368 | ) 369 | ) 370 | (symbol "WS2812B-2020_0_1" 371 | (polyline 372 | (pts 373 | (xy 1.27 -3.556) 374 | (xy 1.778 -3.556) 375 | ) 376 | (stroke (width 0) (type default)) 377 | (fill (type none)) 378 | ) 379 | (polyline 380 | (pts 381 | (xy 1.27 -2.54) 382 | (xy 1.778 -2.54) 383 | ) 384 | (stroke (width 0) (type default)) 385 | (fill (type none)) 386 | ) 387 | (polyline 388 | (pts 389 | (xy 4.699 -3.556) 390 | (xy 2.667 -3.556) 391 | ) 392 | (stroke (width 0) (type default)) 393 | (fill (type none)) 394 | ) 395 | (polyline 396 | (pts 397 | (xy 2.286 -2.54) 398 | (xy 1.27 -3.556) 399 | (xy 1.27 -3.048) 400 | ) 401 | (stroke (width 0) (type default)) 402 | (fill (type none)) 403 | ) 404 | (polyline 405 | (pts 406 | (xy 2.286 -1.524) 407 | (xy 1.27 -2.54) 408 | (xy 1.27 -2.032) 409 | ) 410 | (stroke (width 0) (type default)) 411 | (fill (type none)) 412 | ) 413 | (polyline 414 | (pts 415 | (xy 3.683 -1.016) 416 | (xy 3.683 -3.556) 417 | (xy 3.683 -4.064) 418 | ) 419 | (stroke (width 0) (type default)) 420 | (fill (type none)) 421 | ) 422 | (polyline 423 | (pts 424 | (xy 4.699 -1.524) 425 | (xy 2.667 -1.524) 426 | (xy 3.683 -3.556) 427 | (xy 4.699 -1.524) 428 | ) 429 | (stroke (width 0) (type default)) 430 | (fill (type none)) 431 | ) 432 | (rectangle (start 5.08 5.08) (end -5.08 -5.08) 433 | (stroke (width 0.254) (type default)) 434 | (fill (type background)) 435 | ) 436 | ) 437 | (symbol "WS2812B-2020_1_1" 438 | (pin output line (at 7.62 0 180) (length 2.54) 439 | (name "DOUT" (effects (font (size 1.27 1.27)))) 440 | (number "1" (effects (font (size 1.27 1.27)))) 441 | ) 442 | (pin power_in line (at 0 -7.62 90) (length 2.54) 443 | (name "VSS" (effects (font (size 1.27 1.27)))) 444 | (number "2" (effects (font (size 1.27 1.27)))) 445 | ) 446 | (pin input line (at -7.62 0 0) (length 2.54) 447 | (name "DIN" (effects (font (size 1.27 1.27)))) 448 | (number "3" (effects (font (size 1.27 1.27)))) 449 | ) 450 | (pin power_in line (at 0 7.62 270) (length 2.54) 451 | (name "VDD" (effects (font (size 1.27 1.27)))) 452 | (number "4" (effects (font (size 1.27 1.27)))) 453 | ) 454 | ) 455 | ) 456 | (symbol "Memory_EEPROM:24AA02-OT" (in_bom yes) (on_board yes) 457 | (property "Reference" "U" (id 0) (at -7.62 6.35 0) 458 | (effects (font (size 1.27 1.27))) 459 | ) 460 | (property "Value" "24AA02-OT" (id 1) (at 2.54 -6.35 0) 461 | (effects (font (size 1.27 1.27)) (justify left)) 462 | ) 463 | (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 0 0 0) 464 | (effects (font (size 1.27 1.27)) hide) 465 | ) 466 | (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21709J.pdf" (id 3) (at 0 0 0) 467 | (effects (font (size 1.27 1.27)) hide) 468 | ) 469 | (property "ki_keywords" "I2C Serial EEPROM" (id 4) (at 0 0 0) 470 | (effects (font (size 1.27 1.27)) hide) 471 | ) 472 | (property "ki_description" "I2C Serial EEPROM, 2Kb, SOT-23" (id 5) (at 0 0 0) 473 | (effects (font (size 1.27 1.27)) hide) 474 | ) 475 | (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0) 476 | (effects (font (size 1.27 1.27)) hide) 477 | ) 478 | (symbol "24AA02-OT_1_1" 479 | (rectangle (start -7.62 5.08) (end 7.62 -5.08) 480 | (stroke (width 0.254) (type default)) 481 | (fill (type background)) 482 | ) 483 | (pin input line (at 10.16 0 180) (length 2.54) 484 | (name "SCL" (effects (font (size 1.27 1.27)))) 485 | (number "1" (effects (font (size 1.27 1.27)))) 486 | ) 487 | (pin power_in line (at 0 -7.62 90) (length 2.54) 488 | (name "GND" (effects (font (size 1.27 1.27)))) 489 | (number "2" (effects (font (size 1.27 1.27)))) 490 | ) 491 | (pin bidirectional line (at 10.16 2.54 180) (length 2.54) 492 | (name "SDA" (effects (font (size 1.27 1.27)))) 493 | (number "3" (effects (font (size 1.27 1.27)))) 494 | ) 495 | (pin power_in line (at 0 7.62 270) (length 2.54) 496 | (name "VCC" (effects (font (size 1.27 1.27)))) 497 | (number "4" (effects (font (size 1.27 1.27)))) 498 | ) 499 | (pin no_connect line (at 7.62 -2.54 180) (length 2.54) hide 500 | (name "NC" (effects (font (size 1.27 1.27)))) 501 | (number "5" (effects (font (size 1.27 1.27)))) 502 | ) 503 | ) 504 | ) 505 | (symbol "RF_Module:ESP32-PICO-D4" (in_bom yes) (on_board yes) 506 | (property "Reference" "U" (id 0) (at -17.78 39.37 0) 507 | (effects (font (size 1.27 1.27)) (justify left)) 508 | ) 509 | (property "Value" "ESP32-PICO-D4" (id 1) (at 3.81 39.37 0) 510 | (effects (font (size 1.27 1.27)) (justify left)) 511 | ) 512 | (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm" (id 2) (at 0 -43.18 0) 513 | (effects (font (size 1.27 1.27)) hide) 514 | ) 515 | (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf" (id 3) (at 6.35 -25.4 0) 516 | (effects (font (size 1.27 1.27)) hide) 517 | ) 518 | (property "ki_keywords" "RF Radio BT ESP ESP32 Espressif external antenna" (id 4) (at 0 0 0) 519 | (effects (font (size 1.27 1.27)) hide) 520 | ) 521 | (property "ki_description" "RF Module, ESP32 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 2.7-3.6V, external antenna, QFN-48" (id 5) (at 0 0 0) 522 | (effects (font (size 1.27 1.27)) hide) 523 | ) 524 | (property "ki_fp_filters" "QFN*1EP*7x7mm*P0.5mm*" (id 6) (at 0 0 0) 525 | (effects (font (size 1.27 1.27)) hide) 526 | ) 527 | (symbol "ESP32-PICO-D4_0_0" 528 | (pin power_in line (at -5.08 40.64 270) (length 2.54) 529 | (name "VDDA" (effects (font (size 1.27 1.27)))) 530 | (number "1" (effects (font (size 1.27 1.27)))) 531 | ) 532 | (pin input line (at 20.32 -25.4 180) (length 2.54) 533 | (name "IO34" (effects (font (size 1.27 1.27)))) 534 | (number "10" (effects (font (size 1.27 1.27)))) 535 | ) 536 | (pin input line (at 20.32 -27.94 180) (length 2.54) 537 | (name "IO35" (effects (font (size 1.27 1.27)))) 538 | (number "11" (effects (font (size 1.27 1.27)))) 539 | ) 540 | (pin bidirectional line (at 20.32 -20.32 180) (length 2.54) 541 | (name "IO32" (effects (font (size 1.27 1.27)))) 542 | (number "12" (effects (font (size 1.27 1.27)))) 543 | ) 544 | (pin bidirectional line (at 20.32 -22.86 180) (length 2.54) 545 | (name "IO33" (effects (font (size 1.27 1.27)))) 546 | (number "13" (effects (font (size 1.27 1.27)))) 547 | ) 548 | (pin bidirectional line (at 20.32 -12.7 180) (length 2.54) 549 | (name "IO25" (effects (font (size 1.27 1.27)))) 550 | (number "14" (effects (font (size 1.27 1.27)))) 551 | ) 552 | (pin bidirectional line (at 20.32 -15.24 180) (length 2.54) 553 | (name "IO26" (effects (font (size 1.27 1.27)))) 554 | (number "15" (effects (font (size 1.27 1.27)))) 555 | ) 556 | (pin bidirectional line (at 20.32 -17.78 180) (length 2.54) 557 | (name "IO27" (effects (font (size 1.27 1.27)))) 558 | (number "16" (effects (font (size 1.27 1.27)))) 559 | ) 560 | (pin bidirectional line (at 20.32 5.08 180) (length 2.54) 561 | (name "IO14" (effects (font (size 1.27 1.27)))) 562 | (number "17" (effects (font (size 1.27 1.27)))) 563 | ) 564 | (pin bidirectional line (at 20.32 10.16 180) (length 2.54) 565 | (name "IO12" (effects (font (size 1.27 1.27)))) 566 | (number "18" (effects (font (size 1.27 1.27)))) 567 | ) 568 | (pin power_in line (at 0 40.64 270) (length 2.54) 569 | (name "VDD3P3_RTC" (effects (font (size 1.27 1.27)))) 570 | (number "19" (effects (font (size 1.27 1.27)))) 571 | ) 572 | (pin bidirectional line (at 20.32 35.56 180) (length 2.54) 573 | (name "LNA_IN" (effects (font (size 1.27 1.27)))) 574 | (number "2" (effects (font (size 1.27 1.27)))) 575 | ) 576 | (pin bidirectional line (at 20.32 7.62 180) (length 2.54) 577 | (name "IO13" (effects (font (size 1.27 1.27)))) 578 | (number "20" (effects (font (size 1.27 1.27)))) 579 | ) 580 | (pin bidirectional line (at 20.32 2.54 180) (length 2.54) 581 | (name "IO15" (effects (font (size 1.27 1.27)))) 582 | (number "21" (effects (font (size 1.27 1.27)))) 583 | ) 584 | (pin bidirectional line (at 20.32 25.4 180) (length 2.54) 585 | (name "IO2" (effects (font (size 1.27 1.27)))) 586 | (number "22" (effects (font (size 1.27 1.27)))) 587 | ) 588 | (pin bidirectional line (at 20.32 30.48 180) (length 2.54) 589 | (name "IO0" (effects (font (size 1.27 1.27)))) 590 | (number "23" (effects (font (size 1.27 1.27)))) 591 | ) 592 | (pin bidirectional line (at 20.32 20.32 180) (length 2.54) 593 | (name "IO4" (effects (font (size 1.27 1.27)))) 594 | (number "24" (effects (font (size 1.27 1.27)))) 595 | ) 596 | (pin bidirectional line (at -20.32 0 0) (length 2.54) 597 | (name "IO16" (effects (font (size 1.27 1.27)))) 598 | (number "25" (effects (font (size 1.27 1.27)))) 599 | ) 600 | (pin power_out line (at 20.32 -33.02 180) (length 2.54) 601 | (name "VDD_SDIO" (effects (font (size 1.27 1.27)))) 602 | (number "26" (effects (font (size 1.27 1.27)))) 603 | ) 604 | (pin bidirectional line (at -20.32 -2.54 0) (length 2.54) 605 | (name "IO17" (effects (font (size 1.27 1.27)))) 606 | (number "27" (effects (font (size 1.27 1.27)))) 607 | ) 608 | (pin bidirectional line (at 20.32 15.24 180) (length 2.54) 609 | (name "SD2/IO9" (effects (font (size 1.27 1.27)))) 610 | (number "28" (effects (font (size 1.27 1.27)))) 611 | ) 612 | (pin bidirectional line (at 20.32 12.7 180) (length 2.54) 613 | (name "SD3/IO10" (effects (font (size 1.27 1.27)))) 614 | (number "29" (effects (font (size 1.27 1.27)))) 615 | ) 616 | (pin power_in line (at -2.54 40.64 270) (length 2.54) 617 | (name "VDDA3P3" (effects (font (size 1.27 1.27)))) 618 | (number "3" (effects (font (size 1.27 1.27)))) 619 | ) 620 | (pin bidirectional line (at -20.32 -12.7 0) (length 2.54) 621 | (name "CMD" (effects (font (size 1.27 1.27)))) 622 | (number "30" (effects (font (size 1.27 1.27)))) 623 | ) 624 | (pin bidirectional line (at -20.32 -10.16 0) (length 2.54) 625 | (name "CLK" (effects (font (size 1.27 1.27)))) 626 | (number "31" (effects (font (size 1.27 1.27)))) 627 | ) 628 | (pin bidirectional line (at -20.32 -5.08 0) (length 2.54) 629 | (name "SD0" (effects (font (size 1.27 1.27)))) 630 | (number "32" (effects (font (size 1.27 1.27)))) 631 | ) 632 | (pin bidirectional line (at -20.32 -7.62 0) (length 2.54) 633 | (name "SD1" (effects (font (size 1.27 1.27)))) 634 | (number "33" (effects (font (size 1.27 1.27)))) 635 | ) 636 | (pin bidirectional line (at 20.32 17.78 180) (length 2.54) 637 | (name "IO5" (effects (font (size 1.27 1.27)))) 638 | (number "34" (effects (font (size 1.27 1.27)))) 639 | ) 640 | (pin bidirectional line (at 20.32 0 180) (length 2.54) 641 | (name "IO18" (effects (font (size 1.27 1.27)))) 642 | (number "35" (effects (font (size 1.27 1.27)))) 643 | ) 644 | (pin bidirectional line (at 20.32 -10.16 180) (length 2.54) 645 | (name "IO23" (effects (font (size 1.27 1.27)))) 646 | (number "36" (effects (font (size 1.27 1.27)))) 647 | ) 648 | (pin power_in line (at 2.54 40.64 270) (length 2.54) 649 | (name "VDD3P3_CPU" (effects (font (size 1.27 1.27)))) 650 | (number "37" (effects (font (size 1.27 1.27)))) 651 | ) 652 | (pin bidirectional line (at 20.32 -2.54 180) (length 2.54) 653 | (name "IO19" (effects (font (size 1.27 1.27)))) 654 | (number "38" (effects (font (size 1.27 1.27)))) 655 | ) 656 | (pin bidirectional line (at 20.32 -7.62 180) (length 2.54) 657 | (name "IO22" (effects (font (size 1.27 1.27)))) 658 | (number "39" (effects (font (size 1.27 1.27)))) 659 | ) 660 | (pin passive line (at -2.54 40.64 270) (length 2.54) hide 661 | (name "VDDA3P3" (effects (font (size 1.27 1.27)))) 662 | (number "4" (effects (font (size 1.27 1.27)))) 663 | ) 664 | (pin bidirectional line (at 20.32 22.86 180) (length 2.54) 665 | (name "U0RXD/IO3" (effects (font (size 1.27 1.27)))) 666 | (number "40" (effects (font (size 1.27 1.27)))) 667 | ) 668 | (pin bidirectional line (at 20.32 27.94 180) (length 2.54) 669 | (name "U0TXD/IO1" (effects (font (size 1.27 1.27)))) 670 | (number "41" (effects (font (size 1.27 1.27)))) 671 | ) 672 | (pin bidirectional line (at 20.32 -5.08 180) (length 2.54) 673 | (name "IO21" (effects (font (size 1.27 1.27)))) 674 | (number "42" (effects (font (size 1.27 1.27)))) 675 | ) 676 | (pin passive line (at -5.08 40.64 270) (length 2.54) hide 677 | (name "VDDA" (effects (font (size 1.27 1.27)))) 678 | (number "43" (effects (font (size 1.27 1.27)))) 679 | ) 680 | (pin no_connect line (at -17.78 -25.4 0) (length 2.54) hide 681 | (name "XTAL_N_NC" (effects (font (size 1.27 1.27)))) 682 | (number "44" (effects (font (size 1.27 1.27)))) 683 | ) 684 | (pin no_connect line (at -17.78 -27.94 0) (length 2.54) hide 685 | (name "XTAL_P_NC" (effects (font (size 1.27 1.27)))) 686 | (number "45" (effects (font (size 1.27 1.27)))) 687 | ) 688 | (pin passive line (at -5.08 40.64 270) (length 2.54) hide 689 | (name "VDDA" (effects (font (size 1.27 1.27)))) 690 | (number "46" (effects (font (size 1.27 1.27)))) 691 | ) 692 | (pin no_connect line (at -17.78 -30.48 0) (length 2.54) hide 693 | (name "CAP2_NC" (effects (font (size 1.27 1.27)))) 694 | (number "47" (effects (font (size 1.27 1.27)))) 695 | ) 696 | (pin no_connect line (at -17.78 -33.02 0) (length 2.54) hide 697 | (name "CAP1_NC" (effects (font (size 1.27 1.27)))) 698 | (number "48" (effects (font (size 1.27 1.27)))) 699 | ) 700 | (pin power_in line (at 0 -40.64 90) (length 2.54) 701 | (name "GND" (effects (font (size 1.27 1.27)))) 702 | (number "49" (effects (font (size 1.27 1.27)))) 703 | ) 704 | (pin input line (at -20.32 30.48 0) (length 2.54) 705 | (name "SENSOR_VP" (effects (font (size 1.27 1.27)))) 706 | (number "5" (effects (font (size 1.27 1.27)))) 707 | ) 708 | (pin input line (at -20.32 27.94 0) (length 2.54) 709 | (name "SENSOR_CAPP" (effects (font (size 1.27 1.27)))) 710 | (number "6" (effects (font (size 1.27 1.27)))) 711 | ) 712 | (pin input line (at -20.32 25.4 0) (length 2.54) 713 | (name "SENSOR_CAPN" (effects (font (size 1.27 1.27)))) 714 | (number "7" (effects (font (size 1.27 1.27)))) 715 | ) 716 | (pin input line (at -20.32 22.86 0) (length 2.54) 717 | (name "SENSOR_VN" (effects (font (size 1.27 1.27)))) 718 | (number "8" (effects (font (size 1.27 1.27)))) 719 | ) 720 | (pin input line (at -20.32 35.56 0) (length 2.54) 721 | (name "EN" (effects (font (size 1.27 1.27)))) 722 | (number "9" (effects (font (size 1.27 1.27)))) 723 | ) 724 | ) 725 | (symbol "ESP32-PICO-D4_0_1" 726 | (rectangle (start -17.78 38.1) (end 17.78 -38.1) 727 | (stroke (width 0.254) (type default)) 728 | (fill (type background)) 729 | ) 730 | ) 731 | ) 732 | (symbol "Regulator_Linear:NCP167" (in_bom yes) (on_board yes) 733 | (property "Reference" "U5" (id 0) (at 8.89 6.35 0) 734 | (effects (font (size 1.27 1.27))) 735 | ) 736 | (property "Value" "NCP167" (id 1) (at 8.89 5.08 0) 737 | (effects (font (size 1.27 1.27))) 738 | ) 739 | (property "Footprint" "Package_DFN_QFN:OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm" (id 2) (at 0 1.27 0) 740 | (effects (font (size 1.27 1.27)) hide) 741 | ) 742 | (property "Datasheet" "" (id 3) (at 0 1.27 0) 743 | (effects (font (size 1.27 1.27)) hide) 744 | ) 745 | (symbol "NCP167_0_1" 746 | (rectangle (start 2.54 3.81) (end 15.24 -6.35) 747 | (stroke (width 0) (type default)) 748 | (fill (type background)) 749 | ) 750 | ) 751 | (symbol "NCP167_1_1" 752 | (pin power_out line (at 17.78 0 180) (length 2.54) 753 | (name "VOUT" (effects (font (size 1.27 1.27)))) 754 | (number "1" (effects (font (size 1.27 1.27)))) 755 | ) 756 | (pin passive line (at 8.89 -8.89 90) (length 2.54) 757 | (name "GND" (effects (font (size 1.27 1.27)))) 758 | (number "2" (effects (font (size 1.27 1.27)))) 759 | ) 760 | (pin input line (at 0 -3.81 0) (length 2.54) 761 | (name "/EN" (effects (font (size 1.27 1.27)))) 762 | (number "3" (effects (font (size 1.27 1.27)))) 763 | ) 764 | (pin power_in line (at 0 0 0) (length 2.54) 765 | (name "VIN" (effects (font (size 1.27 1.27)))) 766 | (number "4" (effects (font (size 1.27 1.27)))) 767 | ) 768 | ) 769 | ) 770 | (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) 771 | (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) 772 | (effects (font (size 1.27 1.27)) hide) 773 | ) 774 | (property "Value" "GND" (id 1) (at 0 -3.81 0) 775 | (effects (font (size 1.27 1.27))) 776 | ) 777 | (property "Footprint" "" (id 2) (at 0 0 0) 778 | (effects (font (size 1.27 1.27)) hide) 779 | ) 780 | (property "Datasheet" "" (id 3) (at 0 0 0) 781 | (effects (font (size 1.27 1.27)) hide) 782 | ) 783 | (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) 784 | (effects (font (size 1.27 1.27)) hide) 785 | ) 786 | (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) 787 | (effects (font (size 1.27 1.27)) hide) 788 | ) 789 | (symbol "GND_0_1" 790 | (polyline 791 | (pts 792 | (xy 0 0) 793 | (xy 0 -1.27) 794 | (xy 1.27 -1.27) 795 | (xy 0 -2.54) 796 | (xy -1.27 -1.27) 797 | (xy 0 -1.27) 798 | ) 799 | (stroke (width 0) (type default)) 800 | (fill (type none)) 801 | ) 802 | ) 803 | (symbol "GND_1_1" 804 | (pin power_in line (at 0 0 270) (length 0) hide 805 | (name "GND" (effects (font (size 1.27 1.27)))) 806 | (number "1" (effects (font (size 1.27 1.27)))) 807 | ) 808 | ) 809 | ) 810 | ) 811 | 812 | (junction (at 192.405 118.11) (diameter 0) (color 0 0 0 0) 813 | (uuid 003891d8-0903-4537-b765-55f80bc44c42) 814 | ) 815 | (junction (at 177.165 29.21) (diameter 0) (color 0 0 0 0) 816 | (uuid 21d53bb7-425e-4dc0-9d5b-90766ff8cc80) 817 | ) 818 | (junction (at 185.42 107.95) (diameter 0) (color 0 0 0 0) 819 | (uuid 2835bcca-4b5b-4404-b3d7-cfbd434919c9) 820 | ) 821 | (junction (at 198.755 107.95) (diameter 0) (color 0 0 0 0) 822 | (uuid 98ba3a4c-5129-4767-9909-fddc5c6a3824) 823 | ) 824 | (junction (at 261.62 -10.16) (diameter 0) (color 0 0 0 0) 825 | (uuid be7a3dd3-2277-4b87-b1a9-c5efb73ac970) 826 | ) 827 | (junction (at 86.36 46.99) (diameter 0) (color 0 0 0 0) 828 | (uuid c0159144-ff5e-4caa-8b87-3e3cfb32ea0e) 829 | ) 830 | (junction (at 197.485 29.21) (diameter 0) (color 0 0 0 0) 831 | (uuid d254954b-210e-4f67-8362-ecc7b5ace37a) 832 | ) 833 | (junction (at 91.44 46.99) (diameter 0) (color 0 0 0 0) 834 | (uuid d3730dfe-d944-4116-9eee-9a49a6b09147) 835 | ) 836 | (junction (at 187.325 39.37) (diameter 0) (color 0 0 0 0) 837 | (uuid d77f6e99-6d1e-4a46-a41c-f88189493ac6) 838 | ) 839 | (junction (at 81.915 120.015) (diameter 0) (color 0 0 0 0) 840 | (uuid db4f2284-a940-40fe-99a4-3726f13ac648) 841 | ) 842 | (junction (at 252.73 -10.16) (diameter 0) (color 0 0 0 0) 843 | (uuid f01fe19c-5ee8-4bdb-be32-89b48b5e9cc0) 844 | ) 845 | 846 | (wire (pts (xy 197.485 26.035) (xy 197.485 29.21)) 847 | (stroke (width 0) (type default)) 848 | (uuid 045cdc5c-9dfd-4bcd-9173-a74520e549f7) 849 | ) 850 | (wire (pts (xy 55.245 108.585) (xy 57.15 108.585)) 851 | (stroke (width 0) (type default)) 852 | (uuid 04ece4fe-4589-4038-b4f6-71e36abb4b4d) 853 | ) 854 | (wire (pts (xy 174.625 -10.795) (xy 174.625 -9.525)) 855 | (stroke (width 0) (type default)) 856 | (uuid 056cfc80-fe79-4335-a4a1-0728bbec4348) 857 | ) 858 | (wire (pts (xy 134.62 46.99) (xy 136.525 46.99)) 859 | (stroke (width 0) (type default)) 860 | (uuid 0d87c4ed-442e-4974-a315-6f8b80fcdc2b) 861 | ) 862 | (wire (pts (xy 223.52 -18.415) (xy 224.79 -18.415)) 863 | (stroke (width 0) (type default)) 864 | (uuid 0f8f9809-873c-4ab3-8733-10e14650e1ed) 865 | ) 866 | (wire (pts (xy 175.895 29.21) (xy 177.165 29.21)) 867 | (stroke (width 0) (type default)) 868 | (uuid 0f95b5e5-8291-491d-8519-ff4faad3000d) 869 | ) 870 | (wire (pts (xy 91.44 33.655) (xy 91.44 35.56)) 871 | (stroke (width 0) (type default)) 872 | (uuid 0fb4bb47-d1ce-4091-a2f4-f6c1f2eb3f24) 873 | ) 874 | (wire (pts (xy 86.36 56.515) (xy 86.36 57.785)) 875 | (stroke (width 0) (type default)) 876 | (uuid 12726659-b500-4a0e-b0bf-9847c4c565ba) 877 | ) 878 | (wire (pts (xy 134.62 62.23) (xy 136.525 62.23)) 879 | (stroke (width 0) (type default)) 880 | (uuid 15ac7235-d605-4ff9-9aac-14d413ddf403) 881 | ) 882 | (wire (pts (xy 165.735 -10.795) (xy 165.735 -9.525)) 883 | (stroke (width 0) (type default)) 884 | (uuid 163b4f02-ce0e-491d-9e96-bb78a94d495b) 885 | ) 886 | (wire (pts (xy 251.46 44.45) (xy 251.46 46.355)) 887 | (stroke (width 0) (type default)) 888 | (uuid 17f94f9f-b994-4d88-bd30-9583b014fc94) 889 | ) 890 | (wire (pts (xy 134.62 90.17) (xy 136.525 90.17)) 891 | (stroke (width 0) (type default)) 892 | (uuid 1811c33b-faf0-41a7-a07e-49c21c6af74b) 893 | ) 894 | (wire (pts (xy 269.875 -1.905) (xy 269.875 -0.635)) 895 | (stroke (width 0) (type default)) 896 | (uuid 22573b74-6628-4f02-b9de-4da2e2510b0b) 897 | ) 898 | (wire (pts (xy 91.44 43.18) (xy 91.44 46.99)) 899 | (stroke (width 0) (type default)) 900 | (uuid 26f7a2b4-9129-4c01-a66a-e1087b9af701) 901 | ) 902 | (wire (pts (xy 111.76 40.005) (xy 111.76 41.91)) 903 | (stroke (width 0) (type default)) 904 | (uuid 2c1272b9-11c6-47a9-a811-e195648a4ada) 905 | ) 906 | (wire (pts (xy 187.325 39.37) (xy 188.595 39.37)) 907 | (stroke (width 0) (type default)) 908 | (uuid 2d3db41c-0329-4807-aa03-b252e69498ce) 909 | ) 910 | (wire (pts (xy 114.3 40.005) (xy 114.3 41.91)) 911 | (stroke (width 0) (type default)) 912 | (uuid 2e576571-6d89-488d-b52b-46e90ca7f771) 913 | ) 914 | (wire (pts (xy 134.62 64.77) (xy 136.525 64.77)) 915 | (stroke (width 0) (type default)) 916 | (uuid 334c6d41-b81d-43f4-b0ea-5ae63d71f939) 917 | ) 918 | (wire (pts (xy 198.755 118.11) (xy 198.755 117.475)) 919 | (stroke (width 0) (type default)) 920 | (uuid 3722d41f-3fe2-41c1-a612-171ff9d3e467) 921 | ) 922 | (wire (pts (xy 178.435 33.02) (xy 177.165 33.02)) 923 | (stroke (width 0) (type default)) 924 | (uuid 3841d60c-9531-40c5-986f-c9ea599ed2ed) 925 | ) 926 | (wire (pts (xy 177.165 33.02) (xy 177.165 29.21)) 927 | (stroke (width 0) (type default)) 928 | (uuid 4339678d-a447-4fd9-9f1c-6dbe3b2bf8a0) 929 | ) 930 | (wire (pts (xy 187.325 38.1) (xy 187.325 39.37)) 931 | (stroke (width 0) (type default)) 932 | (uuid 4353837c-a2fb-4611-bacc-6ffdbdb30e31) 933 | ) 934 | (wire (pts (xy 91.44 87.63) (xy 93.98 87.63)) 935 | (stroke (width 0) (type default)) 936 | (uuid 4a298949-a1c8-4fa6-ac04-38d9844dda5c) 937 | ) 938 | (wire (pts (xy 213.995 69.85) (xy 220.345 69.85)) 939 | (stroke (width 0) (type default)) 940 | (uuid 4b33e9c6-1474-4b18-9548-ee0f351ccef8) 941 | ) 942 | (wire (pts (xy 134.62 85.09) (xy 136.525 85.09)) 943 | (stroke (width 0) (type default)) 944 | (uuid 55ed73a7-51dc-499f-b11a-5ec63d0d43a0) 945 | ) 946 | (wire (pts (xy 251.46 27.94) (xy 251.46 29.21)) 947 | (stroke (width 0) (type default)) 948 | (uuid 5639cf5f-4be1-4dc7-85c3-67f74ccbf49e) 949 | ) 950 | (wire (pts (xy 261.62 -1.905) (xy 261.62 -0.635)) 951 | (stroke (width 0) (type default)) 952 | (uuid 5ccda6ff-2950-49ab-a526-086b54f259ff) 953 | ) 954 | (wire (pts (xy 185.42 107.95) (xy 188.595 107.95)) 955 | (stroke (width 0) (type default)) 956 | (uuid 61263771-a8e1-487c-9d7e-34afacb6d74d) 957 | ) 958 | (wire (pts (xy 185.42 117.475) (xy 185.42 118.11)) 959 | (stroke (width 0) (type default)) 960 | (uuid 65c1f6f7-df9f-427a-aa59-98ee2bae08d0) 961 | ) 962 | (wire (pts (xy 241.3 36.83) (xy 243.84 36.83)) 963 | (stroke (width 0) (type default)) 964 | (uuid 70ea51e1-708c-49a7-a6a3-d869c0d01565) 965 | ) 966 | (wire (pts (xy 208.915 -10.795) (xy 208.915 -9.525)) 967 | (stroke (width 0) (type default)) 968 | (uuid 74d663a3-2ab3-4b21-b139-ddb7bc3166a8) 969 | ) 970 | (wire (pts (xy 134.62 87.63) (xy 136.525 87.63)) 971 | (stroke (width 0) (type default)) 972 | (uuid 7602ea4e-d3b1-451c-b961-17607dcd185e) 973 | ) 974 | (wire (pts (xy 86.36 46.99) (xy 86.36 48.895)) 975 | (stroke (width 0) (type default)) 976 | (uuid 771ca9cf-590e-4238-82e8-b520d1b04fd1) 977 | ) 978 | (wire (pts (xy 213.995 85.09) (xy 220.345 85.09)) 979 | (stroke (width 0) (type default)) 980 | (uuid 7a474735-059b-43af-a27c-b804fe54f821) 981 | ) 982 | (wire (pts (xy 134.62 54.61) (xy 136.525 54.61)) 983 | (stroke (width 0) (type default)) 984 | (uuid 7ee85fc8-2982-491f-9c3e-1fb7fc81010d) 985 | ) 986 | (wire (pts (xy 64.77 117.475) (xy 66.675 117.475)) 987 | (stroke (width 0) (type default)) 988 | (uuid 81b4a9b1-4766-442d-b094-fe50ad3db321) 989 | ) 990 | (wire (pts (xy 196.215 107.95) (xy 198.755 107.95)) 991 | (stroke (width 0) (type default)) 992 | (uuid 824004b8-e620-49b1-8ff2-573bf9ec3ac8) 993 | ) 994 | (wire (pts (xy 213.995 72.39) (xy 220.345 72.39)) 995 | (stroke (width 0) (type default)) 996 | (uuid 858bafff-951b-4041-9aac-5714a52c5ccf) 997 | ) 998 | (wire (pts (xy 182.88 107.95) (xy 185.42 107.95)) 999 | (stroke (width 0) (type default)) 1000 | (uuid 86cb5255-da91-4805-98b4-d9ba50074d60) 1001 | ) 1002 | (wire (pts (xy 173.355 -18.415) (xy 174.625 -18.415)) 1003 | (stroke (width 0) (type default)) 1004 | (uuid 882b5267-8bf0-4bc8-a2e3-9f00b36758d7) 1005 | ) 1006 | (wire (pts (xy 252.73 -10.16) (xy 252.73 -9.525)) 1007 | (stroke (width 0) (type default)) 1008 | (uuid 894453d2-b7de-4ed5-bed6-ee1d06215cd7) 1009 | ) 1010 | (wire (pts (xy 164.465 -18.415) (xy 165.735 -18.415)) 1011 | (stroke (width 0) (type default)) 1012 | (uuid 89797a13-8242-420d-bbf7-5d30c66f6ff1) 1013 | ) 1014 | (wire (pts (xy 213.995 82.55) (xy 220.345 82.55)) 1015 | (stroke (width 0) (type default)) 1016 | (uuid 89e571ed-ae55-43f8-803d-b4e8cded83c7) 1017 | ) 1018 | (wire (pts (xy 91.44 90.17) (xy 93.98 90.17)) 1019 | (stroke (width 0) (type default)) 1020 | (uuid 8ac3855b-a18d-4350-a28e-206e8e20e64a) 1021 | ) 1022 | (wire (pts (xy 213.995 77.47) (xy 220.345 77.47)) 1023 | (stroke (width 0) (type default)) 1024 | (uuid 8bf63e73-0c16-43b1-9b86-649fd19a1cbf) 1025 | ) 1026 | (wire (pts (xy 81.915 117.475) (xy 81.915 120.015)) 1027 | (stroke (width 0) (type default)) 1028 | (uuid 8df9b642-1ad5-41c6-9db1-d25d8490b6ef) 1029 | ) 1030 | (wire (pts (xy 116.84 40.005) (xy 116.84 41.91)) 1031 | (stroke (width 0) (type default)) 1032 | (uuid 945b077b-246f-4e02-96a2-4ad86a19340f) 1033 | ) 1034 | (wire (pts (xy 207.645 -18.415) (xy 208.915 -18.415)) 1035 | (stroke (width 0) (type default)) 1036 | (uuid 95a3d38c-c30b-4803-b93c-693f17537140) 1037 | ) 1038 | (wire (pts (xy 213.995 67.31) (xy 220.345 67.31)) 1039 | (stroke (width 0) (type default)) 1040 | (uuid 9888ccfe-5c4c-47f1-9166-d9f5b3ea6045) 1041 | ) 1042 | (wire (pts (xy 192.405 118.11) (xy 192.405 119.38)) 1043 | (stroke (width 0) (type default)) 1044 | (uuid 9cc96fc7-dbb4-4d79-bdf6-668480312402) 1045 | ) 1046 | (wire (pts (xy 83.82 46.99) (xy 86.36 46.99)) 1047 | (stroke (width 0) (type default)) 1048 | (uuid a035e1e5-34d8-485d-9ec9-20002b3598de) 1049 | ) 1050 | (wire (pts (xy 213.995 74.93) (xy 220.345 74.93)) 1051 | (stroke (width 0) (type default)) 1052 | (uuid a382e30f-d3c6-4136-a903-f4175804103b) 1053 | ) 1054 | (wire (pts (xy 74.295 117.475) (xy 81.915 117.475)) 1055 | (stroke (width 0) (type default)) 1056 | (uuid a39641aa-e6ed-4687-8cea-b63d9275b759) 1057 | ) 1058 | (wire (pts (xy 252.73 -10.16) (xy 261.62 -10.16)) 1059 | (stroke (width 0) (type default)) 1060 | (uuid a58e4003-cb54-49e5-a80d-8f4da7ddcb0c) 1061 | ) 1062 | (wire (pts (xy 64.77 120.015) (xy 73.025 120.015)) 1063 | (stroke (width 0) (type default)) 1064 | (uuid a792560c-3ff7-4922-a2b0-018d14521df9) 1065 | ) 1066 | (wire (pts (xy 192.405 118.11) (xy 198.755 118.11)) 1067 | (stroke (width 0) (type default)) 1068 | (uuid aa9369a2-d509-4f98-85ff-31fd00a0faa1) 1069 | ) 1070 | (wire (pts (xy 134.62 59.69) (xy 136.525 59.69)) 1071 | (stroke (width 0) (type default)) 1072 | (uuid ab3fee5f-ab2e-4983-abf3-ac19298b8e85) 1073 | ) 1074 | (wire (pts (xy 213.995 64.77) (xy 220.345 64.77)) 1075 | (stroke (width 0) (type default)) 1076 | (uuid abaeb44c-1378-4ad6-8685-46142daf54a0) 1077 | ) 1078 | (wire (pts (xy 261.62 -10.16) (xy 261.62 -9.525)) 1079 | (stroke (width 0) (type default)) 1080 | (uuid af68ed6a-48c5-4ca2-9eec-44ffec87b4cb) 1081 | ) 1082 | (wire (pts (xy 80.645 120.015) (xy 81.915 120.015)) 1083 | (stroke (width 0) (type default)) 1084 | (uuid b0a68212-a8e3-4358-8f4c-5aa5898015cd) 1085 | ) 1086 | (wire (pts (xy 187.325 39.37) (xy 187.325 40.005)) 1087 | (stroke (width 0) (type default)) 1088 | (uuid b0ca407f-22e3-4b26-8c55-e7362bc8d3f5) 1089 | ) 1090 | (wire (pts (xy 109.22 40.005) (xy 109.22 41.91)) 1091 | (stroke (width 0) (type default)) 1092 | (uuid b203c686-8c6c-4a9a-bbd5-faaea9ea3d6e) 1093 | ) 1094 | (wire (pts (xy 177.165 29.21) (xy 178.435 29.21)) 1095 | (stroke (width 0) (type default)) 1096 | (uuid b4bd4d00-4685-4903-8ee1-4aa0f381c45f) 1097 | ) 1098 | (wire (pts (xy 198.755 107.95) (xy 198.755 109.855)) 1099 | (stroke (width 0) (type default)) 1100 | (uuid b8607543-3a52-47e8-acce-f31785e99478) 1101 | ) 1102 | (wire (pts (xy 251.46 -10.16) (xy 252.73 -10.16)) 1103 | (stroke (width 0) (type default)) 1104 | (uuid ba8e1fe0-d59b-4a3b-89f9-4feb4a7d5b66) 1105 | ) 1106 | (wire (pts (xy 252.73 -1.905) (xy 252.73 -0.635)) 1107 | (stroke (width 0) (type default)) 1108 | (uuid c3f083e4-b28a-4381-a728-a4ecf71b9943) 1109 | ) 1110 | (wire (pts (xy 269.875 -10.16) (xy 269.875 -9.525)) 1111 | (stroke (width 0) (type default)) 1112 | (uuid c59a2654-a3a0-456b-8595-5701e0887957) 1113 | ) 1114 | (wire (pts (xy 134.62 52.07) (xy 136.525 52.07)) 1115 | (stroke (width 0) (type default)) 1116 | (uuid c8ceb51b-b57e-4ac0-a9c7-2b5203d4abae) 1117 | ) 1118 | (wire (pts (xy 86.36 46.99) (xy 91.44 46.99)) 1119 | (stroke (width 0) (type default)) 1120 | (uuid ca1971a9-4735-4f06-97de-d5c46bff74de) 1121 | ) 1122 | (wire (pts (xy 45.085 99.06) (xy 45.085 100.965)) 1123 | (stroke (width 0) (type default)) 1124 | (uuid d1f2fcd5-7937-4fa2-825e-005c3e0eb7a1) 1125 | ) 1126 | (wire (pts (xy 81.915 120.015) (xy 83.185 120.015)) 1127 | (stroke (width 0) (type default)) 1128 | (uuid d5411e43-1284-44d5-bb79-ed0381e6956f) 1129 | ) 1130 | (wire (pts (xy 196.215 29.21) (xy 197.485 29.21)) 1131 | (stroke (width 0) (type default)) 1132 | (uuid de4bb686-d69e-4585-996b-793815a8a91d) 1133 | ) 1134 | (wire (pts (xy 45.085 116.205) (xy 45.085 117.475)) 1135 | (stroke (width 0) (type default)) 1136 | (uuid df3eee46-5643-4c22-8f12-30605ea6be27) 1137 | ) 1138 | (wire (pts (xy 91.44 46.99) (xy 93.98 46.99)) 1139 | (stroke (width 0) (type default)) 1140 | (uuid e366ee6f-a8a5-4818-8e82-fc503e8638af) 1141 | ) 1142 | (wire (pts (xy 197.485 29.21) (xy 198.755 29.21)) 1143 | (stroke (width 0) (type default)) 1144 | (uuid e83dcc4f-b628-4c08-8c41-9409ead96043) 1145 | ) 1146 | (wire (pts (xy 114.3 123.19) (xy 114.3 125.095)) 1147 | (stroke (width 0) (type default)) 1148 | (uuid ebc33c23-b2f1-4082-b858-16630e0cb89f) 1149 | ) 1150 | (wire (pts (xy 213.995 80.01) (xy 220.345 80.01)) 1151 | (stroke (width 0) (type default)) 1152 | (uuid ed3337bd-6cff-42fc-8b87-3baac79420dd) 1153 | ) 1154 | (wire (pts (xy 134.62 74.93) (xy 136.525 74.93)) 1155 | (stroke (width 0) (type default)) 1156 | (uuid ed7ca3bf-5f95-4e7c-bf72-a8e6897a53a9) 1157 | ) 1158 | (wire (pts (xy 185.42 107.95) (xy 185.42 109.855)) 1159 | (stroke (width 0) (type default)) 1160 | (uuid eea7f906-ba8e-4be6-88e6-28768c5aa86e) 1161 | ) 1162 | (wire (pts (xy 185.42 118.11) (xy 192.405 118.11)) 1163 | (stroke (width 0) (type default)) 1164 | (uuid f43a83a7-3abd-40b3-95f5-95a0eb1dba40) 1165 | ) 1166 | (wire (pts (xy 134.62 72.39) (xy 136.525 72.39)) 1167 | (stroke (width 0) (type default)) 1168 | (uuid f571e6a1-6001-4496-b797-60c9f939c1df) 1169 | ) 1170 | (wire (pts (xy 261.62 -10.16) (xy 269.875 -10.16)) 1171 | (stroke (width 0) (type default)) 1172 | (uuid f7637930-d461-43ba-9b1b-6c972ae59cd9) 1173 | ) 1174 | (wire (pts (xy 224.79 -10.795) (xy 224.79 -9.525)) 1175 | (stroke (width 0) (type default)) 1176 | (uuid fa4b5a42-7c92-4dcb-8274-7774c437a010) 1177 | ) 1178 | (wire (pts (xy 55.245 106.045) (xy 57.15 106.045)) 1179 | (stroke (width 0) (type default)) 1180 | (uuid ff93293b-7113-4c1d-8df7-e302e967e7ad) 1181 | ) 1182 | 1183 | (text "IO8" (at 101.6 90.805 0) 1184 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1185 | (uuid 7a1de669-8755-4a48-9254-181658194908) 1186 | ) 1187 | (text "DO NOT USE!" (at 102.362 83.312 0) 1188 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1189 | (uuid b09cada0-ebd7-465f-9ca6-985a6364956b) 1190 | ) 1191 | (text "DO NOT USE!" (at 102.235 85.725 0) 1192 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1193 | (uuid e15f7170-5b16-417e-ac0e-24079d0cc712) 1194 | ) 1195 | (text "IO7" (at 101.6 88.265 0) 1196 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1197 | (uuid f690fe11-eb5d-4290-bc10-3fc427c91a7d) 1198 | ) 1199 | (text "TODO find new pin\n" (at 68.58 74.422 0) 1200 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1201 | (uuid feb54760-8666-4049-bcdb-108a052a7f03) 1202 | ) 1203 | 1204 | (label "DO_NOT_USE" (at 136.525 77.47 0) (fields_autoplaced) 1205 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1206 | (uuid 199e2263-27e5-4fe8-8310-0b02495e38c2) 1207 | ) 1208 | (label "NC" (at 136.525 82.55 0) (fields_autoplaced) 1209 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1210 | (uuid 35f2eed9-3887-4a52-b26b-5677207a368e) 1211 | ) 1212 | (label "DO_NOT_USE" (at 136.525 67.31 0) (fields_autoplaced) 1213 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1214 | (uuid 375b88e2-8fe8-47d2-ac05-ba213ca4315f) 1215 | ) 1216 | (label "DO_NOT_USE" (at 136.525 100.33 0) (fields_autoplaced) 1217 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1218 | (uuid 3e77dbf8-1d5b-41b1-87e1-ec0568473968) 1219 | ) 1220 | (label "DO_NOT_USE" (at 136.525 105.41 0) (fields_autoplaced) 1221 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1222 | (uuid 50b95385-429d-4eae-a99f-9ed3fad6deaf) 1223 | ) 1224 | (label "DO_NOT_USE" (at 136.525 57.15 0) (fields_autoplaced) 1225 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1226 | (uuid 7c55386f-d887-4962-bb89-7e762c57040b) 1227 | ) 1228 | (label "DO_NOT_USE" (at 136.525 69.85 0) (fields_autoplaced) 1229 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1230 | (uuid 83748b8f-c554-4496-9473-77a570c7f8b2) 1231 | ) 1232 | (label "DO_NOT_USE" (at 136.525 80.01 0) (fields_autoplaced) 1233 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1234 | (uuid 8da6f0cc-b6e1-40b6-8400-08d4f8963904) 1235 | ) 1236 | (label "NC" (at 136.525 92.71 0) (fields_autoplaced) 1237 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1238 | (uuid 9007a65e-1843-48b5-8c27-002f21a2a65c) 1239 | ) 1240 | (label "THIS_IS_AN_OUTPUT" (at 136.525 115.57 0) (fields_autoplaced) 1241 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1242 | (uuid 967e3a1a-6e56-487c-9d8c-5385b0262fe1) 1243 | ) 1244 | (label "DO_NOT_USE" (at 91.44 82.55 0) (fields_autoplaced) 1245 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1246 | (uuid b178ab40-a29f-47e4-b32c-e09a2c7e9f12) 1247 | ) 1248 | (label "DO_NOT_USE" (at 136.525 97.79 0) (fields_autoplaced) 1249 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1250 | (uuid b19322e6-5bad-4f89-87ae-24d422500ef5) 1251 | ) 1252 | (label "DO_NOT_USE" (at 91.44 85.09 0) (fields_autoplaced) 1253 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1254 | (uuid c7ca066e-5dd1-406c-b3b2-53ef87a7c465) 1255 | ) 1256 | (label "DO_NOT_USE" (at 91.44 92.71 0) (fields_autoplaced) 1257 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1258 | (uuid de11158d-e1cb-416e-aaaf-87ca0d1cdef8) 1259 | ) 1260 | (label "DO_NOT_USE" (at 136.525 95.25 0) (fields_autoplaced) 1261 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1262 | (uuid e91fc953-d1ce-42d5-bd3d-113f8d4b1e61) 1263 | ) 1264 | (label "DO_NOT_USE" (at 91.44 95.25 0) (fields_autoplaced) 1265 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1266 | (uuid f5d8e826-05d3-419c-bbd2-baef7a463ae8) 1267 | ) 1268 | 1269 | (global_label "VDD3V3" (shape input) (at 220.345 69.85 0) (fields_autoplaced) 1270 | (effects (font (size 1.27 1.27)) (justify left)) 1271 | (uuid 007758ce-654e-4050-b0bd-6dac98cc16d8) 1272 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 229.3708 69.85 0) 1273 | (effects (font (size 1.27 1.27)) (justify left) hide) 1274 | ) 1275 | ) 1276 | (global_label "VIN" (shape input) (at 173.355 -18.415 180) (fields_autoplaced) 1277 | (effects (font (size 1.27 1.27)) (justify right)) 1278 | (uuid 055e6482-34c8-4946-90d8-4ebf590654b5) 1279 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 168.4415 -18.415 0) 1280 | (effects (font (size 1.27 1.27)) (justify right) hide) 1281 | ) 1282 | ) 1283 | (global_label "SDA" (shape input) (at 64.77 117.475 180) (fields_autoplaced) 1284 | (effects (font (size 1.27 1.27)) (justify right)) 1285 | (uuid 0a6afd49-3a86-4f62-a16e-2534b2171406) 1286 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 59.3123 117.475 0) 1287 | (effects (font (size 1.27 1.27)) (justify right) hide) 1288 | ) 1289 | ) 1290 | (global_label "BOARD_IO2" (shape input) (at 220.345 77.47 0) (fields_autoplaced) 1291 | (effects (font (size 1.27 1.27)) (justify left)) 1292 | (uuid 0d5ac335-7fc0-45f0-8a72-d353df9e9708) 1293 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 232.5761 77.47 0) 1294 | (effects (font (size 1.27 1.27)) (justify left) hide) 1295 | ) 1296 | ) 1297 | (global_label "SDA" (shape input) (at 136.525 90.17 0) (fields_autoplaced) 1298 | (effects (font (size 1.27 1.27)) (justify left)) 1299 | (uuid 0f9a33a0-4902-41aa-9ad7-87931a6a9443) 1300 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 141.9827 90.17 0) 1301 | (effects (font (size 1.27 1.27)) (justify left) hide) 1302 | ) 1303 | ) 1304 | (global_label "VIN" (shape input) (at 175.895 29.21 180) (fields_autoplaced) 1305 | (effects (font (size 1.27 1.27)) (justify right)) 1306 | (uuid 17c5c7e7-6ba7-4c68-b9b6-610dc4739327) 1307 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 170.9815 29.21 0) 1308 | (effects (font (size 1.27 1.27)) (justify right) hide) 1309 | ) 1310 | ) 1311 | (global_label "BOARD_IO0" (shape input) (at 136.525 64.77 0) (fields_autoplaced) 1312 | (effects (font (size 1.27 1.27)) (justify left)) 1313 | (uuid 183e21df-a2f8-4c10-b969-9a9d285fff5e) 1314 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 148.7561 64.77 0) 1315 | (effects (font (size 1.27 1.27)) (justify left) hide) 1316 | ) 1317 | ) 1318 | (global_label "VIN" (shape input) (at 164.465 -18.415 180) (fields_autoplaced) 1319 | (effects (font (size 1.27 1.27)) (justify right)) 1320 | (uuid 1d233050-fcc5-455f-9fcd-f391cf2340f4) 1321 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 159.5515 -18.415 0) 1322 | (effects (font (size 1.27 1.27)) (justify right) hide) 1323 | ) 1324 | ) 1325 | (global_label "BOARD_IO5" (shape input) (at 136.525 74.93 0) (fields_autoplaced) 1326 | (effects (font (size 1.27 1.27)) (justify left)) 1327 | (uuid 2949d143-1de8-42e3-9270-ee23b7df8dce) 1328 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 148.7561 74.93 0) 1329 | (effects (font (size 1.27 1.27)) (justify left) hide) 1330 | ) 1331 | ) 1332 | (global_label "SCL" (shape input) (at 136.525 85.09 0) (fields_autoplaced) 1333 | (effects (font (size 1.27 1.27)) (justify left)) 1334 | (uuid 2cb32e63-9341-4894-9858-3ab74625b90a) 1335 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 141.9222 85.09 0) 1336 | (effects (font (size 1.27 1.27)) (justify left) hide) 1337 | ) 1338 | ) 1339 | (global_label "MTDI{slash}IO12" (shape input) (at 136.525 72.39 0) (fields_autoplaced) 1340 | (effects (font (size 1.27 1.27)) (justify left)) 1341 | (uuid 2fe55ba8-2e0a-4307-907c-5579cdcb07ef) 1342 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 148.3932 72.39 0) 1343 | (effects (font (size 1.27 1.27)) (justify left) hide) 1344 | ) 1345 | ) 1346 | (global_label "VDD3V3" (shape input) (at 114.3 40.005 90) (fields_autoplaced) 1347 | (effects (font (size 1.27 1.27)) (justify left)) 1348 | (uuid 32587055-e1ce-40d1-9516-b59a696d615f) 1349 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 114.3 30.9792 90) 1350 | (effects (font (size 1.27 1.27)) (justify left) hide) 1351 | ) 1352 | ) 1353 | (global_label "VDD3V3" (shape input) (at 207.645 -18.415 180) (fields_autoplaced) 1354 | (effects (font (size 1.27 1.27)) (justify right)) 1355 | (uuid 32c42b61-6b09-4faa-a4cd-84cb13007447) 1356 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 197.508 -18.415 0) 1357 | (effects (font (size 1.27 1.27)) (justify right) hide) 1358 | ) 1359 | ) 1360 | (global_label "BOARD_IO0" (shape input) (at 220.345 72.39 0) (fields_autoplaced) 1361 | (effects (font (size 1.27 1.27)) (justify left)) 1362 | (uuid 369b3659-c181-47dc-8452-e2de8b1cd204) 1363 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 232.5761 72.39 0) 1364 | (effects (font (size 1.27 1.27)) (justify left) hide) 1365 | ) 1366 | ) 1367 | (global_label "BOARD_IO3" (shape input) (at 78.486 76.708 180) (fields_autoplaced) 1368 | (effects (font (size 1.27 1.27)) (justify right)) 1369 | (uuid 37cf252f-63b8-4b27-bcc0-537709c053d9) 1370 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 66.2549 76.708 0) 1371 | (effects (font (size 1.27 1.27)) (justify right) hide) 1372 | ) 1373 | ) 1374 | (global_label "ESP_ANT" (shape input) (at 136.525 46.99 0) (fields_autoplaced) 1375 | (effects (font (size 1.27 1.27)) (justify left)) 1376 | (uuid 37f42e1e-9f51-45a9-88fd-4dea017ca4ad) 1377 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 146.3974 46.99 0) 1378 | (effects (font (size 1.27 1.27)) (justify left) hide) 1379 | ) 1380 | ) 1381 | (global_label "BOARD_IO3" (shape input) (at 220.345 80.01 0) (fields_autoplaced) 1382 | (effects (font (size 1.27 1.27)) (justify left)) 1383 | (uuid 53ea9797-0f84-4805-bf20-3bd0cc636595) 1384 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 232.5761 80.01 0) 1385 | (effects (font (size 1.27 1.27)) (justify left) hide) 1386 | ) 1387 | ) 1388 | (global_label "BOARD_IO4" (shape input) (at 220.345 82.55 0) (fields_autoplaced) 1389 | (effects (font (size 1.27 1.27)) (justify left)) 1390 | (uuid 5809d543-6df4-4ecd-9f35-f46f06deae01) 1391 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 232.5761 82.55 0) 1392 | (effects (font (size 1.27 1.27)) (justify left) hide) 1393 | ) 1394 | ) 1395 | (global_label "BOARD_IO1" (shape input) (at 91.44 90.17 180) (fields_autoplaced) 1396 | (effects (font (size 1.27 1.27)) (justify right)) 1397 | (uuid 5f9fa28a-2e26-426e-9c1b-75174fc4c704) 1398 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 79.2089 90.17 0) 1399 | (effects (font (size 1.27 1.27)) (justify right) hide) 1400 | ) 1401 | ) 1402 | (global_label "WS2812_DIN" (shape input) (at 241.3 36.83 180) (fields_autoplaced) 1403 | (effects (font (size 1.27 1.27)) (justify right)) 1404 | (uuid 6b193e82-a727-4e3b-b6fb-9a67f91a4646) 1405 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 227.7386 36.83 0) 1406 | (effects (font (size 1.27 1.27)) (justify right) hide) 1407 | ) 1408 | ) 1409 | (global_label "SCL" (shape input) (at 64.77 120.015 180) (fields_autoplaced) 1410 | (effects (font (size 1.27 1.27)) (justify right)) 1411 | (uuid 6e9ec475-610b-4a0a-8f1f-db6e8307680d) 1412 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 59.3728 120.015 0) 1413 | (effects (font (size 1.27 1.27)) (justify right) hide) 1414 | ) 1415 | ) 1416 | (global_label "BOARD_IO4" (shape input) (at 136.525 62.23 0) (fields_autoplaced) 1417 | (effects (font (size 1.27 1.27)) (justify left)) 1418 | (uuid 756d3fb3-e04a-4119-b239-b63f7e2ba8fb) 1419 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 148.7561 62.23 0) 1420 | (effects (font (size 1.27 1.27)) (justify left) hide) 1421 | ) 1422 | ) 1423 | (global_label "VDD3V3" (shape input) (at 116.84 40.005 90) (fields_autoplaced) 1424 | (effects (font (size 1.27 1.27)) (justify left)) 1425 | (uuid 805badea-d1af-4661-8c79-d149d72224bc) 1426 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 116.84 30.9792 90) 1427 | (effects (font (size 1.27 1.27)) (justify left) hide) 1428 | ) 1429 | ) 1430 | (global_label "BOARD_IO5" (shape input) (at 220.345 85.09 0) (fields_autoplaced) 1431 | (effects (font (size 1.27 1.27)) (justify left)) 1432 | (uuid 8443a115-55e0-4f13-a667-656f9c27dde9) 1433 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 232.5761 85.09 0) 1434 | (effects (font (size 1.27 1.27)) (justify left) hide) 1435 | ) 1436 | ) 1437 | (global_label "SCL" (shape input) (at 57.15 108.585 0) (fields_autoplaced) 1438 | (effects (font (size 1.27 1.27)) (justify left)) 1439 | (uuid 844e66b1-8dfe-4956-938c-6db548c76d0b) 1440 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 62.5472 108.585 0) 1441 | (effects (font (size 1.27 1.27)) (justify left) hide) 1442 | ) 1443 | ) 1444 | (global_label "ESP_ANT" (shape input) (at 182.88 107.95 180) (fields_autoplaced) 1445 | (effects (font (size 1.27 1.27)) (justify right)) 1446 | (uuid 8a52eabc-415e-4906-b457-9286637990fc) 1447 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 173.0076 107.95 0) 1448 | (effects (font (size 1.27 1.27)) (justify right) hide) 1449 | ) 1450 | ) 1451 | (global_label "BOARD_IO2" (shape input) (at 91.44 87.63 180) (fields_autoplaced) 1452 | (effects (font (size 1.27 1.27)) (justify right)) 1453 | (uuid 8f0b207d-9ebb-4de9-b7b9-6e0d67f0bdf3) 1454 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 79.2089 87.63 0) 1455 | (effects (font (size 1.27 1.27)) (justify right) hide) 1456 | ) 1457 | ) 1458 | (global_label "VDD3V3" (shape input) (at 223.52 -18.415 180) (fields_autoplaced) 1459 | (effects (font (size 1.27 1.27)) (justify right)) 1460 | (uuid 9aa8d69b-9158-4a3e-ba1a-6799b85ae1e8) 1461 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 213.383 -18.415 0) 1462 | (effects (font (size 1.27 1.27)) (justify right) hide) 1463 | ) 1464 | ) 1465 | (global_label "VDD3V3" (shape input) (at 109.22 40.005 90) (fields_autoplaced) 1466 | (effects (font (size 1.27 1.27)) (justify left)) 1467 | (uuid 9aae2722-9ce2-4aab-8937-cee1f8d2e955) 1468 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 109.22 30.9792 90) 1469 | (effects (font (size 1.27 1.27)) (justify left) hide) 1470 | ) 1471 | ) 1472 | (global_label "BOARD_IO1" (shape input) (at 220.345 74.93 0) (fields_autoplaced) 1473 | (effects (font (size 1.27 1.27)) (justify left)) 1474 | (uuid 9d7c1d9a-d5c8-4d74-97f2-6fae13473cbd) 1475 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 232.5761 74.93 0) 1476 | (effects (font (size 1.27 1.27)) (justify left) hide) 1477 | ) 1478 | ) 1479 | (global_label "VIN" (shape input) (at 220.345 67.31 0) (fields_autoplaced) 1480 | (effects (font (size 1.27 1.27)) (justify left)) 1481 | (uuid a39bff73-ba40-4b6f-b0a8-69b4aafc2399) 1482 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 225.2585 67.31 0) 1483 | (effects (font (size 1.27 1.27)) (justify left) hide) 1484 | ) 1485 | ) 1486 | (global_label "VDD3V3" (shape input) (at 198.755 29.21 0) (fields_autoplaced) 1487 | (effects (font (size 1.27 1.27)) (justify left)) 1488 | (uuid c0759fbd-674e-4382-84cf-ee33d7ed7d29) 1489 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 207.7808 29.21 0) 1490 | (effects (font (size 1.27 1.27)) (justify left) hide) 1491 | ) 1492 | ) 1493 | (global_label "SDA" (shape input) (at 57.15 106.045 0) (fields_autoplaced) 1494 | (effects (font (size 1.27 1.27)) (justify left)) 1495 | (uuid cb6ee37f-d3be-42be-88b5-7fe881eb73b4) 1496 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 62.6077 106.045 0) 1497 | (effects (font (size 1.27 1.27)) (justify left) hide) 1498 | ) 1499 | ) 1500 | (global_label "VDD3V3" (shape input) (at 45.085 99.06 180) (fields_autoplaced) 1501 | (effects (font (size 1.27 1.27)) (justify right)) 1502 | (uuid d2282e8f-ab75-41cd-9f5f-9aa4924be96a) 1503 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 36.0592 99.06 0) 1504 | (effects (font (size 1.27 1.27)) (justify right) hide) 1505 | ) 1506 | ) 1507 | (global_label "WS2812_DIN" (shape input) (at 136.525 87.63 0) (fields_autoplaced) 1508 | (effects (font (size 1.27 1.27)) (justify left)) 1509 | (uuid e887b3f4-2774-4892-a871-9d5ac568e5bc) 1510 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 150.0864 87.63 0) 1511 | (effects (font (size 1.27 1.27)) (justify left) hide) 1512 | ) 1513 | ) 1514 | (global_label "VDD3V3" (shape input) (at 111.76 40.005 90) (fields_autoplaced) 1515 | (effects (font (size 1.27 1.27)) (justify left)) 1516 | (uuid ea147453-07fa-4ccf-8f48-44b9cf86fa83) 1517 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 111.76 30.9792 90) 1518 | (effects (font (size 1.27 1.27)) (justify left) hide) 1519 | ) 1520 | ) 1521 | (global_label "VDD3V3" (shape input) (at 251.46 27.94 90) (fields_autoplaced) 1522 | (effects (font (size 1.27 1.27)) (justify left)) 1523 | (uuid f39a6ed8-29b9-41c3-8cf0-6eec6174eaf9) 1524 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 251.46 18.9142 90) 1525 | (effects (font (size 1.27 1.27)) (justify left) hide) 1526 | ) 1527 | ) 1528 | (global_label "VDD3V3" (shape input) (at 251.46 -10.16 180) (fields_autoplaced) 1529 | (effects (font (size 1.27 1.27)) (justify right)) 1530 | (uuid f43b2434-4bde-4f11-8488-267c1ca63006) 1531 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 241.323 -10.16 0) 1532 | (effects (font (size 1.27 1.27)) (justify right) hide) 1533 | ) 1534 | ) 1535 | (global_label "VDD3V3" (shape input) (at 83.185 120.015 0) (fields_autoplaced) 1536 | (effects (font (size 1.27 1.27)) (justify left)) 1537 | (uuid f9b697f3-4448-40fa-b5d6-5f154952c82f) 1538 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 92.2108 120.015 0) 1539 | (effects (font (size 1.27 1.27)) (justify left) hide) 1540 | ) 1541 | ) 1542 | (global_label "VDD3V3" (shape input) (at 91.44 33.655 90) (fields_autoplaced) 1543 | (effects (font (size 1.27 1.27)) (justify left)) 1544 | (uuid fd93815a-a56b-40f2-b32e-c440b1344eef) 1545 | (property "Intersheetrefs" "${INTERSHEET_REFS}" (id 0) (at 91.44 24.6292 90) 1546 | (effects (font (size 1.27 1.27)) (justify left) hide) 1547 | ) 1548 | ) 1549 | 1550 | (symbol (lib_id "Device:C") (at 261.62 -5.715 0) (unit 1) 1551 | (in_bom yes) (on_board yes) 1552 | (uuid 0a476d13-0aaa-4270-b5ba-fb95b3412958) 1553 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1554 | (property "Reference" "U" (id 0) (at 256.54 -5.715 0) 1555 | (effects (font (size 1.27 1.27)) (justify left)) 1556 | ) 1557 | (property "Value" "" (id 1) (at 256.54 -3.175 0) 1558 | (effects (font (size 1.27 1.27)) (justify left)) 1559 | ) 1560 | (property "Footprint" "" (id 2) (at 262.5852 -1.905 0) 1561 | (effects (font (size 1.27 1.27)) hide) 1562 | ) 1563 | (property "Datasheet" "~" (id 3) (at 261.62 -5.715 0) 1564 | (effects (font (size 1.27 1.27)) hide) 1565 | ) 1566 | (pin "1" (uuid 374c6ea2-e961-4429-b926-9b2542266ec3)) 1567 | (pin "2" (uuid 2dfbe7fe-f082-4860-b454-870351b0dd4c)) 1568 | ) 1569 | 1570 | (symbol (lib_id "Connector:TestPoint") (at 136.525 52.07 270) (unit 1) 1571 | (in_bom yes) (on_board yes) 1572 | (uuid 0da3fad3-50ab-4083-9ca8-fcf1d8d1f3c2) 1573 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1574 | (property "Reference" "U" (id 0) (at 151.13 52.07 90) 1575 | (effects (font (size 1.27 1.27)) (justify left)) 1576 | ) 1577 | (property "Value" "" (id 1) (at 141.605 52.07 90) 1578 | (effects (font (size 1.27 1.27)) (justify left)) 1579 | ) 1580 | (property "Footprint" "" (id 2) (at 136.525 57.15 0) 1581 | (effects (font (size 1.27 1.27)) hide) 1582 | ) 1583 | (property "Datasheet" "~" (id 3) (at 136.525 57.15 0) 1584 | (effects (font (size 1.27 1.27)) hide) 1585 | ) 1586 | (pin "1" (uuid f60d9102-21bb-418d-8eaf-520a19a6a584)) 1587 | ) 1588 | 1589 | (symbol (lib_id "power:GND") (at 192.405 119.38 0) (unit 1) 1590 | (in_bom yes) (on_board yes) (fields_autoplaced) 1591 | (uuid 0ee9b4bb-05d5-452e-bcac-b2725ec26713) 1592 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1593 | (property "Reference" "U" (id 0) (at 192.405 125.73 0) 1594 | (effects (font (size 1.27 1.27)) hide) 1595 | ) 1596 | (property "Value" "" (id 1) (at 194.945 121.285 0) 1597 | (effects (font (size 1.27 1.27)) (justify left)) 1598 | ) 1599 | (property "Footprint" "" (id 2) (at 192.405 119.38 0) 1600 | (effects (font (size 1.27 1.27)) hide) 1601 | ) 1602 | (property "Datasheet" "" (id 3) (at 192.405 119.38 0) 1603 | (effects (font (size 1.27 1.27)) hide) 1604 | ) 1605 | (pin "1" (uuid d25b08f9-cd54-4dc3-9317-0724676e7310)) 1606 | ) 1607 | 1608 | (symbol (lib_id "power:GND") (at 165.735 -9.525 0) (unit 1) 1609 | (in_bom yes) (on_board yes) (fields_autoplaced) 1610 | (uuid 12ab2b93-e186-4c48-b2b3-ea49775714b0) 1611 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1612 | (property "Reference" "U" (id 0) (at 165.735 -3.175 0) 1613 | (effects (font (size 1.27 1.27)) hide) 1614 | ) 1615 | (property "Value" "" (id 1) (at 165.735 -5.715 0) 1616 | (effects (font (size 1.27 1.27))) 1617 | ) 1618 | (property "Footprint" "" (id 2) (at 165.735 -9.525 0) 1619 | (effects (font (size 1.27 1.27)) hide) 1620 | ) 1621 | (property "Datasheet" "" (id 3) (at 165.735 -9.525 0) 1622 | (effects (font (size 1.27 1.27)) hide) 1623 | ) 1624 | (pin "1" (uuid 3e95bfe4-69cb-4742-8525-be00e3f4643c)) 1625 | ) 1626 | 1627 | (symbol (lib_id "Device:C") (at 269.875 -5.715 0) (unit 1) 1628 | (in_bom yes) (on_board yes) 1629 | (uuid 24026b52-baa7-45d3-9d1f-f37006cea725) 1630 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1631 | (property "Reference" "U" (id 0) (at 264.795 -5.715 0) 1632 | (effects (font (size 1.27 1.27)) (justify left)) 1633 | ) 1634 | (property "Value" "" (id 1) (at 264.795 -3.175 0) 1635 | (effects (font (size 1.27 1.27)) (justify left)) 1636 | ) 1637 | (property "Footprint" "" (id 2) (at 270.8402 -1.905 0) 1638 | (effects (font (size 1.27 1.27)) hide) 1639 | ) 1640 | (property "Datasheet" "~" (id 3) (at 269.875 -5.715 0) 1641 | (effects (font (size 1.27 1.27)) hide) 1642 | ) 1643 | (pin "1" (uuid 29fa5b69-fcab-4473-a373-713bef8cacab)) 1644 | (pin "2" (uuid 79d4bc8c-ecca-4908-8d1c-8f7c28a2a45f)) 1645 | ) 1646 | 1647 | (symbol (lib_id "power:GND") (at 251.46 46.355 0) (unit 1) 1648 | (in_bom yes) (on_board yes) (fields_autoplaced) 1649 | (uuid 246a3686-c2bc-4094-953b-3b6dbba552fe) 1650 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1651 | (property "Reference" "U" (id 0) (at 251.46 52.705 0) 1652 | (effects (font (size 1.27 1.27)) hide) 1653 | ) 1654 | (property "Value" "" (id 1) (at 251.46 50.165 0) 1655 | (effects (font (size 1.27 1.27))) 1656 | ) 1657 | (property "Footprint" "" (id 2) (at 251.46 46.355 0) 1658 | (effects (font (size 1.27 1.27)) hide) 1659 | ) 1660 | (property "Datasheet" "" (id 3) (at 251.46 46.355 0) 1661 | (effects (font (size 1.27 1.27)) hide) 1662 | ) 1663 | (pin "1" (uuid fbef93bc-57a7-4960-9457-53f0b7c6f029)) 1664 | ) 1665 | 1666 | (symbol (lib_id "Memory_EEPROM:24AA02-OT") (at 45.085 108.585 0) (unit 1) 1667 | (in_bom yes) (on_board yes) (fields_autoplaced) 1668 | (uuid 25b5d632-5383-4936-88b4-235579afd72d) 1669 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1670 | (property "Reference" "U" (id 0) (at 36.195 107.95 0) 1671 | (effects (font (size 1.27 1.27)) (justify right)) 1672 | ) 1673 | (property "Value" "" (id 1) (at 36.195 110.49 0) 1674 | (effects (font (size 1.27 1.27)) (justify right)) 1675 | ) 1676 | (property "Footprint" "" (id 2) (at 45.085 108.585 0) 1677 | (effects (font (size 1.27 1.27)) hide) 1678 | ) 1679 | (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21709J.pdf" (id 3) (at 45.085 108.585 0) 1680 | (effects (font (size 1.27 1.27)) hide) 1681 | ) 1682 | (pin "1" (uuid fc314809-d927-4269-88ba-72a2df0e5be6)) 1683 | (pin "2" (uuid 758845ac-fbc7-4230-afcd-8fb4c61ec6f0)) 1684 | (pin "3" (uuid 786900b8-3287-40fa-a59f-99cd8286c781)) 1685 | (pin "4" (uuid 7b0ad337-7b6b-4e67-b3e9-90e272a978c3)) 1686 | (pin "5" (uuid d23953b7-4079-4373-a763-3efc3d2ba469)) 1687 | ) 1688 | 1689 | (symbol (lib_id "Device:R") (at 76.835 120.015 90) (unit 1) 1690 | (in_bom yes) (on_board yes) 1691 | (uuid 2bf7e63c-f108-4e6f-9065-b94a0ede0141) 1692 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1693 | (property "Reference" "U" (id 0) (at 76.835 118.11 90) 1694 | (effects (font (size 1.27 1.27))) 1695 | ) 1696 | (property "Value" "" (id 1) (at 76.835 122.555 90) 1697 | (effects (font (size 1.27 1.27))) 1698 | ) 1699 | (property "Footprint" "" (id 2) (at 76.835 121.793 90) 1700 | (effects (font (size 1.27 1.27)) hide) 1701 | ) 1702 | (property "Datasheet" "~" (id 3) (at 76.835 120.015 0) 1703 | (effects (font (size 1.27 1.27)) hide) 1704 | ) 1705 | (pin "1" (uuid 779ab8cc-f023-4dc7-8237-ae81b47a2311)) 1706 | (pin "2" (uuid 280df10c-d284-4dbf-ba10-fb3d151d0bc2)) 1707 | ) 1708 | 1709 | (symbol (lib_id "Device:C") (at 192.405 107.95 90) (unit 1) 1710 | (in_bom yes) (on_board yes) (fields_autoplaced) 1711 | (uuid 2c110474-2739-470a-b7b9-e510e2240863) 1712 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1713 | (property "Reference" "U" (id 0) (at 192.405 101.6 90) 1714 | (effects (font (size 1.27 1.27))) 1715 | ) 1716 | (property "Value" "" (id 1) (at 192.405 104.14 90) 1717 | (effects (font (size 1.27 1.27))) 1718 | ) 1719 | (property "Footprint" "" (id 2) (at 196.215 106.9848 0) 1720 | (effects (font (size 1.27 1.27)) hide) 1721 | ) 1722 | (property "Datasheet" "~" (id 3) (at 192.405 107.95 0) 1723 | (effects (font (size 1.27 1.27)) hide) 1724 | ) 1725 | (pin "1" (uuid 5c40fb3c-b53b-4b41-bc41-0351850cab58)) 1726 | (pin "2" (uuid 4208a646-2d8e-4f72-86df-f0b2a402a31f)) 1727 | ) 1728 | 1729 | (symbol (lib_id "Connector:TestPoint") (at 83.82 46.99 90) (unit 1) 1730 | (in_bom yes) (on_board yes) 1731 | (uuid 2c49fbe2-25b6-4810-9f89-9608c734c6e0) 1732 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1733 | (property "Reference" "U" (id 0) (at 69.215 46.99 90) 1734 | (effects (font (size 1.27 1.27)) (justify left)) 1735 | ) 1736 | (property "Value" "" (id 1) (at 78.74 46.99 90) 1737 | (effects (font (size 1.27 1.27)) (justify left)) 1738 | ) 1739 | (property "Footprint" "" (id 2) (at 83.82 41.91 0) 1740 | (effects (font (size 1.27 1.27)) hide) 1741 | ) 1742 | (property "Datasheet" "~" (id 3) (at 83.82 41.91 0) 1743 | (effects (font (size 1.27 1.27)) hide) 1744 | ) 1745 | (pin "1" (uuid 1d7aef6d-8003-4f14-9532-c91b3a40c97b)) 1746 | ) 1747 | 1748 | (symbol (lib_id "Connector:TestPoint") (at 188.595 39.37 270) (unit 1) 1749 | (in_bom yes) (on_board yes) 1750 | (uuid 31cc6bb2-f229-4ee1-b2f2-30cd663c9929) 1751 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1752 | (property "Reference" "U" (id 0) (at 203.2 39.37 90) 1753 | (effects (font (size 1.27 1.27)) (justify left)) 1754 | ) 1755 | (property "Value" "" (id 1) (at 193.675 39.37 90) 1756 | (effects (font (size 1.27 1.27)) (justify left)) 1757 | ) 1758 | (property "Footprint" "" (id 2) (at 188.595 44.45 0) 1759 | (effects (font (size 1.27 1.27)) hide) 1760 | ) 1761 | (property "Datasheet" "~" (id 3) (at 188.595 44.45 0) 1762 | (effects (font (size 1.27 1.27)) hide) 1763 | ) 1764 | (pin "1" (uuid 0ceafd71-c6d3-4e4e-b49e-db10d3d4bdae)) 1765 | ) 1766 | 1767 | (symbol (lib_id "Device:C") (at 165.735 -14.605 0) (unit 1) 1768 | (in_bom yes) (on_board yes) 1769 | (uuid 3fafb9df-061b-4720-baac-cad91eec861a) 1770 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1771 | (property "Reference" "U" (id 0) (at 160.655 -14.605 0) 1772 | (effects (font (size 1.27 1.27)) (justify left)) 1773 | ) 1774 | (property "Value" "" (id 1) (at 160.655 -12.065 0) 1775 | (effects (font (size 1.27 1.27)) (justify left)) 1776 | ) 1777 | (property "Footprint" "" (id 2) (at 166.7002 -10.795 0) 1778 | (effects (font (size 1.27 1.27)) hide) 1779 | ) 1780 | (property "Datasheet" "~" (id 3) (at 165.735 -14.605 0) 1781 | (effects (font (size 1.27 1.27)) hide) 1782 | ) 1783 | (pin "1" (uuid eaa5fa99-a84a-4c05-a1cb-a3d8b4e92ed9)) 1784 | (pin "2" (uuid b46b8311-ec29-4d4a-8fe9-c6285b438648)) 1785 | ) 1786 | 1787 | (symbol (lib_id "Device:R") (at 91.44 39.37 0) (unit 1) 1788 | (in_bom yes) (on_board yes) (fields_autoplaced) 1789 | (uuid 424747b5-cad0-40ae-9bd2-c747a644e543) 1790 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1791 | (property "Reference" "U" (id 0) (at 93.98 38.735 0) 1792 | (effects (font (size 1.27 1.27)) (justify left)) 1793 | ) 1794 | (property "Value" "" (id 1) (at 93.98 41.275 0) 1795 | (effects (font (size 1.27 1.27)) (justify left)) 1796 | ) 1797 | (property "Footprint" "" (id 2) (at 89.662 39.37 90) 1798 | (effects (font (size 1.27 1.27)) hide) 1799 | ) 1800 | (property "Datasheet" "~" (id 3) (at 91.44 39.37 0) 1801 | (effects (font (size 1.27 1.27)) hide) 1802 | ) 1803 | (pin "1" (uuid 57255d81-ec1f-477b-a829-6ec9fc05a5b8)) 1804 | (pin "2" (uuid 3edaf35c-1357-446f-a019-fc009ad5ee28)) 1805 | ) 1806 | 1807 | (symbol (lib_id "Device:C") (at 185.42 113.665 0) (unit 1) 1808 | (in_bom yes) (on_board yes) 1809 | (uuid 43d9b997-6d6f-4274-937c-cee72b7efd9b) 1810 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1811 | (property "Reference" "U" (id 0) (at 182.245 111.125 0) 1812 | (effects (font (size 1.27 1.27)) (justify left)) 1813 | ) 1814 | (property "Value" "" (id 1) (at 179.07 116.205 0) 1815 | (effects (font (size 1.27 1.27)) (justify left)) 1816 | ) 1817 | (property "Footprint" "" (id 2) (at 186.3852 117.475 0) 1818 | (effects (font (size 1.27 1.27)) hide) 1819 | ) 1820 | (property "Datasheet" "~" (id 3) (at 185.42 113.665 0) 1821 | (effects (font (size 1.27 1.27)) hide) 1822 | ) 1823 | (pin "1" (uuid 2b3eed0d-f5cd-4eec-8e49-4b1d29b6a6e2)) 1824 | (pin "2" (uuid 72386feb-91d6-4128-8409-a23f286fae3d)) 1825 | ) 1826 | 1827 | (symbol (lib_id "power:GND") (at 261.62 -0.635 0) (unit 1) 1828 | (in_bom yes) (on_board yes) (fields_autoplaced) 1829 | (uuid 49617ad2-da0b-481f-bf69-9b04ed21f176) 1830 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1831 | (property "Reference" "U" (id 0) (at 261.62 5.715 0) 1832 | (effects (font (size 1.27 1.27)) hide) 1833 | ) 1834 | (property "Value" "" (id 1) (at 261.62 3.175 0) 1835 | (effects (font (size 1.27 1.27))) 1836 | ) 1837 | (property "Footprint" "" (id 2) (at 261.62 -0.635 0) 1838 | (effects (font (size 1.27 1.27)) hide) 1839 | ) 1840 | (property "Datasheet" "" (id 3) (at 261.62 -0.635 0) 1841 | (effects (font (size 1.27 1.27)) hide) 1842 | ) 1843 | (pin "1" (uuid bb3bef57-519d-4581-85f6-aeed18d7ed2c)) 1844 | ) 1845 | 1846 | (symbol (lib_id "Device:C") (at 224.79 -14.605 0) (unit 1) 1847 | (in_bom yes) (on_board yes) 1848 | (uuid 49fa14de-182b-49e6-81ea-786f93647455) 1849 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1850 | (property "Reference" "U" (id 0) (at 219.71 -14.605 0) 1851 | (effects (font (size 1.27 1.27)) (justify left)) 1852 | ) 1853 | (property "Value" "" (id 1) (at 219.71 -12.065 0) 1854 | (effects (font (size 1.27 1.27)) (justify left)) 1855 | ) 1856 | (property "Footprint" "" (id 2) (at 225.7552 -10.795 0) 1857 | (effects (font (size 1.27 1.27)) hide) 1858 | ) 1859 | (property "Datasheet" "~" (id 3) (at 224.79 -14.605 0) 1860 | (effects (font (size 1.27 1.27)) hide) 1861 | ) 1862 | (pin "1" (uuid 906b0ee0-54ed-4301-8263-25eb792afb8f)) 1863 | (pin "2" (uuid 9b2c6638-7fa1-41f9-b9ff-7eedf333f20c)) 1864 | ) 1865 | 1866 | (symbol (lib_id "Connector:TestPoint") (at 197.485 26.035 270) (unit 1) 1867 | (in_bom yes) (on_board yes) 1868 | (uuid 4be05e21-6640-46c0-b0ae-2c49078cca31) 1869 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1870 | (property "Reference" "U" (id 0) (at 212.09 26.035 90) 1871 | (effects (font (size 1.27 1.27)) (justify left)) 1872 | ) 1873 | (property "Value" "" (id 1) (at 202.565 26.035 90) 1874 | (effects (font (size 1.27 1.27)) (justify left)) 1875 | ) 1876 | (property "Footprint" "" (id 2) (at 197.485 31.115 0) 1877 | (effects (font (size 1.27 1.27)) hide) 1878 | ) 1879 | (property "Datasheet" "~" (id 3) (at 197.485 31.115 0) 1880 | (effects (font (size 1.27 1.27)) hide) 1881 | ) 1882 | (pin "1" (uuid 197f907f-9599-4f07-a69d-2df7ec3916cb)) 1883 | ) 1884 | 1885 | (symbol (lib_id "power:GND") (at 45.085 117.475 0) (unit 1) 1886 | (in_bom yes) (on_board yes) (fields_autoplaced) 1887 | (uuid 4eea2c50-dcba-4a84-9db6-81c586430ba0) 1888 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1889 | (property "Reference" "U" (id 0) (at 45.085 123.825 0) 1890 | (effects (font (size 1.27 1.27)) hide) 1891 | ) 1892 | (property "Value" "" (id 1) (at 47.625 119.38 0) 1893 | (effects (font (size 1.27 1.27)) (justify left)) 1894 | ) 1895 | (property "Footprint" "" (id 2) (at 45.085 117.475 0) 1896 | (effects (font (size 1.27 1.27)) hide) 1897 | ) 1898 | (property "Datasheet" "" (id 3) (at 45.085 117.475 0) 1899 | (effects (font (size 1.27 1.27)) hide) 1900 | ) 1901 | (pin "1" (uuid 053539ea-e9dd-4896-b5de-06ca6d01cbcb)) 1902 | ) 1903 | 1904 | (symbol (lib_id "Device:C") (at 198.755 113.665 180) (unit 1) 1905 | (in_bom yes) (on_board yes) (fields_autoplaced) 1906 | (uuid 54316b81-4f3f-4409-afb7-f12186426fd0) 1907 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1908 | (property "Reference" "U" (id 0) (at 201.955 113.03 0) 1909 | (effects (font (size 1.27 1.27)) (justify right)) 1910 | ) 1911 | (property "Value" "" (id 1) (at 201.955 115.57 0) 1912 | (effects (font (size 1.27 1.27)) (justify right)) 1913 | ) 1914 | (property "Footprint" "" (id 2) (at 197.7898 109.855 0) 1915 | (effects (font (size 1.27 1.27)) hide) 1916 | ) 1917 | (property "Datasheet" "~" (id 3) (at 198.755 113.665 0) 1918 | (effects (font (size 1.27 1.27)) hide) 1919 | ) 1920 | (pin "1" (uuid 4e7f7908-65ba-47b2-b02e-47fa25462094)) 1921 | (pin "2" (uuid 197962a9-f773-48c3-b218-0261b85d3e5c)) 1922 | ) 1923 | 1924 | (symbol (lib_id "Device:C") (at 208.915 -14.605 0) (unit 1) 1925 | (in_bom yes) (on_board yes) 1926 | (uuid 5a06614c-9556-4fe1-915f-0d676dc9aaf7) 1927 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1928 | (property "Reference" "U" (id 0) (at 203.835 -14.605 0) 1929 | (effects (font (size 1.27 1.27)) (justify left)) 1930 | ) 1931 | (property "Value" "" (id 1) (at 203.835 -12.065 0) 1932 | (effects (font (size 1.27 1.27)) (justify left)) 1933 | ) 1934 | (property "Footprint" "" (id 2) (at 209.8802 -10.795 0) 1935 | (effects (font (size 1.27 1.27)) hide) 1936 | ) 1937 | (property "Datasheet" "~" (id 3) (at 208.915 -14.605 0) 1938 | (effects (font (size 1.27 1.27)) hide) 1939 | ) 1940 | (pin "1" (uuid 11cedb14-b9ae-4f37-83c4-cc5891cc3ba1)) 1941 | (pin "2" (uuid ef9b7800-93b3-48ff-8716-677214474f76)) 1942 | ) 1943 | 1944 | (symbol (lib_id "power:GND") (at 224.79 -9.525 0) (unit 1) 1945 | (in_bom yes) (on_board yes) (fields_autoplaced) 1946 | (uuid 636fe853-d7d1-4d75-8f17-455a0977fcf5) 1947 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1948 | (property "Reference" "U" (id 0) (at 224.79 -3.175 0) 1949 | (effects (font (size 1.27 1.27)) hide) 1950 | ) 1951 | (property "Value" "" (id 1) (at 224.79 -5.715 0) 1952 | (effects (font (size 1.27 1.27))) 1953 | ) 1954 | (property "Footprint" "" (id 2) (at 224.79 -9.525 0) 1955 | (effects (font (size 1.27 1.27)) hide) 1956 | ) 1957 | (property "Datasheet" "" (id 3) (at 224.79 -9.525 0) 1958 | (effects (font (size 1.27 1.27)) hide) 1959 | ) 1960 | (pin "1" (uuid 67857730-fad3-43b6-a586-40af34c3214d)) 1961 | ) 1962 | 1963 | (symbol (lib_id "Connector:TestPoint") (at 136.525 54.61 270) (unit 1) 1964 | (in_bom yes) (on_board yes) 1965 | (uuid 68d63e84-63bb-40d4-8af3-2b9ec7968232) 1966 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1967 | (property "Reference" "U" (id 0) (at 151.13 54.61 90) 1968 | (effects (font (size 1.27 1.27)) (justify left)) 1969 | ) 1970 | (property "Value" "" (id 1) (at 141.605 54.61 90) 1971 | (effects (font (size 1.27 1.27)) (justify left)) 1972 | ) 1973 | (property "Footprint" "" (id 2) (at 136.525 59.69 0) 1974 | (effects (font (size 1.27 1.27)) hide) 1975 | ) 1976 | (property "Datasheet" "~" (id 3) (at 136.525 59.69 0) 1977 | (effects (font (size 1.27 1.27)) hide) 1978 | ) 1979 | (pin "1" (uuid 894d4ddb-a34d-449b-a3f5-1cf766953a6e)) 1980 | ) 1981 | 1982 | (symbol (lib_id "Connector:Conn_01x01_Male") (at 203.835 107.95 180) (unit 1) 1983 | (in_bom yes) (on_board yes) 1984 | (uuid 6b8a0df1-e948-470d-88ef-15232205e858) 1985 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 1986 | (property "Reference" "U" (id 0) (at 203.835 106.045 0) 1987 | (effects (font (size 1.27 1.27)) hide) 1988 | ) 1989 | (property "Value" "" (id 1) (at 208.915 107.95 0) 1990 | (effects (font (size 1.27 1.27))) 1991 | ) 1992 | (property "Footprint" "" (id 2) (at 203.835 107.95 0) 1993 | (effects (font (size 1.27 1.27)) hide) 1994 | ) 1995 | (property "Datasheet" "~" (id 3) (at 203.835 107.95 0) 1996 | (effects (font (size 1.27 1.27)) hide) 1997 | ) 1998 | (pin "1" (uuid e407e2a9-831d-4caf-811a-5b41463f740a)) 1999 | ) 2000 | 2001 | (symbol (lib_id "Device:R") (at 70.485 117.475 90) (unit 1) 2002 | (in_bom yes) (on_board yes) 2003 | (uuid 6ef29912-f0b2-4188-bb1b-0723fef94a94) 2004 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2005 | (property "Reference" "U" (id 0) (at 70.485 115.57 90) 2006 | (effects (font (size 1.27 1.27))) 2007 | ) 2008 | (property "Value" "" (id 1) (at 70.485 119.38 90) 2009 | (effects (font (size 1.27 1.27))) 2010 | ) 2011 | (property "Footprint" "" (id 2) (at 70.485 119.253 90) 2012 | (effects (font (size 1.27 1.27)) hide) 2013 | ) 2014 | (property "Datasheet" "~" (id 3) (at 70.485 117.475 0) 2015 | (effects (font (size 1.27 1.27)) hide) 2016 | ) 2017 | (pin "1" (uuid 0bc7fe7e-ca6f-4ec1-82eb-3753f0d5acdb)) 2018 | (pin "2" (uuid 048fa6c4-55bd-4146-9991-306a730596cd)) 2019 | ) 2020 | 2021 | (symbol (lib_id "power:GND") (at 187.325 40.005 0) (unit 1) 2022 | (in_bom yes) (on_board yes) (fields_autoplaced) 2023 | (uuid 74c26df3-587d-4243-bb42-a22d8ad7d0cd) 2024 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2025 | (property "Reference" "U" (id 0) (at 187.325 46.355 0) 2026 | (effects (font (size 1.27 1.27)) hide) 2027 | ) 2028 | (property "Value" "" (id 1) (at 187.325 43.815 0) 2029 | (effects (font (size 1.27 1.27))) 2030 | ) 2031 | (property "Footprint" "" (id 2) (at 187.325 40.005 0) 2032 | (effects (font (size 1.27 1.27)) hide) 2033 | ) 2034 | (property "Datasheet" "" (id 3) (at 187.325 40.005 0) 2035 | (effects (font (size 1.27 1.27)) hide) 2036 | ) 2037 | (pin "1" (uuid d11df5d5-83f9-4785-9aac-8a60191eb1d4)) 2038 | ) 2039 | 2040 | (symbol (lib_id "LED:WS2812B-2020") (at 251.46 36.83 0) (unit 1) 2041 | (in_bom no) (on_board yes) (fields_autoplaced) 2042 | (uuid 75eef243-8a74-40c9-bd9a-3c6a7e5f6f44) 2043 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2044 | (property "Reference" "U" (id 0) (at 265.43 33.7059 0) 2045 | (effects (font (size 1.27 1.27))) 2046 | ) 2047 | (property "Value" "" (id 1) (at 265.43 36.2459 0) 2048 | (effects (font (size 1.27 1.27))) 2049 | ) 2050 | (property "Footprint" "" (id 2) (at 252.73 44.45 0) 2051 | (effects (font (size 1.27 1.27)) (justify left top) hide) 2052 | ) 2053 | (property "Datasheet" "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" (id 3) (at 254 46.355 0) 2054 | (effects (font (size 1.27 1.27)) (justify left top) hide) 2055 | ) 2056 | (pin "1" (uuid 8982519b-3ce3-4247-820f-a6261f286fcd)) 2057 | (pin "2" (uuid 84c0e9be-407d-42ce-8dce-6652c4817ad7)) 2058 | (pin "3" (uuid 95206c11-69c6-4d9d-9db4-7a048480b071)) 2059 | (pin "4" (uuid 3275e07e-a214-4d38-9a18-2b8d3a0c5588)) 2060 | ) 2061 | 2062 | (symbol (lib_id "Device:C") (at 252.73 -5.715 0) (unit 1) 2063 | (in_bom yes) (on_board yes) 2064 | (uuid 7e46654a-770c-4b14-9c7f-c8625cdbf273) 2065 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2066 | (property "Reference" "U" (id 0) (at 247.65 -5.715 0) 2067 | (effects (font (size 1.27 1.27)) (justify left)) 2068 | ) 2069 | (property "Value" "" (id 1) (at 247.65 -3.175 0) 2070 | (effects (font (size 1.27 1.27)) (justify left)) 2071 | ) 2072 | (property "Footprint" "" (id 2) (at 253.6952 -1.905 0) 2073 | (effects (font (size 1.27 1.27)) hide) 2074 | ) 2075 | (property "Datasheet" "~" (id 3) (at 252.73 -5.715 0) 2076 | (effects (font (size 1.27 1.27)) hide) 2077 | ) 2078 | (pin "1" (uuid 01228960-9287-45fe-8b2c-b62b6ca8d8d4)) 2079 | (pin "2" (uuid 27d08610-d7ec-4288-bd37-9cc33ed4c770)) 2080 | ) 2081 | 2082 | (symbol (lib_id "power:GND") (at 220.345 64.77 90) (unit 1) 2083 | (in_bom yes) (on_board yes) (fields_autoplaced) 2084 | (uuid 8bcf6e53-34b2-4037-af92-6fe4b43c7b40) 2085 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2086 | (property "Reference" "U" (id 0) (at 226.695 64.77 0) 2087 | (effects (font (size 1.27 1.27)) hide) 2088 | ) 2089 | (property "Value" "" (id 1) (at 223.52 65.405 90) 2090 | (effects (font (size 1.27 1.27)) (justify right)) 2091 | ) 2092 | (property "Footprint" "" (id 2) (at 220.345 64.77 0) 2093 | (effects (font (size 1.27 1.27)) hide) 2094 | ) 2095 | (property "Datasheet" "" (id 3) (at 220.345 64.77 0) 2096 | (effects (font (size 1.27 1.27)) hide) 2097 | ) 2098 | (pin "1" (uuid f09990f5-d050-407b-a16e-286afcf6ec3b)) 2099 | ) 2100 | 2101 | (symbol (lib_id "power:GND") (at 114.3 125.095 0) (unit 1) 2102 | (in_bom yes) (on_board yes) (fields_autoplaced) 2103 | (uuid 9a3333ad-93a8-4c0b-9c5c-4beca406bfea) 2104 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2105 | (property "Reference" "U" (id 0) (at 114.3 131.445 0) 2106 | (effects (font (size 1.27 1.27)) hide) 2107 | ) 2108 | (property "Value" "" (id 1) (at 116.84 127 0) 2109 | (effects (font (size 1.27 1.27)) (justify left)) 2110 | ) 2111 | (property "Footprint" "" (id 2) (at 114.3 125.095 0) 2112 | (effects (font (size 1.27 1.27)) hide) 2113 | ) 2114 | (property "Datasheet" "" (id 3) (at 114.3 125.095 0) 2115 | (effects (font (size 1.27 1.27)) hide) 2116 | ) 2117 | (pin "1" (uuid 8c3585f2-8dca-416b-8370-216b6318bf8a)) 2118 | ) 2119 | 2120 | (symbol (lib_id "Device:C") (at 86.36 52.705 0) (unit 1) 2121 | (in_bom yes) (on_board yes) 2122 | (uuid 9e1dccc9-e727-4b0d-87ac-eb90b93ab019) 2123 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2124 | (property "Reference" "U" (id 0) (at 81.28 52.705 0) 2125 | (effects (font (size 1.27 1.27)) (justify left)) 2126 | ) 2127 | (property "Value" "" (id 1) (at 81.28 55.245 0) 2128 | (effects (font (size 1.27 1.27)) (justify left)) 2129 | ) 2130 | (property "Footprint" "" (id 2) (at 87.3252 56.515 0) 2131 | (effects (font (size 1.27 1.27)) hide) 2132 | ) 2133 | (property "Datasheet" "~" (id 3) (at 86.36 52.705 0) 2134 | (effects (font (size 1.27 1.27)) hide) 2135 | ) 2136 | (pin "1" (uuid c4123582-e449-4f4d-af52-fdf838775526)) 2137 | (pin "2" (uuid 871d9496-9771-442c-a2ac-16b5b47702b1)) 2138 | ) 2139 | 2140 | (symbol (lib_id "power:GND") (at 174.625 -9.525 0) (unit 1) 2141 | (in_bom yes) (on_board yes) (fields_autoplaced) 2142 | (uuid c6bd4025-124c-4003-9bd5-baf8cb0f8d56) 2143 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2144 | (property "Reference" "U" (id 0) (at 174.625 -3.175 0) 2145 | (effects (font (size 1.27 1.27)) hide) 2146 | ) 2147 | (property "Value" "" (id 1) (at 174.625 -5.715 0) 2148 | (effects (font (size 1.27 1.27))) 2149 | ) 2150 | (property "Footprint" "" (id 2) (at 174.625 -9.525 0) 2151 | (effects (font (size 1.27 1.27)) hide) 2152 | ) 2153 | (property "Datasheet" "" (id 3) (at 174.625 -9.525 0) 2154 | (effects (font (size 1.27 1.27)) hide) 2155 | ) 2156 | (pin "1" (uuid 31d7233e-8861-4b46-94b8-476f15ee4623)) 2157 | ) 2158 | 2159 | (symbol (lib_id "power:GND") (at 252.73 -0.635 0) (unit 1) 2160 | (in_bom yes) (on_board yes) (fields_autoplaced) 2161 | (uuid c8c17449-5561-4609-8cc8-d852c41241be) 2162 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2163 | (property "Reference" "U" (id 0) (at 252.73 5.715 0) 2164 | (effects (font (size 1.27 1.27)) hide) 2165 | ) 2166 | (property "Value" "" (id 1) (at 252.73 3.175 0) 2167 | (effects (font (size 1.27 1.27))) 2168 | ) 2169 | (property "Footprint" "" (id 2) (at 252.73 -0.635 0) 2170 | (effects (font (size 1.27 1.27)) hide) 2171 | ) 2172 | (property "Datasheet" "" (id 3) (at 252.73 -0.635 0) 2173 | (effects (font (size 1.27 1.27)) hide) 2174 | ) 2175 | (pin "1" (uuid d319be2f-b7c5-413b-b527-bb568c5d09ee)) 2176 | ) 2177 | 2178 | (symbol (lib_id "power:GND") (at 86.36 57.785 0) (unit 1) 2179 | (in_bom yes) (on_board yes) (fields_autoplaced) 2180 | (uuid d05a69fd-9f18-4db0-b775-57a438bf1cd1) 2181 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2182 | (property "Reference" "U" (id 0) (at 86.36 64.135 0) 2183 | (effects (font (size 1.27 1.27)) hide) 2184 | ) 2185 | (property "Value" "" (id 1) (at 86.36 61.595 0) 2186 | (effects (font (size 1.27 1.27))) 2187 | ) 2188 | (property "Footprint" "" (id 2) (at 86.36 57.785 0) 2189 | (effects (font (size 1.27 1.27)) hide) 2190 | ) 2191 | (property "Datasheet" "" (id 3) (at 86.36 57.785 0) 2192 | (effects (font (size 1.27 1.27)) hide) 2193 | ) 2194 | (pin "1" (uuid 335d4162-f856-48a0-b0b6-d5d74e7d390d)) 2195 | ) 2196 | 2197 | (symbol (lib_id "Connector:Conn_01x09_Male") (at 208.915 74.93 0) (unit 1) 2198 | (in_bom yes) (on_board yes) (fields_autoplaced) 2199 | (uuid d326ebbf-79b6-48d2-a6a7-ad8abb56bf3d) 2200 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2201 | (property "Reference" "U" (id 0) (at 209.55 60.96 0) 2202 | (effects (font (size 1.27 1.27))) 2203 | ) 2204 | (property "Value" "" (id 1) (at 209.55 63.5 0) 2205 | (effects (font (size 1.27 1.27))) 2206 | ) 2207 | (property "Footprint" "" (id 2) (at 208.915 74.93 0) 2208 | (effects (font (size 1.27 1.27)) hide) 2209 | ) 2210 | (property "Datasheet" "~" (id 3) (at 208.915 74.93 0) 2211 | (effects (font (size 1.27 1.27)) hide) 2212 | ) 2213 | (pin "1" (uuid 45099ef8-b470-4f34-a90e-0a936a6b6d10)) 2214 | (pin "2" (uuid 8fb20e93-f7b0-4261-985f-c093706f08ba)) 2215 | (pin "3" (uuid fbe3d599-804b-4434-a0f7-d1228fca0003)) 2216 | (pin "4" (uuid 605ef108-bf65-4b3c-b035-f1692fd7a098)) 2217 | (pin "5" (uuid c901e045-695f-4c29-83cc-8cb0a4bb27cf)) 2218 | (pin "6" (uuid 85ad4ffc-0ea1-43e4-92d8-353fb427e768)) 2219 | (pin "7" (uuid dc672fc4-349f-4386-9438-aaaac984aa5b)) 2220 | (pin "8" (uuid b5084c89-9ef9-4fc9-83c8-88e6bc8e892b)) 2221 | (pin "9" (uuid bb4dbbaa-4b5d-4e6d-8c43-1b8be9dab861)) 2222 | ) 2223 | 2224 | (symbol (lib_id "Regulator_Linear:NCP167") (at 178.435 29.21 0) (unit 1) 2225 | (in_bom no) (on_board yes) (fields_autoplaced) 2226 | (uuid db2fd905-5c00-415b-b0c7-5be5843515f7) 2227 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2228 | (property "Reference" "U" (id 0) (at 187.325 21.59 0) 2229 | (effects (font (size 1.27 1.27))) 2230 | ) 2231 | (property "Value" "" (id 1) (at 187.325 24.13 0) 2232 | (effects (font (size 1.27 1.27))) 2233 | ) 2234 | (property "Footprint" "" (id 2) (at 178.435 27.94 0) 2235 | (effects (font (size 1.27 1.27)) hide) 2236 | ) 2237 | (property "Datasheet" "" (id 3) (at 178.435 27.94 0) 2238 | (effects (font (size 1.27 1.27)) hide) 2239 | ) 2240 | (pin "1" (uuid 4cfab5ff-8210-4ce9-990a-4a64a13a7ec9)) 2241 | (pin "2" (uuid 677caf35-2772-446f-ac95-e29ff6b09cb6)) 2242 | (pin "3" (uuid 0f0003a5-17d9-4694-b0bc-5ac3347f4af5)) 2243 | (pin "4" (uuid 8a38f71d-0966-4f1c-bfb8-b079f94287d4)) 2244 | ) 2245 | 2246 | (symbol (lib_id "Device:C") (at 174.625 -14.605 0) (unit 1) 2247 | (in_bom yes) (on_board yes) 2248 | (uuid e603c816-a497-4a99-a754-b979edca5bd3) 2249 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2250 | (property "Reference" "U" (id 0) (at 169.545 -14.605 0) 2251 | (effects (font (size 1.27 1.27)) (justify left)) 2252 | ) 2253 | (property "Value" "" (id 1) (at 169.545 -12.065 0) 2254 | (effects (font (size 1.27 1.27)) (justify left)) 2255 | ) 2256 | (property "Footprint" "" (id 2) (at 175.5902 -10.795 0) 2257 | (effects (font (size 1.27 1.27)) hide) 2258 | ) 2259 | (property "Datasheet" "~" (id 3) (at 174.625 -14.605 0) 2260 | (effects (font (size 1.27 1.27)) hide) 2261 | ) 2262 | (pin "1" (uuid 95159c59-a821-4201-85ae-365595535815)) 2263 | (pin "2" (uuid c764ccda-958e-4ddd-a14a-70b1eba91409)) 2264 | ) 2265 | 2266 | (symbol (lib_id "RF_Module:ESP32-PICO-D4") (at 114.3 82.55 0) (unit 1) 2267 | (in_bom yes) (on_board yes) (fields_autoplaced) 2268 | (uuid e8c50f1b-c316-4110-9cce-5c24c65a1eaa) 2269 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2270 | (property "Reference" "U" (id 0) (at 116.2559 123.19 0) 2271 | (effects (font (size 1.27 1.27)) (justify left)) 2272 | ) 2273 | (property "Value" "" (id 1) (at 116.2559 124.46 0) 2274 | (effects (font (size 1.27 1.27)) (justify left)) 2275 | ) 2276 | (property "Footprint" "" (id 2) (at 114.3 125.73 0) 2277 | (effects (font (size 1.27 1.27)) hide) 2278 | ) 2279 | (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf" (id 3) (at 120.65 107.95 0) 2280 | (effects (font (size 1.27 1.27)) hide) 2281 | ) 2282 | (pin "1" (uuid 8c514922-ffe1-4e37-a260-e807409f2e0d)) 2283 | (pin "10" (uuid 40976bf0-19de-460f-ad64-224d4f51e16b)) 2284 | (pin "11" (uuid e21aa84b-970e-47cf-b64f-3b55ee0e1b51)) 2285 | (pin "12" (uuid c8c79177-94d4-43e2-a654-f0a5554fbb68)) 2286 | (pin "13" (uuid a15a7506-eae4-4933-84da-9ad754258706)) 2287 | (pin "14" (uuid d3c11c8f-a73d-4211-934b-a6da255728ad)) 2288 | (pin "15" (uuid 639c0e59-e95c-4114-bccd-2e7277505454)) 2289 | (pin "16" (uuid 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)) 2290 | (pin "17" (uuid 03caada9-9e22-4e2d-9035-b15433dfbb17)) 2291 | (pin "18" (uuid 1f3003e6-dce5-420f-906b-3f1e92b67249)) 2292 | (pin "19" (uuid 0ff508fd-18da-4ab7-9844-3c8a28c2587e)) 2293 | (pin "2" (uuid 378af8b4-af3d-46e7-89ae-deff12ca9067)) 2294 | (pin "20" (uuid a27eb049-c992-4f11-a026-1e6a8d9d0160)) 2295 | (pin "21" (uuid 13c0ff76-ed71-4cd9-abb0-92c376825d5d)) 2296 | (pin "22" (uuid ffd175d1-912a-4224-be1e-a8198680f46b)) 2297 | (pin "23" (uuid 8412992d-8754-44de-9e08-115cec1a3eff)) 2298 | (pin "24" (uuid df32840e-2912-4088-b54c-9a85f64c0265)) 2299 | (pin "25" (uuid c332fa55-4168-4f55-88a5-f82c7c21040b)) 2300 | (pin "26" (uuid 68877d35-b796-44db-9124-b8e744e7412e)) 2301 | (pin "27" (uuid b96fe6ac-3535-4455-ab88-ed77f5e46d6e)) 2302 | (pin "28" (uuid 9f8381e9-3077-4453-a480-a01ad9c1a940)) 2303 | (pin "29" (uuid 911bdcbe-493f-4e21-a506-7cbc636e2c17)) 2304 | (pin "3" (uuid 6d26d68f-1ca7-4ff3-b058-272f1c399047)) 2305 | (pin "30" (uuid d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)) 2306 | (pin "31" (uuid 70e15522-1572-4451-9c0d-6d36ac70d8c6)) 2307 | (pin "32" (uuid dde51ae5-b215-445e-92bb-4a12ec410531)) 2308 | (pin "33" (uuid 7599133e-c681-4202-85d9-c20dac196c64)) 2309 | (pin "34" (uuid 4fb21471-41be-4be8-9687-66030f97befc)) 2310 | (pin "35" (uuid 0755aee5-bc01-4cb5-b830-583289df50a3)) 2311 | (pin "36" (uuid 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)) 2312 | (pin "37" (uuid ec31c074-17b2-48e1-ab01-071acad3fa04)) 2313 | (pin "38" (uuid 60dcd1fe-7079-4cb8-b509-04558ccf5097)) 2314 | (pin "39" (uuid c5eb1e4c-ce83-470e-8f32-e20ff1f886a3)) 2315 | (pin "4" (uuid 85b7594c-358f-454b-b2ad-dd0b1d67ed76)) 2316 | (pin "40" (uuid 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d)) 2317 | (pin "41" (uuid a5cd8da1-8f7f-4f80-bb23-0317de562222)) 2318 | (pin "42" (uuid 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)) 2319 | (pin "43" (uuid 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)) 2320 | (pin "44" (uuid ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)) 2321 | (pin "45" (uuid 7d928d56-093a-4ca8-aed1-414b7e703b45)) 2322 | (pin "46" (uuid 8a650ebf-3f78-4ca4-a26b-a5028693e36d)) 2323 | (pin "47" (uuid 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)) 2324 | (pin "48" (uuid abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)) 2325 | (pin "49" (uuid 0c3dceba-7c95-4b3d-b590-0eb581444beb)) 2326 | (pin "5" (uuid 965308c8-e014-459a-b9db-b8493a601c62)) 2327 | (pin "6" (uuid b1c649b1-f44d-46c7-9dea-818e75a1b87e)) 2328 | (pin "7" (uuid f3628265-0155-43e2-a467-c40ff783e265)) 2329 | (pin "8" (uuid 6595b9c7-02ee-4647-bde5-6b566e35163e)) 2330 | (pin "9" (uuid b7199d9b-bebb-4100-9ad3-c2bd31e21d65)) 2331 | ) 2332 | 2333 | (symbol (lib_id "power:GND") (at 269.875 -0.635 0) (unit 1) 2334 | (in_bom yes) (on_board yes) (fields_autoplaced) 2335 | (uuid ebab3a33-5c35-40ea-85d9-fe7343601955) 2336 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2337 | (property "Reference" "U" (id 0) (at 269.875 5.715 0) 2338 | (effects (font (size 1.27 1.27)) hide) 2339 | ) 2340 | (property "Value" "" (id 1) (at 269.875 3.175 0) 2341 | (effects (font (size 1.27 1.27))) 2342 | ) 2343 | (property "Footprint" "" (id 2) (at 269.875 -0.635 0) 2344 | (effects (font (size 1.27 1.27)) hide) 2345 | ) 2346 | (property "Datasheet" "" (id 3) (at 269.875 -0.635 0) 2347 | (effects (font (size 1.27 1.27)) hide) 2348 | ) 2349 | (pin "1" (uuid a3f5eebb-b0c1-47ce-8d53-1ec0355e3b57)) 2350 | ) 2351 | 2352 | (symbol (lib_id "power:GND") (at 208.915 -9.525 0) (unit 1) 2353 | (in_bom yes) (on_board yes) (fields_autoplaced) 2354 | (uuid ee924ea1-75cf-4e2c-ad92-f05647c9f0af) 2355 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2356 | (property "Reference" "U" (id 0) (at 208.915 -3.175 0) 2357 | (effects (font (size 1.27 1.27)) hide) 2358 | ) 2359 | (property "Value" "" (id 1) (at 208.915 -5.715 0) 2360 | (effects (font (size 1.27 1.27))) 2361 | ) 2362 | (property "Footprint" "" (id 2) (at 208.915 -9.525 0) 2363 | (effects (font (size 1.27 1.27)) hide) 2364 | ) 2365 | (property "Datasheet" "" (id 3) (at 208.915 -9.525 0) 2366 | (effects (font (size 1.27 1.27)) hide) 2367 | ) 2368 | (pin "1" (uuid fbaf0a73-1e37-4616-b4c8-112e1f4fca76)) 2369 | ) 2370 | 2371 | (symbol (lib_id "Connector:TestPoint") (at 136.525 59.69 270) (unit 1) 2372 | (in_bom yes) (on_board yes) 2373 | (uuid f2b5addf-7ef4-448a-ba48-133a39cbd038) 2374 | (default_instance (reference "U") (unit 1) (value "") (footprint "")) 2375 | (property "Reference" "U" (id 0) (at 151.13 59.69 90) 2376 | (effects (font (size 1.27 1.27)) (justify left)) 2377 | ) 2378 | (property "Value" "" (id 1) (at 141.605 59.69 90) 2379 | (effects (font (size 1.27 1.27)) (justify left)) 2380 | ) 2381 | (property "Footprint" "" (id 2) (at 136.525 64.77 0) 2382 | (effects (font (size 1.27 1.27)) hide) 2383 | ) 2384 | (property "Datasheet" "~" (id 3) (at 136.525 64.77 0) 2385 | (effects (font (size 1.27 1.27)) hide) 2386 | ) 2387 | (pin "1" (uuid 8b158457-9c5c-400c-b7e4-b3e585dbfd11)) 2388 | ) 2389 | 2390 | (sheet_instances 2391 | (path "/" (page "1")) 2392 | ) 2393 | 2394 | (symbol_instances 2395 | (path "/8bcf6e53-34b2-4037-af92-6fe4b43c7b40" 2396 | (reference "#PWR0101") (unit 1) (value "GND") (footprint "") 2397 | ) 2398 | (path "/9a3333ad-93a8-4c0b-9c5c-4beca406bfea" 2399 | (reference "#PWR0102") (unit 1) (value "GND") (footprint "") 2400 | ) 2401 | (path "/74c26df3-587d-4243-bb42-a22d8ad7d0cd" 2402 | (reference "#PWR0103") (unit 1) (value "GND") (footprint "") 2403 | ) 2404 | (path "/12ab2b93-e186-4c48-b2b3-ea49775714b0" 2405 | (reference "#PWR0104") (unit 1) (value "GND") (footprint "") 2406 | ) 2407 | (path "/ee924ea1-75cf-4e2c-ad92-f05647c9f0af" 2408 | (reference "#PWR0105") (unit 1) (value "GND") (footprint "") 2409 | ) 2410 | (path "/0ee9b4bb-05d5-452e-bcac-b2725ec26713" 2411 | (reference "#PWR0106") (unit 1) (value "GND") (footprint "") 2412 | ) 2413 | (path "/246a3686-c2bc-4094-953b-3b6dbba552fe" 2414 | (reference "#PWR0107") (unit 1) (value "GND") (footprint "") 2415 | ) 2416 | (path "/636fe853-d7d1-4d75-8f17-455a0977fcf5" 2417 | (reference "#PWR0108") (unit 1) (value "GND") (footprint "") 2418 | ) 2419 | (path "/c8c17449-5561-4609-8cc8-d852c41241be" 2420 | (reference "#PWR0109") (unit 1) (value "GND") (footprint "") 2421 | ) 2422 | (path "/d05a69fd-9f18-4db0-b775-57a438bf1cd1" 2423 | (reference "#PWR0110") (unit 1) (value "GND") (footprint "") 2424 | ) 2425 | (path "/c6bd4025-124c-4003-9bd5-baf8cb0f8d56" 2426 | (reference "#PWR0111") (unit 1) (value "GND") (footprint "") 2427 | ) 2428 | (path "/49617ad2-da0b-481f-bf69-9b04ed21f176" 2429 | (reference "#PWR0112") (unit 1) (value "GND") (footprint "") 2430 | ) 2431 | (path "/ebab3a33-5c35-40ea-85d9-fe7343601955" 2432 | (reference "#PWR0113") (unit 1) (value "GND") (footprint "") 2433 | ) 2434 | (path "/4eea2c50-dcba-4a84-9db6-81c586430ba0" 2435 | (reference "#PWR0114") (unit 1) (value "GND") (footprint "") 2436 | ) 2437 | (path "/3fafb9df-061b-4720-baac-cad91eec861a" 2438 | (reference "C1") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2439 | ) 2440 | (path "/5a06614c-9556-4fe1-915f-0d676dc9aaf7" 2441 | (reference "C2") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2442 | ) 2443 | (path "/43d9b997-6d6f-4274-937c-cee72b7efd9b" 2444 | (reference "C3") (unit 1) (value "4.3nH") (footprint "Capacitor_SMD:C_0402_1005Metric") 2445 | ) 2446 | (path "/2c110474-2739-470a-b7b9-e510e2240863" 2447 | (reference "C4") (unit 1) (value "0R") (footprint "Capacitor_SMD:C_0402_1005Metric") 2448 | ) 2449 | (path "/54316b81-4f3f-4409-afb7-f12186426fd0" 2450 | (reference "C5") (unit 1) (value "C") (footprint "Inductor_SMD:L_0402_1005Metric") 2451 | ) 2452 | (path "/49fa14de-182b-49e6-81ea-786f93647455" 2453 | (reference "C6") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2454 | ) 2455 | (path "/9e1dccc9-e727-4b0d-87ac-eb90b93ab019" 2456 | (reference "C7") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2457 | ) 2458 | (path "/e603c816-a497-4a99-a754-b979edca5bd3" 2459 | (reference "C8") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2460 | ) 2461 | (path "/7e46654a-770c-4b14-9c7f-c8625cdbf273" 2462 | (reference "C9") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2463 | ) 2464 | (path "/0a476d13-0aaa-4270-b5ba-fb95b3412958" 2465 | (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2466 | ) 2467 | (path "/24026b52-baa7-45d3-9d1f-f37006cea725" 2468 | (reference "C11") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric") 2469 | ) 2470 | (path "/75eef243-8a74-40c9-bd9a-3c6a7e5f6f44" 2471 | (reference "D1") (unit 1) (value "WS2812B-2020") (footprint "my-stuff:ws2812b-2020") 2472 | ) 2473 | (path "/31cc6bb2-f229-4ee1-b2f2-30cd663c9929" 2474 | (reference "GND1") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.0mm") 2475 | ) 2476 | (path "/0da3fad3-50ab-4083-9ca8-fcf1d8d1f3c2" 2477 | (reference "IO0") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.0mm") 2478 | ) 2479 | (path "/d326ebbf-79b6-48d2-a6a7-ad8abb56bf3d" 2480 | (reference "J1") (unit 1) (value "Conn_01x09_Male") (footprint "my-stuff:inwall-relay-cpu") 2481 | ) 2482 | (path "/6b8a0df1-e948-470d-88ef-15232205e858" 2483 | (reference "J2") (unit 1) (value "ANTENNA") (footprint "my-stuff:antenna_molex_479480001") 2484 | ) 2485 | (path "/424747b5-cad0-40ae-9bd2-c747a644e543" 2486 | (reference "R1") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric") 2487 | ) 2488 | (path "/6ef29912-f0b2-4188-bb1b-0723fef94a94" 2489 | (reference "R2") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric") 2490 | ) 2491 | (path "/2bf7e63c-f108-4e6f-9065-b94a0ede0141" 2492 | (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric") 2493 | ) 2494 | (path "/2c49fbe2-25b6-4810-9f89-9608c734c6e0" 2495 | (reference "RST1") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.0mm") 2496 | ) 2497 | (path "/f2b5addf-7ef4-448a-ba48-133a39cbd038" 2498 | (reference "RXD1") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.0mm") 2499 | ) 2500 | (path "/68d63e84-63bb-40d4-8af3-2b9ec7968232" 2501 | (reference "TXD1") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.0mm") 2502 | ) 2503 | (path "/e8c50f1b-c316-4110-9cce-5c24c65a1eaa" 2504 | (reference "U1") (unit 1) (value "ESP32-PICO-D4") (footprint "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm") 2505 | ) 2506 | (path "/db2fd905-5c00-415b-b0c7-5be5843515f7" 2507 | (reference "U2") (unit 1) (value "NCP167") (footprint "Package_DFN_QFN:OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm") 2508 | ) 2509 | (path "/25b5d632-5383-4936-88b4-235579afd72d" 2510 | (reference "U3") (unit 1) (value "24AA02-OT") (footprint "Package_TO_SOT_SMD:SOT-23-5") 2511 | ) 2512 | (path "/4be05e21-6640-46c0-b0ae-2c49078cca31" 2513 | (reference "VDD1") (unit 1) (value "TestPoint") (footprint "TestPoint:TestPoint_Pad_D1.0mm") 2514 | ) 2515 | ) 2516 | ) 2517 | --------------------------------------------------------------------------------