├── .gitignore ├── EAGLE ├── ESP12_Harness.brd └── ESP12_Harness.sch ├── IMAGES ├── back.png ├── back_3d.png ├── front.png ├── front_3d.png ├── transparent_back.png └── transparent_front.png ├── KICAD ├── ESP12_Harness-backups │ ├── ESP12_Harness-2022-07-24_140928.zip │ ├── ESP12_Harness-2022-07-24_141439.zip │ ├── ESP12_Harness-2022-07-24_141941.zip │ ├── ESP12_Harness-2022-07-24_142445.zip │ ├── ESP12_Harness-2022-07-24_142947.zip │ └── ESP12_Harness-2022-07-24_143457.zip ├── ESP12_Harness-eagle-import.kicad_sym ├── ESP12_Harness.kicad_dru ├── ESP12_Harness.kicad_pcb ├── ESP12_Harness.kicad_prl ├── ESP12_Harness.kicad_pro ├── ESP12_Harness.kicad_sch ├── ESP12_Harness.pretty │ └── ESP12.kicad_mod ├── empty.kicad_wks ├── fp-info-cache ├── fp-lib-table └── sym-lib-table ├── LICENSE ├── PRODUCTION_FILES ├── ESP12_Harness-B_Cu.gbr ├── ESP12_Harness-B_Mask.gbr ├── ESP12_Harness-B_Paste.gbr ├── ESP12_Harness-B_Silkscreen.gbr ├── ESP12_Harness-Edge_Cuts.gbr ├── ESP12_Harness-F_Cu.gbr ├── ESP12_Harness-F_Mask.gbr ├── ESP12_Harness-F_Paste.gbr ├── ESP12_Harness-F_Silkscreen.gbr ├── ESP12_Harness-NPTH-drl_map.gbr ├── ESP12_Harness-NPTH.drl ├── ESP12_Harness-PTH-drl_map.gbr ├── ESP12_Harness-PTH.drl ├── ESP12_Harness-job.gbrjob ├── ESP12_Harness.zip └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | **/.DS_Store 3 | -------------------------------------------------------------------------------- /EAGLE/ESP12_Harness.brd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | ESP8266 ESP-12 Pogo Module 111 | For WeMos D1 Mini Board 112 | 113 | >> Pogo Pins on long channels. 114 | >> Wemos D1 Mini Board w/o ESP module to be 115 | reflowed upside down onto the corner. 116 | >>> POGO PINS >>> 117 | <<< POGO PINS <<< 118 | >>> POGO PINS >>> 119 | <<< POGO PINS <<< 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | ESP8266 ESP-12 Pogo Module 131 | For WeMos D1 Mini Board 132 | 133 | >> Pogo Pins on long channels. 134 | >> Wemos D1 Mini Board w/o ESP module to be 135 | reflowed upside down onto the corner. 136 | WeMos-ESP-Pogo V1.0 137 | (C)Wing Tang Wong 138 | WeMos-ESP-Pogo V1.0 139 | (C)Wing Tang Wong 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | ESP8266 Module 12 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | ESP - 12 200 | >Value 201 | >Name 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | <b>Dirty Cheap Dirty Board Design Rules</b> 235 | <br> 236 | <br>Min width/Spacing: 5/5mil 237 | <br>Min diameter of finished hole 12mil 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | Since Version 6.2.2 text objects can contain more than one line, 646 | which will not be processed correctly with this version. 647 | 648 | 649 | 650 | -------------------------------------------------------------------------------- /EAGLE/ESP12_Harness.sch: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | ESP8266 Module 12 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | ESP - 12 116 | >Value 117 | >Name 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | ESP8266 Module 12 SMD pads 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | ESP - 12 161 | >Value 162 | >Name 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | >Name 204 | >Value 205 | 206 | 207 | 208 | 209 | ESP8266 Wifi module 12 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | -------------------------------------------------------------------------------- /IMAGES/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/IMAGES/back.png -------------------------------------------------------------------------------- /IMAGES/back_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/IMAGES/back_3d.png -------------------------------------------------------------------------------- /IMAGES/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/IMAGES/front.png -------------------------------------------------------------------------------- /IMAGES/front_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/IMAGES/front_3d.png -------------------------------------------------------------------------------- /IMAGES/transparent_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/IMAGES/transparent_back.png -------------------------------------------------------------------------------- /IMAGES/transparent_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/IMAGES/transparent_front.png -------------------------------------------------------------------------------- /KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_140928.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_140928.zip -------------------------------------------------------------------------------- /KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_141439.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_141439.zip -------------------------------------------------------------------------------- /KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_141941.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_141941.zip -------------------------------------------------------------------------------- /KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_142445.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_142445.zip -------------------------------------------------------------------------------- /KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_142947.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_142947.zip -------------------------------------------------------------------------------- /KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_143457.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/KICAD/ESP12_Harness-backups/ESP12_Harness-2022-07-24_143457.zip -------------------------------------------------------------------------------- /KICAD/ESP12_Harness-eagle-import.kicad_sym: -------------------------------------------------------------------------------- 1 | (kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) 2 | (symbol "ESP12" (in_bom yes) (on_board yes) 3 | (property "Reference" "U" (id 0) (at -12.7 10.16 0) 4 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 5 | ) 6 | (property "Value" "ESP12" (id 1) (at -12.7 -15.24 0) 7 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 8 | ) 9 | (property "Footprint" "" (id 2) (at 0 0 0) 10 | (effects (font (size 1.27 1.27)) hide) 11 | ) 12 | (property "Datasheet" "" (id 3) (at 0 0 0) 13 | (effects (font (size 1.27 1.27)) hide) 14 | ) 15 | (property "ki_locked" "" (id 4) (at 0 0 0) 16 | (effects (font (size 1.27 1.27))) 17 | ) 18 | (symbol "ESP12_1_0" 19 | (polyline 20 | (pts 21 | (xy -12.7 -12.7) 22 | (xy 10.16 -12.7) 23 | ) 24 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 25 | (fill (type none)) 26 | ) 27 | (polyline 28 | (pts 29 | (xy -12.7 10.16) 30 | (xy -12.7 -12.7) 31 | ) 32 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 33 | (fill (type none)) 34 | ) 35 | (polyline 36 | (pts 37 | (xy 10.16 -12.7) 38 | (xy 10.16 10.16) 39 | ) 40 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 41 | (fill (type none)) 42 | ) 43 | (polyline 44 | (pts 45 | (xy 10.16 10.16) 46 | (xy -12.7 10.16) 47 | ) 48 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 49 | (fill (type none)) 50 | ) 51 | (pin bidirectional line (at -17.78 5.08 0) (length 5.08) 52 | (name "ADC" (effects (font (size 1.27 1.27)))) 53 | (number "ADC" (effects (font (size 0 0)))) 54 | ) 55 | (pin bidirectional line (at -17.78 2.54 0) (length 5.08) 56 | (name "CH_PD" (effects (font (size 1.27 1.27)))) 57 | (number "CH_PD" (effects (font (size 0 0)))) 58 | ) 59 | (pin bidirectional line (at 15.24 -10.16 180) (length 5.08) 60 | (name "GND" (effects (font (size 1.27 1.27)))) 61 | (number "GND" (effects (font (size 0 0)))) 62 | ) 63 | (pin bidirectional line (at 15.24 -2.54 180) (length 5.08) 64 | (name "GPIO0" (effects (font (size 1.27 1.27)))) 65 | (number "GPIO0" (effects (font (size 0 0)))) 66 | ) 67 | (pin bidirectional line (at -17.78 -5.08 0) (length 5.08) 68 | (name "GPIO12" (effects (font (size 1.27 1.27)))) 69 | (number "GPIO12" (effects (font (size 0 0)))) 70 | ) 71 | (pin bidirectional line (at -17.78 -7.62 0) (length 5.08) 72 | (name "GPIO13" (effects (font (size 1.27 1.27)))) 73 | (number "GPIO13" (effects (font (size 0 0)))) 74 | ) 75 | (pin bidirectional line (at -17.78 -2.54 0) (length 5.08) 76 | (name "GPIO14" (effects (font (size 1.27 1.27)))) 77 | (number "GPIO14" (effects (font (size 0 0)))) 78 | ) 79 | (pin bidirectional line (at 15.24 -7.62 180) (length 5.08) 80 | (name "GPIO15" (effects (font (size 1.27 1.27)))) 81 | (number "GPIO15" (effects (font (size 0 0)))) 82 | ) 83 | (pin bidirectional line (at -17.78 0 0) (length 5.08) 84 | (name "GPIO16" (effects (font (size 1.27 1.27)))) 85 | (number "GPIO16" (effects (font (size 0 0)))) 86 | ) 87 | (pin bidirectional line (at 15.24 -5.08 180) (length 5.08) 88 | (name "GPIO2" (effects (font (size 1.27 1.27)))) 89 | (number "GPIO2" (effects (font (size 0 0)))) 90 | ) 91 | (pin bidirectional line (at 15.24 2.54 180) (length 5.08) 92 | (name "GPIO4" (effects (font (size 1.27 1.27)))) 93 | (number "GPIO4" (effects (font (size 0 0)))) 94 | ) 95 | (pin bidirectional line (at 15.24 0 180) (length 5.08) 96 | (name "GPIO5" (effects (font (size 1.27 1.27)))) 97 | (number "GPIO5" (effects (font (size 0 0)))) 98 | ) 99 | (pin bidirectional line (at -17.78 7.62 0) (length 5.08) 100 | (name "RESET" (effects (font (size 1.27 1.27)))) 101 | (number "RESET" (effects (font (size 0 0)))) 102 | ) 103 | (pin bidirectional line (at 15.24 5.08 180) (length 5.08) 104 | (name "RX" (effects (font (size 1.27 1.27)))) 105 | (number "RX" (effects (font (size 0 0)))) 106 | ) 107 | (pin bidirectional line (at 15.24 7.62 180) (length 5.08) 108 | (name "TX" (effects (font (size 1.27 1.27)))) 109 | (number "TX" (effects (font (size 0 0)))) 110 | ) 111 | (pin bidirectional line (at -17.78 -10.16 0) (length 5.08) 112 | (name "VCC" (effects (font (size 1.27 1.27)))) 113 | (number "VCC" (effects (font (size 0 0)))) 114 | ) 115 | ) 116 | ) 117 | (symbol "ESP12SMD" (in_bom yes) (on_board yes) 118 | (property "Reference" "U" (id 0) (at -12.7 10.16 0) 119 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 120 | ) 121 | (property "Value" "ESP12SMD" (id 1) (at -12.7 -15.24 0) 122 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 123 | ) 124 | (property "Footprint" "" (id 2) (at 0 0 0) 125 | (effects (font (size 1.27 1.27)) hide) 126 | ) 127 | (property "Datasheet" "" (id 3) (at 0 0 0) 128 | (effects (font (size 1.27 1.27)) hide) 129 | ) 130 | (property "ki_locked" "" (id 4) (at 0 0 0) 131 | (effects (font (size 1.27 1.27))) 132 | ) 133 | (symbol "ESP12SMD_1_0" 134 | (polyline 135 | (pts 136 | (xy -12.7 -12.7) 137 | (xy 10.16 -12.7) 138 | ) 139 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 140 | (fill (type none)) 141 | ) 142 | (polyline 143 | (pts 144 | (xy -12.7 10.16) 145 | (xy -12.7 -12.7) 146 | ) 147 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 148 | (fill (type none)) 149 | ) 150 | (polyline 151 | (pts 152 | (xy 10.16 -12.7) 153 | (xy 10.16 10.16) 154 | ) 155 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 156 | (fill (type none)) 157 | ) 158 | (polyline 159 | (pts 160 | (xy 10.16 10.16) 161 | (xy -12.7 10.16) 162 | ) 163 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 164 | (fill (type none)) 165 | ) 166 | (pin bidirectional line (at -17.78 5.08 0) (length 5.08) 167 | (name "ADC" (effects (font (size 1.27 1.27)))) 168 | (number "ADC" (effects (font (size 0 0)))) 169 | ) 170 | (pin bidirectional line (at -17.78 2.54 0) (length 5.08) 171 | (name "CH_PD" (effects (font (size 1.27 1.27)))) 172 | (number "CH_PD" (effects (font (size 0 0)))) 173 | ) 174 | (pin bidirectional line (at 15.24 -10.16 180) (length 5.08) 175 | (name "GND" (effects (font (size 1.27 1.27)))) 176 | (number "GND" (effects (font (size 0 0)))) 177 | ) 178 | (pin bidirectional line (at 15.24 -2.54 180) (length 5.08) 179 | (name "GPIO0" (effects (font (size 1.27 1.27)))) 180 | (number "GPIO0" (effects (font (size 0 0)))) 181 | ) 182 | (pin bidirectional line (at -17.78 -5.08 0) (length 5.08) 183 | (name "GPIO12" (effects (font (size 1.27 1.27)))) 184 | (number "GPIO12" (effects (font (size 0 0)))) 185 | ) 186 | (pin bidirectional line (at -17.78 -7.62 0) (length 5.08) 187 | (name "GPIO13" (effects (font (size 1.27 1.27)))) 188 | (number "GPIO13" (effects (font (size 0 0)))) 189 | ) 190 | (pin bidirectional line (at -17.78 -2.54 0) (length 5.08) 191 | (name "GPIO14" (effects (font (size 1.27 1.27)))) 192 | (number "GPIO14" (effects (font (size 0 0)))) 193 | ) 194 | (pin bidirectional line (at 15.24 -7.62 180) (length 5.08) 195 | (name "GPIO15" (effects (font (size 1.27 1.27)))) 196 | (number "GPIO15" (effects (font (size 0 0)))) 197 | ) 198 | (pin bidirectional line (at -17.78 0 0) (length 5.08) 199 | (name "GPIO16" (effects (font (size 1.27 1.27)))) 200 | (number "GPIO16" (effects (font (size 0 0)))) 201 | ) 202 | (pin bidirectional line (at 15.24 -5.08 180) (length 5.08) 203 | (name "GPIO2" (effects (font (size 1.27 1.27)))) 204 | (number "GPIO2" (effects (font (size 0 0)))) 205 | ) 206 | (pin bidirectional line (at 15.24 2.54 180) (length 5.08) 207 | (name "GPIO4" (effects (font (size 1.27 1.27)))) 208 | (number "GPIO4" (effects (font (size 0 0)))) 209 | ) 210 | (pin bidirectional line (at 15.24 0 180) (length 5.08) 211 | (name "GPIO5" (effects (font (size 1.27 1.27)))) 212 | (number "GPIO5" (effects (font (size 0 0)))) 213 | ) 214 | (pin bidirectional line (at -17.78 7.62 0) (length 5.08) 215 | (name "RESET" (effects (font (size 1.27 1.27)))) 216 | (number "RESET" (effects (font (size 0 0)))) 217 | ) 218 | (pin bidirectional line (at 15.24 5.08 180) (length 5.08) 219 | (name "RX" (effects (font (size 1.27 1.27)))) 220 | (number "RXD0" (effects (font (size 0 0)))) 221 | ) 222 | (pin bidirectional line (at 15.24 7.62 180) (length 5.08) 223 | (name "TX" (effects (font (size 1.27 1.27)))) 224 | (number "TXD0" (effects (font (size 0 0)))) 225 | ) 226 | (pin bidirectional line (at -17.78 -10.16 0) (length 5.08) 227 | (name "VCC" (effects (font (size 1.27 1.27)))) 228 | (number "VCC" (effects (font (size 0 0)))) 229 | ) 230 | ) 231 | ) 232 | ) 233 | -------------------------------------------------------------------------------- /KICAD/ESP12_Harness.kicad_dru: -------------------------------------------------------------------------------- 1 | (version 1) -------------------------------------------------------------------------------- /KICAD/ESP12_Harness.kicad_prl: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "active_layer": 31, 4 | "active_layer_preset": "", 5 | "auto_track_width": true, 6 | "hidden_nets": [], 7 | "high_contrast_mode": 0, 8 | "net_color_mode": 1, 9 | "opacity": { 10 | "pads": 1.0, 11 | "tracks": 1.0, 12 | "vias": 1.0, 13 | "zones": 0.6 14 | }, 15 | "ratsnest_display_mode": 0, 16 | "selection_filter": { 17 | "dimensions": true, 18 | "footprints": true, 19 | "graphics": true, 20 | "keepouts": true, 21 | "lockedItems": true, 22 | "otherItems": true, 23 | "pads": true, 24 | "text": true, 25 | "tracks": true, 26 | "vias": true, 27 | "zones": true 28 | }, 29 | "visible_items": [ 30 | 0, 31 | 1, 32 | 2, 33 | 3, 34 | 4, 35 | 5, 36 | 8, 37 | 9, 38 | 10, 39 | 12, 40 | 13, 41 | 14, 42 | 15, 43 | 16, 44 | 17, 45 | 18, 46 | 19, 47 | 20, 48 | 21, 49 | 22, 50 | 23, 51 | 24, 52 | 25, 53 | 26, 54 | 27, 55 | 28, 56 | 29, 57 | 30, 58 | 32, 59 | 33, 60 | 34, 61 | 35, 62 | 36 63 | ], 64 | "visible_layers": "fffffff_ffffffff", 65 | "zone_display_mode": 0 66 | }, 67 | "meta": { 68 | "filename": "ESP12_Harness.kicad_prl", 69 | "version": 3 70 | }, 71 | "project": { 72 | "files": [] 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /KICAD/ESP12_Harness.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "design_settings": { 4 | "defaults": { 5 | "board_outline_line_width": 0.049999999999999996, 6 | "copper_line_width": 0.19999999999999998, 7 | "copper_text_italic": false, 8 | "copper_text_size_h": 1.5, 9 | "copper_text_size_v": 1.5, 10 | "copper_text_thickness": 0.3, 11 | "copper_text_upright": false, 12 | "courtyard_line_width": 0.049999999999999996, 13 | "dimension_precision": 4, 14 | "dimension_units": 3, 15 | "dimensions": { 16 | "arrow_length": 1270000, 17 | "extension_offset": 500000, 18 | "keep_text_aligned": true, 19 | "suppress_zeroes": false, 20 | "text_position": 0, 21 | "units_format": 1 22 | }, 23 | "fab_line_width": 0.09999999999999999, 24 | "fab_text_italic": false, 25 | "fab_text_size_h": 1.0, 26 | "fab_text_size_v": 1.0, 27 | "fab_text_thickness": 0.15, 28 | "fab_text_upright": false, 29 | "other_line_width": 0.09999999999999999, 30 | "other_text_italic": false, 31 | "other_text_size_h": 1.0, 32 | "other_text_size_v": 1.0, 33 | "other_text_thickness": 0.15, 34 | "other_text_upright": false, 35 | "pads": { 36 | "drill": 0.762, 37 | "height": 1.524, 38 | "width": 1.524 39 | }, 40 | "silk_line_width": 0.12, 41 | "silk_text_italic": false, 42 | "silk_text_size_h": 1.0, 43 | "silk_text_size_v": 1.0, 44 | "silk_text_thickness": 0.15, 45 | "silk_text_upright": false, 46 | "zones": { 47 | "45_degree_only": false, 48 | "min_clearance": 0.508 49 | } 50 | }, 51 | "diff_pair_dimensions": [], 52 | "drc_exclusions": [], 53 | "meta": { 54 | "filename": "board_design_settings.json", 55 | "version": 2 56 | }, 57 | "rule_severities": { 58 | "annular_width": "error", 59 | "clearance": "error", 60 | "copper_edge_clearance": "error", 61 | "courtyards_overlap": "error", 62 | "diff_pair_gap_out_of_range": "error", 63 | "diff_pair_uncoupled_length_too_long": "error", 64 | "drill_out_of_range": "error", 65 | "duplicate_footprints": "warning", 66 | "extra_footprint": "warning", 67 | "footprint_type_mismatch": "error", 68 | "hole_clearance": "error", 69 | "hole_near_hole": "error", 70 | "invalid_outline": "error", 71 | "item_on_disabled_layer": "error", 72 | "items_not_allowed": "error", 73 | "length_out_of_range": "error", 74 | "malformed_courtyard": "error", 75 | "microvia_drill_out_of_range": "error", 76 | "missing_courtyard": "ignore", 77 | "missing_footprint": "warning", 78 | "net_conflict": "warning", 79 | "npth_inside_courtyard": "ignore", 80 | "padstack": "error", 81 | "pth_inside_courtyard": "ignore", 82 | "shorting_items": "error", 83 | "silk_over_copper": "warning", 84 | "silk_overlap": "warning", 85 | "skew_out_of_range": "error", 86 | "through_hole_pad_without_hole": "error", 87 | "too_many_vias": "error", 88 | "track_dangling": "warning", 89 | "track_width": "error", 90 | "tracks_crossing": "error", 91 | "unconnected_items": "error", 92 | "unresolved_variable": "error", 93 | "via_dangling": "warning", 94 | "zone_has_empty_net": "error", 95 | "zones_intersect": "error" 96 | }, 97 | "rules": { 98 | "allow_blind_buried_vias": false, 99 | "allow_microvias": false, 100 | "max_error": 0.005, 101 | "min_clearance": 0.127, 102 | "min_copper_edge_clearance": 0.024999999999999998, 103 | "min_hole_clearance": 0.25, 104 | "min_hole_to_hole": 0.25, 105 | "min_microvia_diameter": 0.19999999999999998, 106 | "min_microvia_drill": 0.09999999999999999, 107 | "min_silk_clearance": 0.0, 108 | "min_through_hole_diameter": 0.3, 109 | "min_track_width": 0.19999999999999998, 110 | "min_via_annular_width": 0.049999999999999996, 111 | "min_via_diameter": 0.39999999999999997, 112 | "use_height_for_length_calcs": true 113 | }, 114 | "track_widths": [], 115 | "via_dimensions": [], 116 | "zones_allow_external_fillets": false, 117 | "zones_use_no_outline": true 118 | }, 119 | "layer_presets": [] 120 | }, 121 | "boards": [], 122 | "cvpcb": { 123 | "equivalence_files": [] 124 | }, 125 | "erc": { 126 | "erc_exclusions": [], 127 | "meta": { 128 | "version": 0 129 | }, 130 | "pin_map": [ 131 | [ 132 | 0, 133 | 0, 134 | 0, 135 | 0, 136 | 0, 137 | 0, 138 | 1, 139 | 0, 140 | 0, 141 | 0, 142 | 0, 143 | 2 144 | ], 145 | [ 146 | 0, 147 | 2, 148 | 0, 149 | 1, 150 | 0, 151 | 0, 152 | 1, 153 | 0, 154 | 2, 155 | 2, 156 | 2, 157 | 2 158 | ], 159 | [ 160 | 0, 161 | 0, 162 | 0, 163 | 0, 164 | 0, 165 | 0, 166 | 1, 167 | 0, 168 | 1, 169 | 0, 170 | 1, 171 | 2 172 | ], 173 | [ 174 | 0, 175 | 1, 176 | 0, 177 | 0, 178 | 0, 179 | 0, 180 | 1, 181 | 1, 182 | 2, 183 | 1, 184 | 1, 185 | 2 186 | ], 187 | [ 188 | 0, 189 | 0, 190 | 0, 191 | 0, 192 | 0, 193 | 0, 194 | 1, 195 | 0, 196 | 0, 197 | 0, 198 | 0, 199 | 2 200 | ], 201 | [ 202 | 0, 203 | 0, 204 | 0, 205 | 0, 206 | 0, 207 | 0, 208 | 0, 209 | 0, 210 | 0, 211 | 0, 212 | 0, 213 | 2 214 | ], 215 | [ 216 | 1, 217 | 1, 218 | 1, 219 | 1, 220 | 1, 221 | 0, 222 | 1, 223 | 1, 224 | 1, 225 | 1, 226 | 1, 227 | 2 228 | ], 229 | [ 230 | 0, 231 | 0, 232 | 0, 233 | 1, 234 | 0, 235 | 0, 236 | 1, 237 | 0, 238 | 0, 239 | 0, 240 | 0, 241 | 2 242 | ], 243 | [ 244 | 0, 245 | 2, 246 | 1, 247 | 2, 248 | 0, 249 | 0, 250 | 1, 251 | 0, 252 | 2, 253 | 2, 254 | 2, 255 | 2 256 | ], 257 | [ 258 | 0, 259 | 2, 260 | 0, 261 | 1, 262 | 0, 263 | 0, 264 | 1, 265 | 0, 266 | 2, 267 | 0, 268 | 0, 269 | 2 270 | ], 271 | [ 272 | 0, 273 | 2, 274 | 1, 275 | 1, 276 | 0, 277 | 0, 278 | 1, 279 | 0, 280 | 2, 281 | 0, 282 | 0, 283 | 2 284 | ], 285 | [ 286 | 2, 287 | 2, 288 | 2, 289 | 2, 290 | 2, 291 | 2, 292 | 2, 293 | 2, 294 | 2, 295 | 2, 296 | 2, 297 | 2 298 | ] 299 | ], 300 | "rule_severities": { 301 | "bus_definition_conflict": "error", 302 | "bus_entry_needed": "error", 303 | "bus_label_syntax": "error", 304 | "bus_to_bus_conflict": "error", 305 | "bus_to_net_conflict": "error", 306 | "different_unit_footprint": "error", 307 | "different_unit_net": "error", 308 | "duplicate_reference": "error", 309 | "duplicate_sheet_names": "error", 310 | "extra_units": "error", 311 | "global_label_dangling": "warning", 312 | "hier_label_mismatch": "error", 313 | "label_dangling": "error", 314 | "lib_symbol_issues": "warning", 315 | "multiple_net_names": "warning", 316 | "net_not_bus_member": "warning", 317 | "no_connect_connected": "warning", 318 | "no_connect_dangling": "warning", 319 | "pin_not_connected": "error", 320 | "pin_not_driven": "error", 321 | "pin_to_pin": "warning", 322 | "power_pin_not_driven": "error", 323 | "similar_labels": "warning", 324 | "unannotated": "error", 325 | "unit_value_mismatch": "error", 326 | "unresolved_variable": "error", 327 | "wire_dangling": "error" 328 | } 329 | }, 330 | "libraries": { 331 | "pinned_footprint_libs": [], 332 | "pinned_symbol_libs": [] 333 | }, 334 | "meta": { 335 | "filename": "ESP12_Harness.kicad_pro", 336 | "version": 1 337 | }, 338 | "net_settings": { 339 | "classes": [ 340 | { 341 | "bus_width": 12.0, 342 | "clearance": 0.127, 343 | "diff_pair_gap": 0.25, 344 | "diff_pair_via_gap": 0.25, 345 | "diff_pair_width": 0.2, 346 | "line_style": 0, 347 | "microvia_diameter": 0.3, 348 | "microvia_drill": 0.1, 349 | "name": "Default", 350 | "pcb_color": "rgba(0, 0, 0, 0.000)", 351 | "schematic_color": "rgba(0, 0, 0, 0.000)", 352 | "track_width": 0.25, 353 | "via_diameter": 0.8, 354 | "via_drill": 0.4, 355 | "wire_width": 6.0 356 | } 357 | ], 358 | "meta": { 359 | "version": 2 360 | }, 361 | "net_colors": null 362 | }, 363 | "pcbnew": { 364 | "last_paths": { 365 | "gencad": "", 366 | "idf": "", 367 | "netlist": "", 368 | "specctra_dsn": "", 369 | "step": "", 370 | "vrml": "" 371 | }, 372 | "page_layout_descr_file": "" 373 | }, 374 | "schematic": { 375 | "annotate_start_num": 0, 376 | "drawing": { 377 | "default_line_thickness": 6.0, 378 | "default_text_size": 50.0, 379 | "field_names": [], 380 | "intersheets_ref_own_page": false, 381 | "intersheets_ref_prefix": "", 382 | "intersheets_ref_short": false, 383 | "intersheets_ref_show": false, 384 | "intersheets_ref_suffix": "", 385 | "junction_size_choice": 3, 386 | "label_size_ratio": 0.375, 387 | "pin_symbol_size": 25.0, 388 | "text_offset_ratio": 0.15 389 | }, 390 | "legacy_lib_dir": "", 391 | "legacy_lib_list": [], 392 | "meta": { 393 | "version": 1 394 | }, 395 | "net_format_name": "", 396 | "page_layout_descr_file": "empty.kicad_wks", 397 | "plot_directory": "", 398 | "spice_adjust_passive_values": false, 399 | "spice_external_command": "spice \"%I\"", 400 | "subpart_first_id": 65, 401 | "subpart_id_separator": 0 402 | }, 403 | "sheets": [ 404 | [ 405 | "c58960d9-4cac-4036-ad2e-1aef26946dae", 406 | "ESP12_Harness_0" 407 | ] 408 | ], 409 | "text_variables": {} 410 | } 411 | -------------------------------------------------------------------------------- /KICAD/ESP12_Harness.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20211123) (generator eeschema) 2 | 3 | (uuid c58960d9-4cac-4036-ad2e-1aef26946dae) 4 | 5 | (paper "A4") 6 | 7 | (lib_symbols 8 | (symbol "ESP12_Harness-eagle-import:ESP12" (in_bom yes) (on_board yes) 9 | (property "Reference" "U" (id 0) (at -12.7 10.16 0) 10 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 11 | ) 12 | (property "Value" "ESP12" (id 1) (at -12.7 -15.24 0) 13 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 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_locked" "" (id 4) (at 0 0 0) 22 | (effects (font (size 1.27 1.27))) 23 | ) 24 | (symbol "ESP12_1_0" 25 | (polyline 26 | (pts 27 | (xy -12.7 -12.7) 28 | (xy 10.16 -12.7) 29 | ) 30 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 31 | (fill (type none)) 32 | ) 33 | (polyline 34 | (pts 35 | (xy -12.7 10.16) 36 | (xy -12.7 -12.7) 37 | ) 38 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 39 | (fill (type none)) 40 | ) 41 | (polyline 42 | (pts 43 | (xy 10.16 -12.7) 44 | (xy 10.16 10.16) 45 | ) 46 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 47 | (fill (type none)) 48 | ) 49 | (polyline 50 | (pts 51 | (xy 10.16 10.16) 52 | (xy -12.7 10.16) 53 | ) 54 | (stroke (width 0.254) (type default) (color 0 0 0 0)) 55 | (fill (type none)) 56 | ) 57 | (pin bidirectional line (at -17.78 5.08 0) (length 5.08) 58 | (name "ADC" (effects (font (size 1.27 1.27)))) 59 | (number "ADC" (effects (font (size 0 0)))) 60 | ) 61 | (pin bidirectional line (at -17.78 2.54 0) (length 5.08) 62 | (name "CH_PD" (effects (font (size 1.27 1.27)))) 63 | (number "CH_PD" (effects (font (size 0 0)))) 64 | ) 65 | (pin bidirectional line (at 15.24 -10.16 180) (length 5.08) 66 | (name "GND" (effects (font (size 1.27 1.27)))) 67 | (number "GND" (effects (font (size 0 0)))) 68 | ) 69 | (pin bidirectional line (at 15.24 -2.54 180) (length 5.08) 70 | (name "GPIO0" (effects (font (size 1.27 1.27)))) 71 | (number "GPIO0" (effects (font (size 0 0)))) 72 | ) 73 | (pin bidirectional line (at -17.78 -5.08 0) (length 5.08) 74 | (name "GPIO12" (effects (font (size 1.27 1.27)))) 75 | (number "GPIO12" (effects (font (size 0 0)))) 76 | ) 77 | (pin bidirectional line (at -17.78 -7.62 0) (length 5.08) 78 | (name "GPIO13" (effects (font (size 1.27 1.27)))) 79 | (number "GPIO13" (effects (font (size 0 0)))) 80 | ) 81 | (pin bidirectional line (at -17.78 -2.54 0) (length 5.08) 82 | (name "GPIO14" (effects (font (size 1.27 1.27)))) 83 | (number "GPIO14" (effects (font (size 0 0)))) 84 | ) 85 | (pin bidirectional line (at 15.24 -7.62 180) (length 5.08) 86 | (name "GPIO15" (effects (font (size 1.27 1.27)))) 87 | (number "GPIO15" (effects (font (size 0 0)))) 88 | ) 89 | (pin bidirectional line (at -17.78 0 0) (length 5.08) 90 | (name "GPIO16" (effects (font (size 1.27 1.27)))) 91 | (number "GPIO16" (effects (font (size 0 0)))) 92 | ) 93 | (pin bidirectional line (at 15.24 -5.08 180) (length 5.08) 94 | (name "GPIO2" (effects (font (size 1.27 1.27)))) 95 | (number "GPIO2" (effects (font (size 0 0)))) 96 | ) 97 | (pin bidirectional line (at 15.24 2.54 180) (length 5.08) 98 | (name "GPIO4" (effects (font (size 1.27 1.27)))) 99 | (number "GPIO4" (effects (font (size 0 0)))) 100 | ) 101 | (pin bidirectional line (at 15.24 0 180) (length 5.08) 102 | (name "GPIO5" (effects (font (size 1.27 1.27)))) 103 | (number "GPIO5" (effects (font (size 0 0)))) 104 | ) 105 | (pin bidirectional line (at -17.78 7.62 0) (length 5.08) 106 | (name "RESET" (effects (font (size 1.27 1.27)))) 107 | (number "RESET" (effects (font (size 0 0)))) 108 | ) 109 | (pin bidirectional line (at 15.24 5.08 180) (length 5.08) 110 | (name "RX" (effects (font (size 1.27 1.27)))) 111 | (number "RX" (effects (font (size 0 0)))) 112 | ) 113 | (pin bidirectional line (at 15.24 7.62 180) (length 5.08) 114 | (name "TX" (effects (font (size 1.27 1.27)))) 115 | (number "TX" (effects (font (size 0 0)))) 116 | ) 117 | (pin bidirectional line (at -17.78 -10.16 0) (length 5.08) 118 | (name "VCC" (effects (font (size 1.27 1.27)))) 119 | (number "VCC" (effects (font (size 0 0)))) 120 | ) 121 | ) 122 | ) 123 | ) 124 | 125 | 126 | (wire (pts (xy 172.72 96.52) (xy 172.72 127)) 127 | (stroke (width 0) (type default) (color 0 0 0 0)) 128 | (uuid 10109f84-4940-47f8-8640-91f185ac9bc1) 129 | ) 130 | (wire (pts (xy 121.92 96.52) (xy 121.92 127)) 131 | (stroke (width 0) (type default) (color 0 0 0 0)) 132 | (uuid 13abf99d-5265-4779-8973-e94370fd18ff) 133 | ) 134 | (wire (pts (xy 185.42 114.3) (xy 185.42 83.82)) 135 | (stroke (width 0) (type default) (color 0 0 0 0)) 136 | (uuid 1e1b062d-fad0-427c-a622-c5b8a80b5268) 137 | ) 138 | (wire (pts (xy 116.84 91.44) (xy 116.84 121.92)) 139 | (stroke (width 0) (type default) (color 0 0 0 0)) 140 | (uuid 23bb2798-d93a-4696-a962-c305c4298a0c) 141 | ) 142 | (wire (pts (xy 187.96 111.76) (xy 167.64 111.76)) 143 | (stroke (width 0) (type default) (color 0 0 0 0)) 144 | (uuid 2e642b3e-a476-4c54-9a52-dcea955640cd) 145 | ) 146 | (wire (pts (xy 167.64 81.28) (xy 187.96 81.28)) 147 | (stroke (width 0) (type default) (color 0 0 0 0)) 148 | (uuid 30f15357-ce1d-48b9-93dc-7d9b1b2aa048) 149 | ) 150 | (wire (pts (xy 182.88 116.84) (xy 167.64 116.84)) 151 | (stroke (width 0) (type default) (color 0 0 0 0)) 152 | (uuid 3b838d52-596d-4e4d-a6ac-e4c8e7621137) 153 | ) 154 | (wire (pts (xy 109.22 83.82) (xy 134.62 83.82)) 155 | (stroke (width 0) (type default) (color 0 0 0 0)) 156 | (uuid 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455) 157 | ) 158 | (wire (pts (xy 180.34 119.38) (xy 180.34 88.9)) 159 | (stroke (width 0) (type default) (color 0 0 0 0)) 160 | (uuid 44d8279a-9cd1-4db6-856f-0363131605fc) 161 | ) 162 | (wire (pts (xy 119.38 124.46) (xy 119.38 93.98)) 163 | (stroke (width 0) (type default) (color 0 0 0 0)) 164 | (uuid 46918595-4a45-48e8-84c0-961b4db7f35f) 165 | ) 166 | (wire (pts (xy 175.26 93.98) (xy 167.64 93.98)) 167 | (stroke (width 0) (type default) (color 0 0 0 0)) 168 | (uuid 47baf4b1-0938-497d-88f9-671136aa8be7) 169 | ) 170 | (wire (pts (xy 177.8 121.92) (xy 167.64 121.92)) 171 | (stroke (width 0) (type default) (color 0 0 0 0)) 172 | (uuid 4fb02e58-160a-4a39-9f22-d0c75e82ee72) 173 | ) 174 | (wire (pts (xy 167.64 109.22) (xy 190.5 109.22)) 175 | (stroke (width 0) (type default) (color 0 0 0 0)) 176 | (uuid 5038e144-5119-49db-b6cf-f7c345f1cf03) 177 | ) 178 | (wire (pts (xy 190.5 78.74) (xy 167.64 78.74)) 179 | (stroke (width 0) (type default) (color 0 0 0 0)) 180 | (uuid 54365317-1355-4216-bb75-829375abc4ec) 181 | ) 182 | (wire (pts (xy 172.72 127) (xy 167.64 127)) 183 | (stroke (width 0) (type default) (color 0 0 0 0)) 184 | (uuid 55e740a3-0735-4744-896e-2bf5437093b9) 185 | ) 186 | (wire (pts (xy 109.22 114.3) (xy 109.22 83.82)) 187 | (stroke (width 0) (type default) (color 0 0 0 0)) 188 | (uuid 5cbb5968-dbb5-4b84-864a-ead1cacf75b9) 189 | ) 190 | (wire (pts (xy 111.76 86.36) (xy 111.76 116.84)) 191 | (stroke (width 0) (type default) (color 0 0 0 0)) 192 | (uuid 62c076a3-d618-44a2-9042-9a08b3576787) 193 | ) 194 | (wire (pts (xy 167.64 86.36) (xy 182.88 86.36)) 195 | (stroke (width 0) (type default) (color 0 0 0 0)) 196 | (uuid 66116376-6967-4178-9f23-a26cdeafc400) 197 | ) 198 | (wire (pts (xy 104.14 111.76) (xy 134.62 111.76)) 199 | (stroke (width 0) (type default) (color 0 0 0 0)) 200 | (uuid 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2) 201 | ) 202 | (wire (pts (xy 134.62 119.38) (xy 114.3 119.38)) 203 | (stroke (width 0) (type default) (color 0 0 0 0)) 204 | (uuid 6e105729-aba0-497c-a99e-c32d2b3ddb6d) 205 | ) 206 | (wire (pts (xy 167.64 96.52) (xy 172.72 96.52)) 207 | (stroke (width 0) (type default) (color 0 0 0 0)) 208 | (uuid 71c31975-2c45-4d18-a25a-18e07a55d11e) 209 | ) 210 | (wire (pts (xy 101.6 78.74) (xy 134.62 78.74)) 211 | (stroke (width 0) (type default) (color 0 0 0 0)) 212 | (uuid 746ba970-8279-4e7b-aed3-f28687777c21) 213 | ) 214 | (wire (pts (xy 182.88 86.36) (xy 182.88 116.84)) 215 | (stroke (width 0) (type default) (color 0 0 0 0)) 216 | (uuid 749dfe75-c0d6-4872-9330-29c5bbcb8ff8) 217 | ) 218 | (wire (pts (xy 167.64 91.44) (xy 177.8 91.44)) 219 | (stroke (width 0) (type default) (color 0 0 0 0)) 220 | (uuid 77ed3941-d133-4aef-a9af-5a39322d14eb) 221 | ) 222 | (wire (pts (xy 116.84 121.92) (xy 134.62 121.92)) 223 | (stroke (width 0) (type default) (color 0 0 0 0)) 224 | (uuid 78cbdd6c-4878-4cc5-9a58-0e506478e37d) 225 | ) 226 | (wire (pts (xy 187.96 81.28) (xy 187.96 111.76)) 227 | (stroke (width 0) (type default) (color 0 0 0 0)) 228 | (uuid 87371631-aa02-498a-998a-09bdb74784c1) 229 | ) 230 | (wire (pts (xy 134.62 91.44) (xy 116.84 91.44)) 231 | (stroke (width 0) (type default) (color 0 0 0 0)) 232 | (uuid 94c158d1-8503-4553-b511-bf42f506c2a8) 233 | ) 234 | (wire (pts (xy 114.3 119.38) (xy 114.3 88.9)) 235 | (stroke (width 0) (type default) (color 0 0 0 0)) 236 | (uuid 983c426c-24e0-4c65-ab69-1f1824adc5c6) 237 | ) 238 | (wire (pts (xy 119.38 93.98) (xy 134.62 93.98)) 239 | (stroke (width 0) (type default) (color 0 0 0 0)) 240 | (uuid 9ccf03e8-755a-4cd9-96fc-30e1d08fa253) 241 | ) 242 | (wire (pts (xy 134.62 96.52) (xy 121.92 96.52)) 243 | (stroke (width 0) (type default) (color 0 0 0 0)) 244 | (uuid a05d7640-f2f6-4ba7-8c51-5a4af431fc13) 245 | ) 246 | (wire (pts (xy 121.92 127) (xy 134.62 127)) 247 | (stroke (width 0) (type default) (color 0 0 0 0)) 248 | (uuid a7520ad3-0f8b-4788-92d4-8ffb277041e6) 249 | ) 250 | (wire (pts (xy 134.62 124.46) (xy 119.38 124.46)) 251 | (stroke (width 0) (type default) (color 0 0 0 0)) 252 | (uuid a795f1ba-cdd5-4cc5-9a52-08586e982934) 253 | ) 254 | (wire (pts (xy 190.5 109.22) (xy 190.5 78.74)) 255 | (stroke (width 0) (type default) (color 0 0 0 0)) 256 | (uuid ac264c30-3e9a-4be2-b97a-9949b68bd497) 257 | ) 258 | (wire (pts (xy 134.62 114.3) (xy 109.22 114.3)) 259 | (stroke (width 0) (type default) (color 0 0 0 0)) 260 | (uuid afb8e687-4a13-41a1-b8c0-89a749e897fe) 261 | ) 262 | (wire (pts (xy 134.62 81.28) (xy 104.14 81.28)) 263 | (stroke (width 0) (type default) (color 0 0 0 0)) 264 | (uuid bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae) 265 | ) 266 | (wire (pts (xy 175.26 124.46) (xy 175.26 93.98)) 267 | (stroke (width 0) (type default) (color 0 0 0 0)) 268 | (uuid c022004a-c968-410e-b59e-fbab0e561e9d) 269 | ) 270 | (wire (pts (xy 114.3 88.9) (xy 134.62 88.9)) 271 | (stroke (width 0) (type default) (color 0 0 0 0)) 272 | (uuid c1d83899-e380-49f9-a87d-8e78bc089ebf) 273 | ) 274 | (wire (pts (xy 167.64 114.3) (xy 185.42 114.3)) 275 | (stroke (width 0) (type default) (color 0 0 0 0)) 276 | (uuid cbdcaa78-3bbc-413f-91bf-2709119373ce) 277 | ) 278 | (wire (pts (xy 185.42 83.82) (xy 167.64 83.82)) 279 | (stroke (width 0) (type default) (color 0 0 0 0)) 280 | (uuid d8603679-3e7b-4337-8dbc-1827f5f54d8a) 281 | ) 282 | (wire (pts (xy 111.76 116.84) (xy 134.62 116.84)) 283 | (stroke (width 0) (type default) (color 0 0 0 0)) 284 | (uuid da469d11-a8a4-414b-9449-d151eeaf4853) 285 | ) 286 | (wire (pts (xy 101.6 109.22) (xy 101.6 78.74)) 287 | (stroke (width 0) (type default) (color 0 0 0 0)) 288 | (uuid e10b5627-3247-4c86-b9f6-ef474ca11543) 289 | ) 290 | (wire (pts (xy 177.8 91.44) (xy 177.8 121.92)) 291 | (stroke (width 0) (type default) (color 0 0 0 0)) 292 | (uuid e615f7aa-337e-474d-9615-2ad82b1c44ca) 293 | ) 294 | (wire (pts (xy 134.62 109.22) (xy 101.6 109.22)) 295 | (stroke (width 0) (type default) (color 0 0 0 0)) 296 | (uuid e8314017-7be6-4011-9179-37449a29b311) 297 | ) 298 | (wire (pts (xy 134.62 86.36) (xy 111.76 86.36)) 299 | (stroke (width 0) (type default) (color 0 0 0 0)) 300 | (uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12) 301 | ) 302 | (wire (pts (xy 180.34 88.9) (xy 167.64 88.9)) 303 | (stroke (width 0) (type default) (color 0 0 0 0)) 304 | (uuid eb667eea-300e-4ca7-8a6f-4b00de80cd45) 305 | ) 306 | (wire (pts (xy 167.64 119.38) (xy 180.34 119.38)) 307 | (stroke (width 0) (type default) (color 0 0 0 0)) 308 | (uuid ef8fe2ac-6a7f-4682-9418-b801a1b10a3b) 309 | ) 310 | (wire (pts (xy 104.14 81.28) (xy 104.14 111.76)) 311 | (stroke (width 0) (type default) (color 0 0 0 0)) 312 | (uuid f1830a1b-f0cc-47ae-a2c9-679c82032f14) 313 | ) 314 | (wire (pts (xy 167.64 124.46) (xy 175.26 124.46)) 315 | (stroke (width 0) (type default) (color 0 0 0 0)) 316 | (uuid f4f99e3d-7269-4f6a-a759-16ad2a258779) 317 | ) 318 | 319 | (symbol (lib_id "ESP12_Harness-eagle-import:ESP12") (at 152.4 116.84 0) 320 | (in_bom yes) (on_board yes) 321 | (uuid 2d6718e7-f18d-444d-9792-ddf1a113460c) 322 | (property "Reference" "WEMOS-D1" (id 0) (at 139.7 106.68 0) 323 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 324 | ) 325 | (property "Value" "ESP12" (id 1) (at 139.7 132.08 0) 326 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 327 | ) 328 | (property "Footprint" "ESP12" (id 2) (at 152.4 116.84 0) 329 | (effects (font (size 1.27 1.27)) hide) 330 | ) 331 | (property "Datasheet" "" (id 3) (at 152.4 116.84 0) 332 | (effects (font (size 1.27 1.27)) hide) 333 | ) 334 | (pin "ADC" (uuid c801d42e-dd94-493e-bd2f-6c3ddad43f55)) 335 | (pin "CH_PD" (uuid 3172f2e2-18d2-4a80-ae30-5707b3409798)) 336 | (pin "GND" (uuid 712d6a7d-2b62-464f-b745-fd2a6b0187f6)) 337 | (pin "GPIO0" (uuid b3d08afa-f296-4e3b-8825-73b6331d35bf)) 338 | (pin "GPIO12" (uuid 98e81e80-1f85-4152-be3f-99785ea97751)) 339 | (pin "GPIO13" (uuid 842e430f-0c35-45f3-a0b5-95ae7b7ae388)) 340 | (pin "GPIO14" (uuid 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef)) 341 | (pin "GPIO15" (uuid 03d88a85-11fd-47aa-954c-c318bb15294a)) 342 | (pin "GPIO16" (uuid 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b)) 343 | (pin "GPIO2" (uuid 0dcdf1b8-13c6-48b4-bd94-5d26038ff231)) 344 | (pin "GPIO4" (uuid dde3dba8-1b81-466c-93a3-c284ff4da1ef)) 345 | (pin "GPIO5" (uuid 58dc14f9-c158-4824-a84e-24a6a482a7a4)) 346 | (pin "RESET" (uuid f976e2cc-36f9-4479-a816-2c74d1d5da6f)) 347 | (pin "RX" (uuid b635b16e-60bb-4b3e-9fc3-47d34eef8381)) 348 | (pin "TX" (uuid 13475e15-f37c-4de8-857e-1722b0c39513)) 349 | (pin "VCC" (uuid 2732632c-4768-42b6-bf7f-14643424019e)) 350 | ) 351 | 352 | (symbol (lib_id "ESP12_Harness-eagle-import:ESP12") (at 152.4 86.36 0) 353 | (in_bom yes) (on_board yes) 354 | (uuid e877bf4a-4210-4bd3-b7b0-806eb4affc5b) 355 | (property "Reference" "POGO-ESP-12" (id 0) (at 139.7 76.2 0) 356 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 357 | ) 358 | (property "Value" "ESP12" (id 1) (at 139.7 101.6 0) 359 | (effects (font (size 1.778 1.5113)) (justify left bottom)) 360 | ) 361 | (property "Footprint" "ESP12" (id 2) (at 152.4 86.36 0) 362 | (effects (font (size 1.27 1.27)) hide) 363 | ) 364 | (property "Datasheet" "" (id 3) (at 152.4 86.36 0) 365 | (effects (font (size 1.27 1.27)) hide) 366 | ) 367 | (pin "ADC" (uuid 0147f16a-c952-4891-8f53-a9fb8cddeb8d)) 368 | (pin "CH_PD" (uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)) 369 | (pin "GND" (uuid d22e95aa-f3db-4fbc-a331-048a2523233e)) 370 | (pin "GPIO0" (uuid 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f)) 371 | (pin "GPIO12" (uuid b1169a2d-8998-4b50-a48d-c520bcc1b8e1)) 372 | (pin "GPIO13" (uuid 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)) 373 | (pin "GPIO14" (uuid 15875808-74d5-4210-b8ca-aa8fbc04ae21)) 374 | (pin "GPIO15" (uuid dd00c2e1-6027-4717-b312-4fab3ee52002)) 375 | (pin "GPIO16" (uuid 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)) 376 | (pin "GPIO2" (uuid 8322f275-268c-4e87-a69f-4cfbf05e747f)) 377 | (pin "GPIO4" (uuid b6270a28-e0d9-4655-a18a-03dbf007b940)) 378 | (pin "GPIO5" (uuid f3490fa5-5a27-423b-af60-53609669542c)) 379 | (pin "RESET" (uuid 1860e030-7a36-4298-b7fc-a16d48ab15ba)) 380 | (pin "RX" (uuid 3dcc657b-55a1-48e0-9667-e01e7b6b08b5)) 381 | (pin "TX" (uuid 67f6e996-3c99-493c-8f6f-e739e2ed5d7a)) 382 | (pin "VCC" (uuid 32667662-ae86-4904-b198-3e95f11851bf)) 383 | ) 384 | 385 | (sheet_instances 386 | (path "/" (page "1")) 387 | ) 388 | 389 | (symbol_instances 390 | (path "/e877bf4a-4210-4bd3-b7b0-806eb4affc5b" 391 | (reference "POGO-ESP-12") (unit 1) (value "ESP12") (footprint "ESP12") 392 | ) 393 | (path "/2d6718e7-f18d-444d-9792-ddf1a113460c" 394 | (reference "WEMOS-D1") (unit 1) (value "ESP12") (footprint "ESP12") 395 | ) 396 | ) 397 | ) 398 | -------------------------------------------------------------------------------- /KICAD/ESP12_Harness.pretty/ESP12.kicad_mod: -------------------------------------------------------------------------------- 1 | (footprint "ESP12" (version 20211014) (generator pcbnew) 2 | (layer "F.Cu") 3 | (tedit 0) 4 | (descr "ESP8266 Module 12") 5 | (fp_text reference "REF**" (at 0 0) (layer "F.SilkS") 6 | (effects (font (size 1.27 1.27) (thickness 0.15))) 7 | (tstamp 5528bcad-2950-4673-90eb-c37e6952c475) 8 | ) 9 | (fp_text value "" (at 0 0) (layer "F.SilkS") 10 | (effects (font (size 1.27 1.27) (thickness 0.15))) 11 | (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d) 12 | ) 13 | (fp_text user ">Name" (at -7.7 -15.1) (layer "F.SilkS") 14 | (effects (font (size 1.308608 1.308608) (thickness 0.113792)) (justify left bottom)) 15 | (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c) 16 | ) 17 | (fp_text user "ESP - 12" (at -4 -2.6) (layer "F.SilkS") 18 | (effects (font (size 1.308608 1.308608) (thickness 0.113792)) (justify left bottom)) 19 | (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa) 20 | ) 21 | (fp_text user ">Value" (at -7.7 11.9) (layer "F.Fab") 22 | (effects (font (size 1.308608 1.308608) (thickness 0.113792)) (justify left bottom)) 23 | (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e) 24 | ) 25 | (fp_line (start 7.8994 -1.0414) (end 7.8994 -0.5588) (layer "F.SilkS") (width 0.127) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17)) 26 | (fp_line (start 7.9 -14.2) (end 7.9 -8.4) (layer "F.SilkS") (width 0.127) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)) 27 | (fp_line (start 7.9248 -5.0546) (end 7.9248 -4.572) (layer "F.SilkS") (width 0.127) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)) 28 | (fp_line (start -0.6 -13.4) (end 0.5 -13.4) (layer "F.SilkS") (width 0.6096) (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd)) 29 | (fp_line (start -1.8 -9.8) (end -0.6 -9.8) (layer "F.SilkS") (width 0.6096) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f)) 30 | (fp_line (start -8.1026 -1.016) (end -8.1026 -0.5842) (layer "F.SilkS") (width 0.127) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077)) 31 | (fp_line (start 7.9248 -3.048) (end 7.9248 -2.54) (layer "F.SilkS") (width 0.127) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249)) 32 | (fp_line (start -8.1 -8.4) (end 7.9 -8.4) (layer "F.SilkS") (width 0.127) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d)) 33 | (fp_line (start -4.9 -8.6) (end -4.9 -13.5) (layer "F.SilkS") (width 0.6096) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9)) 34 | (fp_line (start -8.1026 -3.0226) (end -8.1026 -2.5654) (layer "F.SilkS") (width 0.127) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19)) 35 | (fp_line (start 7.874 -8.4074) (end 7.8994 -8.4074) (layer "F.SilkS") (width 0.127) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067)) 36 | (fp_line (start -4.9 -13.5) (end -4 -13.5) (layer "F.SilkS") (width 0.6096) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c)) 37 | (fp_line (start 0.5 -9.9) (end 1.6 -9.9) (layer "F.SilkS") (width 0.6096) (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da)) 38 | (fp_line (start -8.1026 6.985) (end -8.1026 7.4168) (layer "F.SilkS") (width 0.127) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b)) 39 | (fp_line (start -3 -13.4) (end -1.8 -13.4) (layer "F.SilkS") (width 0.6096) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf)) 40 | (fp_line (start 1.6 -13.4) (end 5.6 -13.4) (layer "F.SilkS") (width 0.6096) (tstamp 4780a290-d25c-4459-9579-eba3f7678762)) 41 | (fp_line (start 7.9 9.8) (end -8.1 9.8) (layer "F.SilkS") (width 0.127) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)) 42 | (fp_line (start 7.8994 2.921) (end 7.8994 3.4544) (layer "F.SilkS") (width 0.127) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454)) 43 | (fp_line (start -4 -9.8) (end -3 -9.8) (layer "F.SilkS") (width 0.6096) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9)) 44 | (fp_line (start -4 -13.5) (end -4 -9.8) (layer "F.SilkS") (width 0.6096) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338)) 45 | (fp_line (start -0.6 -9.8) (end -0.6 -13.4) (layer "F.SilkS") (width 0.6096) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56)) 46 | (fp_line (start 1.6 -9.9) (end 1.6 -13.4) (layer "F.SilkS") (width 0.6096) (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)) 47 | (fp_line (start -8.1026 4.9784) (end -8.1026 5.4356) (layer "F.SilkS") (width 0.127) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d)) 48 | (fp_line (start -3 -9.8) (end -3 -13.4) (layer "F.SilkS") (width 0.6096) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc)) 49 | (fp_line (start 7.8994 0.9398) (end 7.8994 1.4478) (layer "F.SilkS") (width 0.127) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)) 50 | (fp_line (start 0.5 -13.4) (end 0.5 -9.9) (layer "F.SilkS") (width 0.6096) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6)) 51 | (fp_line (start 7.8994 6.9596) (end 7.8994 7.4422) (layer "F.SilkS") (width 0.127) (tstamp a15a7506-eae4-4933-84da-9ad754258706)) 52 | (fp_line (start 7.8994 -8.4074) (end 7.8994 -6.5532) (layer "F.SilkS") (width 0.127) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)) 53 | (fp_line (start -1.8 -13.4) (end -1.8 -9.8) (layer "F.SilkS") (width 0.6096) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b)) 54 | (fp_line (start -4.9 -7.9) (end 1.6 -7.9) (layer "F.SilkS") (width 0.6096) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3)) 55 | (fp_line (start -8.1026 2.9718) (end -8.1026 3.429) (layer "F.SilkS") (width 0.127) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8)) 56 | (fp_line (start -8.1026 -8.4074) (end -8.1026 -6.5786) (layer "F.SilkS") (width 0.127) (tstamp c43663ee-9a0d-4f27-a292-89ba89964065)) 57 | (fp_line (start -8.1026 -5.0292) (end -8.1026 -4.572) (layer "F.SilkS") (width 0.127) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807)) 58 | (fp_line (start 7.8994 9.779) (end 7.8994 8.9916) (layer "F.SilkS") (width 0.127) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)) 59 | (fp_line (start -8.1 -8.4) (end -8.1 -14.2) (layer "F.SilkS") (width 0.127) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4)) 60 | (fp_line (start 7.8994 4.9276) (end 7.8994 5.461) (layer "F.SilkS") (width 0.127) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad)) 61 | (fp_line (start -8.1026 0.9652) (end -8.1026 1.4224) (layer "F.SilkS") (width 0.127) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba)) 62 | (fp_line (start -4.9 -8.5) (end -4.9 -7.9) (layer "F.SilkS") (width 0.6096) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7)) 63 | (fp_line (start -8.1026 8.9662) (end -8.1026 9.8044) (layer "F.SilkS") (width 0.127) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51)) 64 | (fp_line (start -8.1 -14.2) (end 7.9 -14.2) (layer "F.SilkS") (width 0.127) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24)) 65 | (pad "ADC" thru_hole oval (at -7.1 -3.8 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 66 | (solder_mask_margin 0.0508) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)) 67 | (pad "CH_PD" thru_hole oval (at -7.1 -1.8 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 68 | (solder_mask_margin 0.0508) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)) 69 | (pad "GND" thru_hole oval (at 6.9 8.2) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 70 | (solder_mask_margin 0.0508) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768)) 71 | (pad "GPIO0" thru_hole oval (at 6.9 2.2) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 72 | (solder_mask_margin 0.0508) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)) 73 | (pad "GPIO2" thru_hole oval (at 6.9 4.2) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 74 | (solder_mask_margin 0.0508) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949)) 75 | (pad "GPIO4" thru_hole oval (at 6.9 -1.8) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 76 | (solder_mask_margin 0.0508) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)) 77 | (pad "GPIO5" thru_hole oval (at 6.9 0.2) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 78 | (solder_mask_margin 0.0508) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46)) 79 | (pad "GPIO12" thru_hole oval (at -7.1 4.2 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 80 | (solder_mask_margin 0.0508) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8)) 81 | (pad "GPIO13" thru_hole oval (at -7.1 6.2 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 82 | (solder_mask_margin 0.0508) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)) 83 | (pad "GPIO14" thru_hole oval (at -7.1 2.2 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 84 | (solder_mask_margin 0.0508) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)) 85 | (pad "GPIO15" thru_hole oval (at 6.9 6.2) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 86 | (solder_mask_margin 0.0508) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071)) 87 | (pad "GPIO16" thru_hole oval (at -7.1 0.2 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 88 | (solder_mask_margin 0.0508) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed)) 89 | (pad "RESET" thru_hole oval (at -7.1 -5.8 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 90 | (solder_mask_margin 0.0508) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b)) 91 | (pad "RX" thru_hole oval (at 6.9 -3.8) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 92 | (solder_mask_margin 0.0508) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996)) 93 | (pad "TX" thru_hole oval (at 6.9 -5.8) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 94 | (solder_mask_margin 0.0508) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97)) 95 | (pad "VCC" thru_hole oval (at -7.1 8.2 180) (size 2.416 1.208) (drill 0.7 (offset 0.604 0)) (layers *.Cu *.Mask) 96 | (solder_mask_margin 0.0508) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f)) 97 | ) 98 | -------------------------------------------------------------------------------- /KICAD/empty.kicad_wks: -------------------------------------------------------------------------------- 1 | (kicad_wks (version 20210606) (generator pl_editor) 2 | (setup (textsize 1.5 1.5)(linewidth 0.15)(textlinewidth 0.15) 3 | (left_margin 10)(right_margin 10)(top_margin 10)(bottom_margin 10)) 4 | (line (name "segm1:Line") (start 0 0) (end 0 0)) 5 | ) 6 | -------------------------------------------------------------------------------- /KICAD/fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (lib (name "ESP12_Harness")(type "KiCad")(uri "$(KIPRJMOD)/ESP12_Harness.pretty")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /KICAD/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (lib (name "ESP12_Harness-eagle-import")(type "KiCad")(uri "${KIPRJMOD}/ESP12_Harness-eagle-import.kicad_sym")(options "")(descr "")) 3 | ) 4 | -------------------------------------------------------------------------------- /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 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 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 | {project} Copyright (C) {year} {fullname} 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 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-B_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(6.0.0-0)*% 2 | %TF.CreationDate,2022-07-24T14:36:37-07:00*% 3 | %TF.ProjectId,ESP12_Harness,45535031-325f-4486-9172-6e6573732e6b,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Bot*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (6.0.0-0)) date 2022-07-24 14:36:37* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10O,2.517600X1.309600*% 15 | %ADD11O,1.309600X2.517600*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | %TO.C,POGO-ESP-12*% 19 | X-33296700Y-18453100D03* 20 | X-18088700Y-4453100D03* 21 | X-18088700Y-6453100D03* 22 | X-33296700Y-4453100D03* 23 | X-33296700Y-10453100D03* 24 | X-18088700Y-16453100D03* 25 | X-33296700Y-12453100D03* 26 | X-33296700Y-16453100D03* 27 | X-33296700Y-14453100D03* 28 | X-18088700Y-10453100D03* 29 | X-18088700Y-8453100D03* 30 | X-18088700Y-14453100D03* 31 | X-18088700Y-12453100D03* 32 | X-18088700Y-18453100D03* 33 | X-33296700Y-8453100D03* 34 | X-33296700Y-6453100D03* 35 | %TD*% 36 | D11* 37 | %TO.C,WEMOS-D1*% 38 | X-26145200Y-43946600D03* 39 | X-28145200Y-43946600D03* 40 | X-38145200Y-28738600D03* 41 | X-32145200Y-28738600D03* 42 | X-34145200Y-28738600D03* 43 | X-28145200Y-28738600D03* 44 | X-30145200Y-28738600D03* 45 | X-34145200Y-43946600D03* 46 | X-36145200Y-43946600D03* 47 | X-32145200Y-43946600D03* 48 | X-36145200Y-28738600D03* 49 | X-30145200Y-43946600D03* 50 | X-24145200Y-43946600D03* 51 | X-26145200Y-28738600D03* 52 | X-24145200Y-28738600D03* 53 | X-38145200Y-43946600D03* 54 | %TD*% 55 | M02* 56 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-B_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(6.0.0-0)*% 2 | %TF.CreationDate,2022-07-24T14:36:36-07:00*% 3 | %TF.ProjectId,ESP12_Harness,45535031-325f-4486-9172-6e6573732e6b,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Bot*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (6.0.0-0)) date 2022-07-24 14:36:36* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-Edge_Cuts.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(6.0.0-0)*% 2 | %TF.CreationDate,2022-07-24T14:36:37-07:00*% 3 | %TF.ProjectId,ESP12_Harness,45535031-325f-4486-9172-6e6573732e6b,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Profile,NP*% 6 | %FSLAX46Y46*% 7 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 8 | G04 Created by KiCad (PCBNEW (6.0.0-0)) date 2022-07-24 14:36:37* 9 | %MOMM*% 10 | %LPD*% 11 | G01* 12 | G04 APERTURE LIST* 13 | %TA.AperFunction,Profile*% 14 | %ADD10C,0.050000*% 15 | %TD*% 16 | G04 APERTURE END LIST* 17 | D10* 18 | X-49999999Y-48000000D02* 19 | G75* 20 | G03* 21 | X-48000000Y-50000000I1999999J-1D01* 22 | G01* 23 | X-2000000Y-49999999D02* 24 | G75* 25 | G03* 26 | X0Y-48000000I1J1999999D01* 27 | G01* 28 | X-48000000Y-1D02* 29 | G75* 30 | G03* 31 | X-50000000Y-2000000I-1J-1999999D01* 32 | G01* 33 | X0Y-2000000D02* 34 | G75* 35 | G03* 36 | X-2000000Y0I-2000000J0D01* 37 | G01* 38 | X-48000000Y-50000000D02* 39 | X-2000000Y-50000000D01* 40 | X0Y-48000000D02* 41 | X0Y-2000000D01* 42 | X-2000000Y0D02* 43 | X-48000000Y0D01* 44 | X-50000000Y-2000000D02* 45 | X-50000000Y-48000000D01* 46 | M02* 47 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-F_Mask.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(6.0.0-0)*% 2 | %TF.CreationDate,2022-07-24T14:36:37-07:00*% 3 | %TF.ProjectId,ESP12_Harness,45535031-325f-4486-9172-6e6573732e6b,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Soldermask,Top*% 6 | %TF.FilePolarity,Negative*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (6.0.0-0)) date 2022-07-24 14:36:37* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | %ADD10C,0.100000*% 15 | %ADD11O,2.517600X1.309600*% 16 | %ADD12O,1.309600X2.517600*% 17 | G04 APERTURE END LIST* 18 | D10* 19 | X-762000Y-19050000D02* 20 | X-15494000Y-19050000D01* 21 | X-15494000Y-19050000D02* 22 | X-15494000Y-17907000D01* 23 | X-15494000Y-17907000D02* 24 | X-762000Y-17907000D01* 25 | X-762000Y-17907000D02* 26 | X-762000Y-19050000D01* 27 | G36* 28 | X-762000Y-19050000D02* 29 | G01* 30 | X-15494000Y-19050000D01* 31 | X-15494000Y-17907000D01* 32 | X-762000Y-17907000D01* 33 | X-762000Y-19050000D01* 34 | G37* 35 | X-762000Y-15049500D02* 36 | X-15494000Y-15049500D01* 37 | X-15494000Y-15049500D02* 38 | X-15494000Y-13906500D01* 39 | X-15494000Y-13906500D02* 40 | X-762000Y-13906500D01* 41 | X-762000Y-13906500D02* 42 | X-762000Y-15049500D01* 43 | G36* 44 | X-762000Y-15049500D02* 45 | G01* 46 | X-15494000Y-15049500D01* 47 | X-15494000Y-13906500D01* 48 | X-762000Y-13906500D01* 49 | X-762000Y-15049500D01* 50 | G37* 51 | X-762000Y-5143500D02* 52 | X-15494000Y-5143500D01* 53 | X-15494000Y-5143500D02* 54 | X-15494000Y-4000500D01* 55 | X-15494000Y-4000500D02* 56 | X-762000Y-4000500D01* 57 | X-762000Y-4000500D02* 58 | X-762000Y-5143500D01* 59 | G36* 60 | X-762000Y-5143500D02* 61 | G01* 62 | X-15494000Y-5143500D01* 63 | X-15494000Y-4000500D01* 64 | X-762000Y-4000500D01* 65 | X-762000Y-5143500D01* 66 | G37* 67 | X-762000Y-9080500D02* 68 | X-15494000Y-9080500D01* 69 | X-15494000Y-9080500D02* 70 | X-15494000Y-7937500D01* 71 | X-15494000Y-7937500D02* 72 | X-762000Y-7937500D01* 73 | X-762000Y-7937500D02* 74 | X-762000Y-9080500D01* 75 | G36* 76 | X-762000Y-9080500D02* 77 | G01* 78 | X-15494000Y-9080500D01* 79 | X-15494000Y-7937500D01* 80 | X-762000Y-7937500D01* 81 | X-762000Y-9080500D01* 82 | G37* 83 | X-762000Y-13017500D02* 84 | X-15494000Y-13017500D01* 85 | X-15494000Y-13017500D02* 86 | X-15494000Y-11874500D01* 87 | X-15494000Y-11874500D02* 88 | X-762000Y-11874500D01* 89 | X-762000Y-11874500D02* 90 | X-762000Y-13017500D01* 91 | G36* 92 | X-762000Y-13017500D02* 93 | G01* 94 | X-15494000Y-13017500D01* 95 | X-15494000Y-11874500D01* 96 | X-762000Y-11874500D01* 97 | X-762000Y-13017500D01* 98 | G37* 99 | X-762000Y-7048500D02* 100 | X-15494000Y-7048500D01* 101 | X-15494000Y-7048500D02* 102 | X-15494000Y-5905500D01* 103 | X-15494000Y-5905500D02* 104 | X-762000Y-5905500D01* 105 | X-762000Y-5905500D02* 106 | X-762000Y-7048500D01* 107 | G36* 108 | X-762000Y-7048500D02* 109 | G01* 110 | X-15494000Y-7048500D01* 111 | X-15494000Y-5905500D01* 112 | X-762000Y-5905500D01* 113 | X-762000Y-7048500D01* 114 | G37* 115 | X-762000Y-11112500D02* 116 | X-15494000Y-11112500D01* 117 | X-15494000Y-11112500D02* 118 | X-15494000Y-9969500D01* 119 | X-15494000Y-9969500D02* 120 | X-762000Y-9969500D01* 121 | X-762000Y-9969500D02* 122 | X-762000Y-11112500D01* 123 | G36* 124 | X-762000Y-11112500D02* 125 | G01* 126 | X-15494000Y-11112500D01* 127 | X-15494000Y-9969500D01* 128 | X-762000Y-9969500D01* 129 | X-762000Y-11112500D01* 130 | G37* 131 | X-762000Y-17018000D02* 132 | X-15494000Y-17018000D01* 133 | X-15494000Y-17018000D02* 134 | X-15494000Y-15875000D01* 135 | X-15494000Y-15875000D02* 136 | X-762000Y-15875000D01* 137 | X-762000Y-15875000D02* 138 | X-762000Y-17018000D01* 139 | G36* 140 | X-762000Y-17018000D02* 141 | G01* 142 | X-15494000Y-17018000D01* 143 | X-15494000Y-15875000D01* 144 | X-762000Y-15875000D01* 145 | X-762000Y-17018000D01* 146 | G37* 147 | X-2667000Y-19050000D02* 148 | X-17399000Y-19050000D01* 149 | X-17399000Y-19050000D02* 150 | X-17399000Y-17907000D01* 151 | X-17399000Y-17907000D02* 152 | X-2667000Y-17907000D01* 153 | X-2667000Y-17907000D02* 154 | X-2667000Y-19050000D01* 155 | G36* 156 | X-2667000Y-19050000D02* 157 | G01* 158 | X-17399000Y-19050000D01* 159 | X-17399000Y-17907000D01* 160 | X-2667000Y-17907000D01* 161 | X-2667000Y-19050000D01* 162 | G37* 163 | X-2667000Y-15049500D02* 164 | X-17399000Y-15049500D01* 165 | X-17399000Y-15049500D02* 166 | X-17399000Y-13906500D01* 167 | X-17399000Y-13906500D02* 168 | X-2667000Y-13906500D01* 169 | X-2667000Y-13906500D02* 170 | X-2667000Y-15049500D01* 171 | G36* 172 | X-2667000Y-15049500D02* 173 | G01* 174 | X-17399000Y-15049500D01* 175 | X-17399000Y-13906500D01* 176 | X-2667000Y-13906500D01* 177 | X-2667000Y-15049500D01* 178 | G37* 179 | X-2667000Y-5143500D02* 180 | X-17399000Y-5143500D01* 181 | X-17399000Y-5143500D02* 182 | X-17399000Y-4000500D01* 183 | X-17399000Y-4000500D02* 184 | X-2667000Y-4000500D01* 185 | X-2667000Y-4000500D02* 186 | X-2667000Y-5143500D01* 187 | G36* 188 | X-2667000Y-5143500D02* 189 | G01* 190 | X-17399000Y-5143500D01* 191 | X-17399000Y-4000500D01* 192 | X-2667000Y-4000500D01* 193 | X-2667000Y-5143500D01* 194 | G37* 195 | X-2667000Y-9080500D02* 196 | X-17399000Y-9080500D01* 197 | X-17399000Y-9080500D02* 198 | X-17399000Y-7937500D01* 199 | X-17399000Y-7937500D02* 200 | X-2667000Y-7937500D01* 201 | X-2667000Y-7937500D02* 202 | X-2667000Y-9080500D01* 203 | G36* 204 | X-2667000Y-9080500D02* 205 | G01* 206 | X-17399000Y-9080500D01* 207 | X-17399000Y-7937500D01* 208 | X-2667000Y-7937500D01* 209 | X-2667000Y-9080500D01* 210 | G37* 211 | X-2667000Y-13017500D02* 212 | X-17399000Y-13017500D01* 213 | X-17399000Y-13017500D02* 214 | X-17399000Y-11874500D01* 215 | X-17399000Y-11874500D02* 216 | X-2667000Y-11874500D01* 217 | X-2667000Y-11874500D02* 218 | X-2667000Y-13017500D01* 219 | G36* 220 | X-2667000Y-13017500D02* 221 | G01* 222 | X-17399000Y-13017500D01* 223 | X-17399000Y-11874500D01* 224 | X-2667000Y-11874500D01* 225 | X-2667000Y-13017500D01* 226 | G37* 227 | X-2667000Y-7048500D02* 228 | X-17399000Y-7048500D01* 229 | X-17399000Y-7048500D02* 230 | X-17399000Y-5905500D01* 231 | X-17399000Y-5905500D02* 232 | X-2667000Y-5905500D01* 233 | X-2667000Y-5905500D02* 234 | X-2667000Y-7048500D01* 235 | G36* 236 | X-2667000Y-7048500D02* 237 | G01* 238 | X-17399000Y-7048500D01* 239 | X-17399000Y-5905500D01* 240 | X-2667000Y-5905500D01* 241 | X-2667000Y-7048500D01* 242 | G37* 243 | X-2667000Y-11112500D02* 244 | X-17399000Y-11112500D01* 245 | X-17399000Y-11112500D02* 246 | X-17399000Y-9969500D01* 247 | X-17399000Y-9969500D02* 248 | X-2667000Y-9969500D01* 249 | X-2667000Y-9969500D02* 250 | X-2667000Y-11112500D01* 251 | G36* 252 | X-2667000Y-11112500D02* 253 | G01* 254 | X-17399000Y-11112500D01* 255 | X-17399000Y-9969500D01* 256 | X-2667000Y-9969500D01* 257 | X-2667000Y-11112500D01* 258 | G37* 259 | X-2667000Y-17018000D02* 260 | X-17399000Y-17018000D01* 261 | X-17399000Y-17018000D02* 262 | X-17399000Y-15875000D01* 263 | X-17399000Y-15875000D02* 264 | X-2667000Y-15875000D01* 265 | X-2667000Y-15875000D02* 266 | X-2667000Y-17018000D01* 267 | G36* 268 | X-2667000Y-17018000D02* 269 | G01* 270 | X-17399000Y-17018000D01* 271 | X-17399000Y-15875000D01* 272 | X-2667000Y-15875000D01* 273 | X-2667000Y-17018000D01* 274 | G37* 275 | X-48768000Y-17843500D02* 276 | X-34036000Y-17843500D01* 277 | X-34036000Y-17843500D02* 278 | X-34036000Y-18986500D01* 279 | X-34036000Y-18986500D02* 280 | X-48768000Y-18986500D01* 281 | X-48768000Y-18986500D02* 282 | X-48768000Y-17843500D01* 283 | G36* 284 | X-48768000Y-17843500D02* 285 | G01* 286 | X-34036000Y-17843500D01* 287 | X-34036000Y-18986500D01* 288 | X-48768000Y-18986500D01* 289 | X-48768000Y-17843500D01* 290 | G37* 291 | X-48768000Y-15938500D02* 292 | X-34036000Y-15938500D01* 293 | X-34036000Y-15938500D02* 294 | X-34036000Y-17081500D01* 295 | X-34036000Y-17081500D02* 296 | X-48768000Y-17081500D01* 297 | X-48768000Y-17081500D02* 298 | X-48768000Y-15938500D01* 299 | G36* 300 | X-48768000Y-15938500D02* 301 | G01* 302 | X-34036000Y-15938500D01* 303 | X-34036000Y-17081500D01* 304 | X-48768000Y-17081500D01* 305 | X-48768000Y-15938500D01* 306 | G37* 307 | X-48768000Y-13906500D02* 308 | X-34036000Y-13906500D01* 309 | X-34036000Y-13906500D02* 310 | X-34036000Y-15049500D01* 311 | X-34036000Y-15049500D02* 312 | X-48768000Y-15049500D01* 313 | X-48768000Y-15049500D02* 314 | X-48768000Y-13906500D01* 315 | G36* 316 | X-48768000Y-13906500D02* 317 | G01* 318 | X-34036000Y-13906500D01* 319 | X-34036000Y-15049500D01* 320 | X-48768000Y-15049500D01* 321 | X-48768000Y-13906500D01* 322 | G37* 323 | X-48768000Y-11874500D02* 324 | X-34036000Y-11874500D01* 325 | X-34036000Y-11874500D02* 326 | X-34036000Y-13017500D01* 327 | X-34036000Y-13017500D02* 328 | X-48768000Y-13017500D01* 329 | X-48768000Y-13017500D02* 330 | X-48768000Y-11874500D01* 331 | G36* 332 | X-48768000Y-11874500D02* 333 | G01* 334 | X-34036000Y-11874500D01* 335 | X-34036000Y-13017500D01* 336 | X-48768000Y-13017500D01* 337 | X-48768000Y-11874500D01* 338 | G37* 339 | X-48768000Y-9969500D02* 340 | X-34036000Y-9969500D01* 341 | X-34036000Y-9969500D02* 342 | X-34036000Y-11112500D01* 343 | X-34036000Y-11112500D02* 344 | X-48768000Y-11112500D01* 345 | X-48768000Y-11112500D02* 346 | X-48768000Y-9969500D01* 347 | G36* 348 | X-48768000Y-9969500D02* 349 | G01* 350 | X-34036000Y-9969500D01* 351 | X-34036000Y-11112500D01* 352 | X-48768000Y-11112500D01* 353 | X-48768000Y-9969500D01* 354 | G37* 355 | X-48768000Y-7937500D02* 356 | X-34036000Y-7937500D01* 357 | X-34036000Y-7937500D02* 358 | X-34036000Y-9080500D01* 359 | X-34036000Y-9080500D02* 360 | X-48768000Y-9080500D01* 361 | X-48768000Y-9080500D02* 362 | X-48768000Y-7937500D01* 363 | G36* 364 | X-48768000Y-7937500D02* 365 | G01* 366 | X-34036000Y-7937500D01* 367 | X-34036000Y-9080500D01* 368 | X-48768000Y-9080500D01* 369 | X-48768000Y-7937500D01* 370 | G37* 371 | X-48768000Y-5969000D02* 372 | X-34036000Y-5969000D01* 373 | X-34036000Y-5969000D02* 374 | X-34036000Y-7112000D01* 375 | X-34036000Y-7112000D02* 376 | X-48768000Y-7112000D01* 377 | X-48768000Y-7112000D02* 378 | X-48768000Y-5969000D01* 379 | G36* 380 | X-48768000Y-5969000D02* 381 | G01* 382 | X-34036000Y-5969000D01* 383 | X-34036000Y-7112000D01* 384 | X-48768000Y-7112000D01* 385 | X-48768000Y-5969000D01* 386 | G37* 387 | X-48768000Y-3937000D02* 388 | X-34036000Y-3937000D01* 389 | X-34036000Y-3937000D02* 390 | X-34036000Y-5080000D01* 391 | X-34036000Y-5080000D02* 392 | X-48768000Y-5080000D01* 393 | X-48768000Y-5080000D02* 394 | X-48768000Y-3937000D01* 395 | G36* 396 | X-48768000Y-3937000D02* 397 | G01* 398 | X-34036000Y-3937000D01* 399 | X-34036000Y-5080000D01* 400 | X-48768000Y-5080000D01* 401 | X-48768000Y-3937000D01* 402 | G37* 403 | D11* 404 | %TO.C,POGO-ESP-12*% 405 | X-33296700Y-18453100D03* 406 | X-18088700Y-4453100D03* 407 | X-18088700Y-6453100D03* 408 | X-33296700Y-4453100D03* 409 | X-33296700Y-10453100D03* 410 | X-18088700Y-16453100D03* 411 | X-33296700Y-12453100D03* 412 | X-33296700Y-16453100D03* 413 | X-33296700Y-14453100D03* 414 | X-18088700Y-10453100D03* 415 | X-18088700Y-8453100D03* 416 | X-18088700Y-14453100D03* 417 | X-18088700Y-12453100D03* 418 | X-18088700Y-18453100D03* 419 | X-33296700Y-8453100D03* 420 | X-33296700Y-6453100D03* 421 | %TD*% 422 | D12* 423 | %TO.C,WEMOS-D1*% 424 | X-26145200Y-43946600D03* 425 | X-28145200Y-43946600D03* 426 | X-38145200Y-28738600D03* 427 | X-32145200Y-28738600D03* 428 | X-34145200Y-28738600D03* 429 | X-28145200Y-28738600D03* 430 | X-30145200Y-28738600D03* 431 | X-34145200Y-43946600D03* 432 | X-36145200Y-43946600D03* 433 | X-32145200Y-43946600D03* 434 | X-36145200Y-28738600D03* 435 | X-30145200Y-43946600D03* 436 | X-24145200Y-43946600D03* 437 | X-26145200Y-28738600D03* 438 | X-24145200Y-28738600D03* 439 | X-38145200Y-43946600D03* 440 | %TD*% 441 | M02* 442 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-F_Paste.gbr: -------------------------------------------------------------------------------- 1 | %TF.GenerationSoftware,KiCad,Pcbnew,(6.0.0-0)*% 2 | %TF.CreationDate,2022-07-24T14:36:36-07:00*% 3 | %TF.ProjectId,ESP12_Harness,45535031-325f-4486-9172-6e6573732e6b,rev?*% 4 | %TF.SameCoordinates,Original*% 5 | %TF.FileFunction,Paste,Top*% 6 | %TF.FilePolarity,Positive*% 7 | %FSLAX46Y46*% 8 | G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* 9 | G04 Created by KiCad (PCBNEW (6.0.0-0)) date 2022-07-24 14:36:36* 10 | %MOMM*% 11 | %LPD*% 12 | G01* 13 | G04 APERTURE LIST* 14 | G04 APERTURE END LIST* 15 | M02* 16 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-NPTH-drl_map.gbr: -------------------------------------------------------------------------------- 1 | %FSLAX45Y45*% 2 | G04 Gerber Fmt 4.5, Leading zero omitted, Abs format (unit mm)* 3 | G04 Created by KiCad (PCBNEW (6.0.0-0)) date 2022-07-24 14:36:45* 4 | %MOMM*% 5 | %LPD*% 6 | G01* 7 | G04 APERTURE LIST* 8 | %TA.AperFunction,Profile*% 9 | %ADD10C,0.050000*% 10 | %TD*% 11 | %ADD11C,0.200000*% 12 | G04 APERTURE END LIST* 13 | D10* 14 | X-5000000Y-4800000D02* 15 | G75* 16 | G03* 17 | X-4800000Y-5000000I200000J0D01* 18 | G01* 19 | X-200000Y-5000000D02* 20 | G75* 21 | G03* 22 | X0Y-4800000I0J200000D01* 23 | G01* 24 | X-4800000Y0D02* 25 | G75* 26 | G03* 27 | X-5000000Y-200000I0J-200000D01* 28 | G01* 29 | X0Y-200000D02* 30 | G75* 31 | G03* 32 | X-200000Y0I-200000J0D01* 33 | G01* 34 | X-4800000Y-5000000D02* 35 | X-200000Y-5000000D01* 36 | X0Y-4800000D02* 37 | X0Y-200000D01* 38 | X-200000Y0D02* 39 | X-4800000Y0D01* 40 | X-5000000Y-200000D02* 41 | X-5000000Y-4800000D01* 42 | D11* 43 | X-4744881Y-5312976D02* 44 | X-4744881Y-5112976D01* 45 | X-4697262Y-5112976D01* 46 | X-4668690Y-5122500D01* 47 | X-4649643Y-5141548D01* 48 | X-4640119Y-5160595D01* 49 | X-4630595Y-5198690D01* 50 | X-4630595Y-5227262D01* 51 | X-4640119Y-5265357D01* 52 | X-4649643Y-5284405D01* 53 | X-4668690Y-5303452D01* 54 | X-4697262Y-5312976D01* 55 | X-4744881Y-5312976D01* 56 | X-4544881Y-5312976D02* 57 | X-4544881Y-5179643D01* 58 | X-4544881Y-5217738D02* 59 | X-4535357Y-5198690D01* 60 | X-4525833Y-5189167D01* 61 | X-4506786Y-5179643D01* 62 | X-4487738Y-5179643D01* 63 | X-4421071Y-5312976D02* 64 | X-4421071Y-5179643D01* 65 | X-4421071Y-5112976D02* 66 | X-4430595Y-5122500D01* 67 | X-4421071Y-5132024D01* 68 | X-4411548Y-5122500D01* 69 | X-4421071Y-5112976D01* 70 | X-4421071Y-5132024D01* 71 | X-4297262Y-5312976D02* 72 | X-4316310Y-5303452D01* 73 | X-4325833Y-5284405D01* 74 | X-4325833Y-5112976D01* 75 | X-4192500Y-5312976D02* 76 | X-4211548Y-5303452D01* 77 | X-4221071Y-5284405D01* 78 | X-4221071Y-5112976D01* 79 | X-3963928Y-5312976D02* 80 | X-3963928Y-5112976D01* 81 | X-3897262Y-5255833D01* 82 | X-3830595Y-5112976D01* 83 | X-3830595Y-5312976D01* 84 | X-3649643Y-5312976D02* 85 | X-3649643Y-5208214D01* 86 | X-3659167Y-5189167D01* 87 | X-3678214Y-5179643D01* 88 | X-3716309Y-5179643D01* 89 | X-3735357Y-5189167D01* 90 | X-3649643Y-5303452D02* 91 | X-3668690Y-5312976D01* 92 | X-3716309Y-5312976D01* 93 | X-3735357Y-5303452D01* 94 | X-3744881Y-5284405D01* 95 | X-3744881Y-5265357D01* 96 | X-3735357Y-5246310D01* 97 | X-3716309Y-5236786D01* 98 | X-3668690Y-5236786D01* 99 | X-3649643Y-5227262D01* 100 | X-3554405Y-5179643D02* 101 | X-3554405Y-5379643D01* 102 | X-3554405Y-5189167D02* 103 | X-3535357Y-5179643D01* 104 | X-3497262Y-5179643D01* 105 | X-3478214Y-5189167D01* 106 | X-3468690Y-5198690D01* 107 | X-3459167Y-5217738D01* 108 | X-3459167Y-5274881D01* 109 | X-3468690Y-5293929D01* 110 | X-3478214Y-5303452D01* 111 | X-3497262Y-5312976D01* 112 | X-3535357Y-5312976D01* 113 | X-3554405Y-5303452D01* 114 | X-3373452Y-5293929D02* 115 | X-3363928Y-5303452D01* 116 | X-3373452Y-5312976D01* 117 | X-3382976Y-5303452D01* 118 | X-3373452Y-5293929D01* 119 | X-3373452Y-5312976D01* 120 | X-3373452Y-5189167D02* 121 | X-3363928Y-5198690D01* 122 | X-3373452Y-5208214D01* 123 | X-3382976Y-5198690D01* 124 | X-3373452Y-5189167D01* 125 | X-3373452Y-5208214D01* 126 | M02* 127 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-NPTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (6.0.0-0)} date Sunday, 24 July 2022 at 14:36:43 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2022-07-24T14:36:43-07:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(6.0.0-0) 6 | ; #@! TF.FileFunction,NonPlated,1,2,NPTH 7 | FMAT,2 8 | METRIC 9 | % 10 | G90 11 | G05 12 | T0 13 | M30 14 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-PTH-drl_map.gbr: -------------------------------------------------------------------------------- 1 | %FSLAX45Y45*% 2 | G04 Gerber Fmt 4.5, Leading zero omitted, Abs format (unit mm)* 3 | G04 Created by KiCad (PCBNEW (6.0.0-0)) date 2022-07-24 14:36:45* 4 | %MOMM*% 5 | %LPD*% 6 | G01* 7 | G04 APERTURE LIST* 8 | %TA.AperFunction,Profile*% 9 | %ADD10C,0.050000*% 10 | %TD*% 11 | %ADD11C,0.200000*% 12 | %ADD12C,0.030480*% 13 | %ADD13C,0.040000*% 14 | %ADD14C,0.070000*% 15 | G04 APERTURE END LIST* 16 | D10* 17 | X-5000000Y-4800000D02* 18 | G75* 19 | G03* 20 | X-4800000Y-5000000I200000J0D01* 21 | G01* 22 | X-200000Y-5000000D02* 23 | G75* 24 | G03* 25 | X0Y-4800000I0J200000D01* 26 | G01* 27 | X-4800000Y0D02* 28 | G75* 29 | G03* 30 | X-5000000Y-200000I0J-200000D01* 31 | G01* 32 | X0Y-200000D02* 33 | G75* 34 | G03* 35 | X-200000Y0I-200000J0D01* 36 | G01* 37 | X-4800000Y-5000000D02* 38 | X-200000Y-5000000D01* 39 | X0Y-4800000D02* 40 | X0Y-200000D01* 41 | X-200000Y0D02* 42 | X-4800000Y0D01* 43 | X-5000000Y-200000D02* 44 | X-5000000Y-4800000D01* 45 | D11* 46 | D12* 47 | X-3425830Y-3968120D02* 48 | X-3395350Y-3998600D01* 49 | X-3395350Y-3968120D02* 50 | X-3425830Y-3998600D01* 51 | X-3013080Y-1301120D02* 52 | X-2982600Y-1331600D01* 53 | X-2982600Y-1301120D02* 54 | X-3013080Y-1331600D01* 55 | X-2707640Y-1346200D02* 56 | X-2677160Y-1376680D01* 57 | X-2677160Y-1346200D02* 58 | X-2707640Y-1376680D01* 59 | X-2409830Y-1110620D02* 60 | X-2379350Y-1141100D01* 61 | X-2379350Y-1110620D02* 62 | X-2409830Y-1141100D01* 63 | X-1997080Y-1396370D02* 64 | X-1966600Y-1426850D01* 65 | X-1966600Y-1396370D02* 66 | X-1997080Y-1426850D01* 67 | D13* 68 | X-4186240Y-3276600D02* 69 | G75* 70 | G03* 71 | X-4186240Y-3276600I-20000J0D01* 72 | G01* 73 | X-3891600Y-1996440D02* 74 | G75* 75 | G03* 76 | X-3891600Y-1996440I-20000J0D01* 77 | G01* 78 | X-3295340Y-4153540D02* 79 | G75* 80 | G03* 81 | X-3295340Y-4153540I-20000J0D01* 82 | G01* 83 | X-2098360Y-2733040D02* 84 | G75* 85 | G03* 86 | X-2098360Y-2733040I-20000J0D01* 87 | G01* 88 | X-2067880Y-2900680D02* 89 | G75* 90 | G03* 91 | X-2067880Y-2900680I-20000J0D01* 92 | G01* 93 | D14* 94 | X-3814520Y-2899260D02* 95 | X-3814520Y-2969260D01* 96 | X-3849520Y-2934260D02* 97 | X-3779520Y-2934260D01* 98 | X-3814520Y-4299260D02* 99 | X-3814520Y-4369260D01* 100 | X-3849520Y-4334260D02* 101 | X-3779520Y-4334260D01* 102 | X-3614520Y-2899260D02* 103 | X-3614520Y-2969260D01* 104 | X-3649520Y-2934260D02* 105 | X-3579520Y-2934260D01* 106 | X-3614520Y-4299260D02* 107 | X-3614520Y-4369260D01* 108 | X-3649520Y-4334260D02* 109 | X-3579520Y-4334260D01* 110 | X-3414520Y-2899260D02* 111 | X-3414520Y-2969260D01* 112 | X-3449520Y-2934260D02* 113 | X-3379520Y-2934260D01* 114 | X-3414520Y-4299260D02* 115 | X-3414520Y-4369260D01* 116 | X-3449520Y-4334260D02* 117 | X-3379520Y-4334260D01* 118 | X-3269270Y-410310D02* 119 | X-3269270Y-480310D01* 120 | X-3304270Y-445310D02* 121 | X-3234270Y-445310D01* 122 | X-3269270Y-610310D02* 123 | X-3269270Y-680310D01* 124 | X-3304270Y-645310D02* 125 | X-3234270Y-645310D01* 126 | X-3269270Y-810310D02* 127 | X-3269270Y-880310D01* 128 | X-3304270Y-845310D02* 129 | X-3234270Y-845310D01* 130 | X-3269270Y-1010310D02* 131 | X-3269270Y-1080310D01* 132 | X-3304270Y-1045310D02* 133 | X-3234270Y-1045310D01* 134 | X-3269270Y-1210310D02* 135 | X-3269270Y-1280310D01* 136 | X-3304270Y-1245310D02* 137 | X-3234270Y-1245310D01* 138 | X-3269270Y-1410310D02* 139 | X-3269270Y-1480310D01* 140 | X-3304270Y-1445310D02* 141 | X-3234270Y-1445310D01* 142 | X-3269270Y-1610310D02* 143 | X-3269270Y-1680310D01* 144 | X-3304270Y-1645310D02* 145 | X-3234270Y-1645310D01* 146 | X-3269270Y-1810310D02* 147 | X-3269270Y-1880310D01* 148 | X-3304270Y-1845310D02* 149 | X-3234270Y-1845310D01* 150 | X-3214520Y-2899260D02* 151 | X-3214520Y-2969260D01* 152 | X-3249520Y-2934260D02* 153 | X-3179520Y-2934260D01* 154 | X-3214520Y-4299260D02* 155 | X-3214520Y-4369260D01* 156 | X-3249520Y-4334260D02* 157 | X-3179520Y-4334260D01* 158 | X-3014520Y-2899260D02* 159 | X-3014520Y-2969260D01* 160 | X-3049520Y-2934260D02* 161 | X-2979520Y-2934260D01* 162 | X-3014520Y-4299260D02* 163 | X-3014520Y-4369260D01* 164 | X-3049520Y-4334260D02* 165 | X-2979520Y-4334260D01* 166 | X-2814520Y-2899260D02* 167 | X-2814520Y-2969260D01* 168 | X-2849520Y-2934260D02* 169 | X-2779520Y-2934260D01* 170 | X-2814520Y-4299260D02* 171 | X-2814520Y-4369260D01* 172 | X-2849520Y-4334260D02* 173 | X-2779520Y-4334260D01* 174 | X-2614520Y-2899260D02* 175 | X-2614520Y-2969260D01* 176 | X-2649520Y-2934260D02* 177 | X-2579520Y-2934260D01* 178 | X-2614520Y-4299260D02* 179 | X-2614520Y-4369260D01* 180 | X-2649520Y-4334260D02* 181 | X-2579520Y-4334260D01* 182 | X-2414520Y-2899260D02* 183 | X-2414520Y-2969260D01* 184 | X-2449520Y-2934260D02* 185 | X-2379520Y-2934260D01* 186 | X-2414520Y-4299260D02* 187 | X-2414520Y-4369260D01* 188 | X-2449520Y-4334260D02* 189 | X-2379520Y-4334260D01* 190 | X-1869270Y-410310D02* 191 | X-1869270Y-480310D01* 192 | X-1904270Y-445310D02* 193 | X-1834270Y-445310D01* 194 | X-1869270Y-610310D02* 195 | X-1869270Y-680310D01* 196 | X-1904270Y-645310D02* 197 | X-1834270Y-645310D01* 198 | X-1869270Y-810310D02* 199 | X-1869270Y-880310D01* 200 | X-1904270Y-845310D02* 201 | X-1834270Y-845310D01* 202 | X-1869270Y-1010310D02* 203 | X-1869270Y-1080310D01* 204 | X-1904270Y-1045310D02* 205 | X-1834270Y-1045310D01* 206 | X-1869270Y-1210310D02* 207 | X-1869270Y-1280310D01* 208 | X-1904270Y-1245310D02* 209 | X-1834270Y-1245310D01* 210 | X-1869270Y-1410310D02* 211 | X-1869270Y-1480310D01* 212 | X-1904270Y-1445310D02* 213 | X-1834270Y-1445310D01* 214 | X-1869270Y-1610310D02* 215 | X-1869270Y-1680310D01* 216 | X-1904270Y-1645310D02* 217 | X-1834270Y-1645310D01* 218 | X-1869270Y-1810310D02* 219 | X-1869270Y-1880310D01* 220 | X-1904270Y-1845310D02* 221 | X-1834270Y-1845310D01* 222 | D11* 223 | X-4744881Y-5312976D02* 224 | X-4744881Y-5112976D01* 225 | X-4697262Y-5112976D01* 226 | X-4668690Y-5122500D01* 227 | X-4649643Y-5141548D01* 228 | X-4640119Y-5160595D01* 229 | X-4630595Y-5198690D01* 230 | X-4630595Y-5227262D01* 231 | X-4640119Y-5265357D01* 232 | X-4649643Y-5284405D01* 233 | X-4668690Y-5303452D01* 234 | X-4697262Y-5312976D01* 235 | X-4744881Y-5312976D01* 236 | X-4544881Y-5312976D02* 237 | X-4544881Y-5179643D01* 238 | X-4544881Y-5217738D02* 239 | X-4535357Y-5198690D01* 240 | X-4525833Y-5189167D01* 241 | X-4506786Y-5179643D01* 242 | X-4487738Y-5179643D01* 243 | X-4421071Y-5312976D02* 244 | X-4421071Y-5179643D01* 245 | X-4421071Y-5112976D02* 246 | X-4430595Y-5122500D01* 247 | X-4421071Y-5132024D01* 248 | X-4411548Y-5122500D01* 249 | X-4421071Y-5112976D01* 250 | X-4421071Y-5132024D01* 251 | X-4297262Y-5312976D02* 252 | X-4316310Y-5303452D01* 253 | X-4325833Y-5284405D01* 254 | X-4325833Y-5112976D01* 255 | X-4192500Y-5312976D02* 256 | X-4211548Y-5303452D01* 257 | X-4221071Y-5284405D01* 258 | X-4221071Y-5112976D01* 259 | X-3963928Y-5312976D02* 260 | X-3963928Y-5112976D01* 261 | X-3897262Y-5255833D01* 262 | X-3830595Y-5112976D01* 263 | X-3830595Y-5312976D01* 264 | X-3649643Y-5312976D02* 265 | X-3649643Y-5208214D01* 266 | X-3659167Y-5189167D01* 267 | X-3678214Y-5179643D01* 268 | X-3716309Y-5179643D01* 269 | X-3735357Y-5189167D01* 270 | X-3649643Y-5303452D02* 271 | X-3668690Y-5312976D01* 272 | X-3716309Y-5312976D01* 273 | X-3735357Y-5303452D01* 274 | X-3744881Y-5284405D01* 275 | X-3744881Y-5265357D01* 276 | X-3735357Y-5246310D01* 277 | X-3716309Y-5236786D01* 278 | X-3668690Y-5236786D01* 279 | X-3649643Y-5227262D01* 280 | X-3554405Y-5179643D02* 281 | X-3554405Y-5379643D01* 282 | X-3554405Y-5189167D02* 283 | X-3535357Y-5179643D01* 284 | X-3497262Y-5179643D01* 285 | X-3478214Y-5189167D01* 286 | X-3468690Y-5198690D01* 287 | X-3459167Y-5217738D01* 288 | X-3459167Y-5274881D01* 289 | X-3468690Y-5293929D01* 290 | X-3478214Y-5303452D01* 291 | X-3497262Y-5312976D01* 292 | X-3535357Y-5312976D01* 293 | X-3554405Y-5303452D01* 294 | X-3373452Y-5293929D02* 295 | X-3363928Y-5303452D01* 296 | X-3373452Y-5312976D01* 297 | X-3382976Y-5303452D01* 298 | X-3373452Y-5293929D01* 299 | X-3373452Y-5312976D01* 300 | X-3373452Y-5189167D02* 301 | X-3363928Y-5198690D01* 302 | X-3373452Y-5208214D01* 303 | X-3382976Y-5198690D01* 304 | X-3373452Y-5189167D01* 305 | X-3373452Y-5208214D01* 306 | D12* 307 | X-5032980Y-5627260D02* 308 | X-5002500Y-5657740D01* 309 | X-5002500Y-5627260D02* 310 | X-5032980Y-5657740D01* 311 | D11* 312 | X-4706786Y-5532976D02* 313 | X-4687738Y-5532976D01* 314 | X-4668690Y-5542500D01* 315 | X-4659167Y-5552024D01* 316 | X-4649643Y-5571071D01* 317 | X-4640119Y-5609167D01* 318 | X-4640119Y-5656786D01* 319 | X-4649643Y-5694881D01* 320 | X-4659167Y-5713928D01* 321 | X-4668690Y-5723452D01* 322 | X-4687738Y-5732976D01* 323 | X-4706786Y-5732976D01* 324 | X-4725833Y-5723452D01* 325 | X-4735357Y-5713928D01* 326 | X-4744881Y-5694881D01* 327 | X-4754405Y-5656786D01* 328 | X-4754405Y-5609167D01* 329 | X-4744881Y-5571071D01* 330 | X-4735357Y-5552024D01* 331 | X-4725833Y-5542500D01* 332 | X-4706786Y-5532976D01* 333 | X-4554405Y-5713928D02* 334 | X-4544881Y-5723452D01* 335 | X-4554405Y-5732976D01* 336 | X-4563929Y-5723452D01* 337 | X-4554405Y-5713928D01* 338 | X-4554405Y-5732976D01* 339 | X-4478214Y-5532976D02* 340 | X-4354405Y-5532976D01* 341 | X-4421071Y-5609167D01* 342 | X-4392500Y-5609167D01* 343 | X-4373452Y-5618690D01* 344 | X-4363929Y-5628214D01* 345 | X-4354405Y-5647262D01* 346 | X-4354405Y-5694881D01* 347 | X-4363929Y-5713928D01* 348 | X-4373452Y-5723452D01* 349 | X-4392500Y-5732976D01* 350 | X-4449643Y-5732976D01* 351 | X-4468690Y-5723452D01* 352 | X-4478214Y-5713928D01* 353 | X-4230595Y-5532976D02* 354 | X-4211548Y-5532976D01* 355 | X-4192500Y-5542500D01* 356 | X-4182976Y-5552024D01* 357 | X-4173452Y-5571071D01* 358 | X-4163928Y-5609167D01* 359 | X-4163928Y-5656786D01* 360 | X-4173452Y-5694881D01* 361 | X-4182976Y-5713928D01* 362 | X-4192500Y-5723452D01* 363 | X-4211548Y-5732976D01* 364 | X-4230595Y-5732976D01* 365 | X-4249643Y-5723452D01* 366 | X-4259167Y-5713928D01* 367 | X-4268690Y-5694881D01* 368 | X-4278214Y-5656786D01* 369 | X-4278214Y-5609167D01* 370 | X-4268690Y-5571071D01* 371 | X-4259167Y-5552024D01* 372 | X-4249643Y-5542500D01* 373 | X-4230595Y-5532976D01* 374 | X-3982976Y-5532976D02* 375 | X-4078214Y-5532976D01* 376 | X-4087738Y-5628214D01* 377 | X-4078214Y-5618690D01* 378 | X-4059167Y-5609167D01* 379 | X-4011548Y-5609167D01* 380 | X-3992500Y-5618690D01* 381 | X-3982976Y-5628214D01* 382 | X-3973452Y-5647262D01* 383 | X-3973452Y-5694881D01* 384 | X-3982976Y-5713928D01* 385 | X-3992500Y-5723452D01* 386 | X-4011548Y-5732976D01* 387 | X-4059167Y-5732976D01* 388 | X-4078214Y-5723452D01* 389 | X-4087738Y-5713928D01* 390 | X-3887738Y-5732976D02* 391 | X-3887738Y-5599643D01* 392 | X-3887738Y-5618690D02* 393 | X-3878214Y-5609167D01* 394 | X-3859167Y-5599643D01* 395 | X-3830595Y-5599643D01* 396 | X-3811548Y-5609167D01* 397 | X-3802024Y-5628214D01* 398 | X-3802024Y-5732976D01* 399 | X-3802024Y-5628214D02* 400 | X-3792500Y-5609167D01* 401 | X-3773452Y-5599643D01* 402 | X-3744881Y-5599643D01* 403 | X-3725833Y-5609167D01* 404 | X-3716309Y-5628214D01* 405 | X-3716309Y-5732976D01* 406 | X-3621071Y-5732976D02* 407 | X-3621071Y-5599643D01* 408 | X-3621071Y-5618690D02* 409 | X-3611548Y-5609167D01* 410 | X-3592500Y-5599643D01* 411 | X-3563928Y-5599643D01* 412 | X-3544881Y-5609167D01* 413 | X-3535357Y-5628214D01* 414 | X-3535357Y-5732976D01* 415 | X-3535357Y-5628214D02* 416 | X-3525833Y-5609167D01* 417 | X-3506786Y-5599643D01* 418 | X-3478214Y-5599643D01* 419 | X-3459167Y-5609167D01* 420 | X-3449643Y-5628214D01* 421 | X-3449643Y-5732976D01* 422 | X-3059167Y-5523452D02* 423 | X-3230595Y-5780595D01* 424 | X-2802024Y-5532976D02* 425 | X-2782976Y-5532976D01* 426 | X-2763929Y-5542500D01* 427 | X-2754405Y-5552024D01* 428 | X-2744881Y-5571071D01* 429 | X-2735357Y-5609167D01* 430 | X-2735357Y-5656786D01* 431 | X-2744881Y-5694881D01* 432 | X-2754405Y-5713928D01* 433 | X-2763929Y-5723452D01* 434 | X-2782976Y-5732976D01* 435 | X-2802024Y-5732976D01* 436 | X-2821071Y-5723452D01* 437 | X-2830595Y-5713928D01* 438 | X-2840119Y-5694881D01* 439 | X-2849643Y-5656786D01* 440 | X-2849643Y-5609167D01* 441 | X-2840119Y-5571071D01* 442 | X-2830595Y-5552024D01* 443 | X-2821071Y-5542500D01* 444 | X-2802024Y-5532976D01* 445 | X-2649643Y-5713928D02* 446 | X-2640119Y-5723452D01* 447 | X-2649643Y-5732976D01* 448 | X-2659167Y-5723452D01* 449 | X-2649643Y-5713928D01* 450 | X-2649643Y-5732976D01* 451 | X-2516310Y-5532976D02* 452 | X-2497262Y-5532976D01* 453 | X-2478214Y-5542500D01* 454 | X-2468690Y-5552024D01* 455 | X-2459167Y-5571071D01* 456 | X-2449643Y-5609167D01* 457 | X-2449643Y-5656786D01* 458 | X-2459167Y-5694881D01* 459 | X-2468690Y-5713928D01* 460 | X-2478214Y-5723452D01* 461 | X-2497262Y-5732976D01* 462 | X-2516310Y-5732976D01* 463 | X-2535357Y-5723452D01* 464 | X-2544881Y-5713928D01* 465 | X-2554405Y-5694881D01* 466 | X-2563929Y-5656786D01* 467 | X-2563929Y-5609167D01* 468 | X-2554405Y-5571071D01* 469 | X-2544881Y-5552024D01* 470 | X-2535357Y-5542500D01* 471 | X-2516310Y-5532976D01* 472 | X-2259167Y-5732976D02* 473 | X-2373452Y-5732976D01* 474 | X-2316310Y-5732976D02* 475 | X-2316310Y-5532976D01* 476 | X-2335357Y-5561548D01* 477 | X-2354405Y-5580595D01* 478 | X-2373452Y-5590119D01* 479 | X-2182976Y-5552024D02* 480 | X-2173452Y-5542500D01* 481 | X-2154405Y-5532976D01* 482 | X-2106786Y-5532976D01* 483 | X-2087738Y-5542500D01* 484 | X-2078214Y-5552024D01* 485 | X-2068690Y-5571071D01* 486 | X-2068690Y-5590119D01* 487 | X-2078214Y-5618690D01* 488 | X-2192500Y-5732976D01* 489 | X-2068690Y-5732976D01* 490 | X-1944881Y-5532976D02* 491 | X-1925833Y-5532976D01* 492 | X-1906786Y-5542500D01* 493 | X-1897262Y-5552024D01* 494 | X-1887738Y-5571071D01* 495 | X-1878214Y-5609167D01* 496 | X-1878214Y-5656786D01* 497 | X-1887738Y-5694881D01* 498 | X-1897262Y-5713928D01* 499 | X-1906786Y-5723452D01* 500 | X-1925833Y-5732976D01* 501 | X-1944881Y-5732976D01* 502 | X-1963928Y-5723452D01* 503 | X-1973452Y-5713928D01* 504 | X-1982976Y-5694881D01* 505 | X-1992500Y-5656786D01* 506 | X-1992500Y-5609167D01* 507 | X-1982976Y-5571071D01* 508 | X-1973452Y-5552024D01* 509 | X-1963928Y-5542500D01* 510 | X-1944881Y-5532976D01* 511 | X-1802024Y-5532976D02* 512 | X-1802024Y-5571071D01* 513 | X-1725833Y-5532976D02* 514 | X-1725833Y-5571071D01* 515 | X-1430595Y-5809167D02* 516 | X-1440119Y-5799643D01* 517 | X-1459167Y-5771071D01* 518 | X-1468690Y-5752024D01* 519 | X-1478214Y-5723452D01* 520 | X-1487738Y-5675833D01* 521 | X-1487738Y-5637738D01* 522 | X-1478214Y-5590119D01* 523 | X-1468690Y-5561548D01* 524 | X-1459167Y-5542500D01* 525 | X-1440119Y-5513929D01* 526 | X-1430595Y-5504405D01* 527 | X-1259167Y-5532976D02* 528 | X-1354405Y-5532976D01* 529 | X-1363929Y-5628214D01* 530 | X-1354405Y-5618690D01* 531 | X-1335357Y-5609167D01* 532 | X-1287738Y-5609167D01* 533 | X-1268690Y-5618690D01* 534 | X-1259167Y-5628214D01* 535 | X-1249643Y-5647262D01* 536 | X-1249643Y-5694881D01* 537 | X-1259167Y-5713928D01* 538 | X-1268690Y-5723452D01* 539 | X-1287738Y-5732976D01* 540 | X-1335357Y-5732976D01* 541 | X-1354405Y-5723452D01* 542 | X-1363929Y-5713928D01* 543 | X-1011548Y-5732976D02* 544 | X-1011548Y-5532976D01* 545 | X-925833Y-5732976D02* 546 | X-925833Y-5628214D01* 547 | X-935357Y-5609167D01* 548 | X-954405Y-5599643D01* 549 | X-982976Y-5599643D01* 550 | X-1002024Y-5609167D01* 551 | X-1011548Y-5618690D01* 552 | X-802024Y-5732976D02* 553 | X-821071Y-5723452D01* 554 | X-830595Y-5713928D01* 555 | X-840119Y-5694881D01* 556 | X-840119Y-5637738D01* 557 | X-830595Y-5618690D01* 558 | X-821071Y-5609167D01* 559 | X-802024Y-5599643D01* 560 | X-773452Y-5599643D01* 561 | X-754405Y-5609167D01* 562 | X-744881Y-5618690D01* 563 | X-735357Y-5637738D01* 564 | X-735357Y-5694881D01* 565 | X-744881Y-5713928D01* 566 | X-754405Y-5723452D01* 567 | X-773452Y-5732976D01* 568 | X-802024Y-5732976D01* 569 | X-621071Y-5732976D02* 570 | X-640119Y-5723452D01* 571 | X-649643Y-5704405D01* 572 | X-649643Y-5532976D01* 573 | X-468690Y-5723452D02* 574 | X-487738Y-5732976D01* 575 | X-525833Y-5732976D01* 576 | X-544881Y-5723452D01* 577 | X-554405Y-5704405D01* 578 | X-554405Y-5628214D01* 579 | X-544881Y-5609167D01* 580 | X-525833Y-5599643D01* 581 | X-487738Y-5599643D01* 582 | X-468690Y-5609167D01* 583 | X-459167Y-5628214D01* 584 | X-459167Y-5647262D01* 585 | X-554405Y-5666309D01* 586 | X-382976Y-5723452D02* 587 | X-363928Y-5732976D01* 588 | X-325833Y-5732976D01* 589 | X-306786Y-5723452D01* 590 | X-297262Y-5704405D01* 591 | X-297262Y-5694881D01* 592 | X-306786Y-5675833D01* 593 | X-325833Y-5666309D01* 594 | X-354405Y-5666309D01* 595 | X-373452Y-5656786D01* 596 | X-382976Y-5637738D01* 597 | X-382976Y-5628214D01* 598 | X-373452Y-5609167D01* 599 | X-354405Y-5599643D01* 600 | X-325833Y-5599643D01* 601 | X-306786Y-5609167D01* 602 | X-230595Y-5809167D02* 603 | X-221071Y-5799643D01* 604 | X-202024Y-5771071D01* 605 | X-192500Y-5752024D01* 606 | X-182976Y-5723452D01* 607 | X-173452Y-5675833D01* 608 | X-173452Y-5637738D01* 609 | X-182976Y-5590119D01* 610 | X-192500Y-5561548D01* 611 | X-202024Y-5542500D01* 612 | X-221071Y-5513929D01* 613 | X-230595Y-5504405D01* 614 | D13* 615 | X-5002500Y-5906500D02* 616 | G75* 617 | G03* 618 | X-5002500Y-5906500I-20000J0D01* 619 | G01* 620 | D11* 621 | X-4706786Y-5796976D02* 622 | X-4687738Y-5796976D01* 623 | X-4668690Y-5806500D01* 624 | X-4659167Y-5816024D01* 625 | X-4649643Y-5835071D01* 626 | X-4640119Y-5873167D01* 627 | X-4640119Y-5920786D01* 628 | X-4649643Y-5958881D01* 629 | X-4659167Y-5977928D01* 630 | X-4668690Y-5987452D01* 631 | X-4687738Y-5996976D01* 632 | X-4706786Y-5996976D01* 633 | X-4725833Y-5987452D01* 634 | X-4735357Y-5977928D01* 635 | X-4744881Y-5958881D01* 636 | X-4754405Y-5920786D01* 637 | X-4754405Y-5873167D01* 638 | X-4744881Y-5835071D01* 639 | X-4735357Y-5816024D01* 640 | X-4725833Y-5806500D01* 641 | X-4706786Y-5796976D01* 642 | X-4554405Y-5977928D02* 643 | X-4544881Y-5987452D01* 644 | X-4554405Y-5996976D01* 645 | X-4563929Y-5987452D01* 646 | X-4554405Y-5977928D01* 647 | X-4554405Y-5996976D01* 648 | X-4373452Y-5863643D02* 649 | X-4373452Y-5996976D01* 650 | X-4421071Y-5787452D02* 651 | X-4468690Y-5930309D01* 652 | X-4344881Y-5930309D01* 653 | X-4230595Y-5796976D02* 654 | X-4211548Y-5796976D01* 655 | X-4192500Y-5806500D01* 656 | X-4182976Y-5816024D01* 657 | X-4173452Y-5835071D01* 658 | X-4163928Y-5873167D01* 659 | X-4163928Y-5920786D01* 660 | X-4173452Y-5958881D01* 661 | X-4182976Y-5977928D01* 662 | X-4192500Y-5987452D01* 663 | X-4211548Y-5996976D01* 664 | X-4230595Y-5996976D01* 665 | X-4249643Y-5987452D01* 666 | X-4259167Y-5977928D01* 667 | X-4268690Y-5958881D01* 668 | X-4278214Y-5920786D01* 669 | X-4278214Y-5873167D01* 670 | X-4268690Y-5835071D01* 671 | X-4259167Y-5816024D01* 672 | X-4249643Y-5806500D01* 673 | X-4230595Y-5796976D01* 674 | X-4040119Y-5796976D02* 675 | X-4021071Y-5796976D01* 676 | X-4002024Y-5806500D01* 677 | X-3992500Y-5816024D01* 678 | X-3982976Y-5835071D01* 679 | X-3973452Y-5873167D01* 680 | X-3973452Y-5920786D01* 681 | X-3982976Y-5958881D01* 682 | X-3992500Y-5977928D01* 683 | X-4002024Y-5987452D01* 684 | X-4021071Y-5996976D01* 685 | X-4040119Y-5996976D01* 686 | X-4059167Y-5987452D01* 687 | X-4068690Y-5977928D01* 688 | X-4078214Y-5958881D01* 689 | X-4087738Y-5920786D01* 690 | X-4087738Y-5873167D01* 691 | X-4078214Y-5835071D01* 692 | X-4068690Y-5816024D01* 693 | X-4059167Y-5806500D01* 694 | X-4040119Y-5796976D01* 695 | X-3887738Y-5996976D02* 696 | X-3887738Y-5863643D01* 697 | X-3887738Y-5882690D02* 698 | X-3878214Y-5873167D01* 699 | X-3859167Y-5863643D01* 700 | X-3830595Y-5863643D01* 701 | X-3811548Y-5873167D01* 702 | X-3802024Y-5892214D01* 703 | X-3802024Y-5996976D01* 704 | X-3802024Y-5892214D02* 705 | X-3792500Y-5873167D01* 706 | X-3773452Y-5863643D01* 707 | X-3744881Y-5863643D01* 708 | X-3725833Y-5873167D01* 709 | X-3716309Y-5892214D01* 710 | X-3716309Y-5996976D01* 711 | X-3621071Y-5996976D02* 712 | X-3621071Y-5863643D01* 713 | X-3621071Y-5882690D02* 714 | X-3611548Y-5873167D01* 715 | X-3592500Y-5863643D01* 716 | X-3563928Y-5863643D01* 717 | X-3544881Y-5873167D01* 718 | X-3535357Y-5892214D01* 719 | X-3535357Y-5996976D01* 720 | X-3535357Y-5892214D02* 721 | X-3525833Y-5873167D01* 722 | X-3506786Y-5863643D01* 723 | X-3478214Y-5863643D01* 724 | X-3459167Y-5873167D01* 725 | X-3449643Y-5892214D01* 726 | X-3449643Y-5996976D01* 727 | X-3059167Y-5787452D02* 728 | X-3230595Y-6044595D01* 729 | X-2802024Y-5796976D02* 730 | X-2782976Y-5796976D01* 731 | X-2763929Y-5806500D01* 732 | X-2754405Y-5816024D01* 733 | X-2744881Y-5835071D01* 734 | X-2735357Y-5873167D01* 735 | X-2735357Y-5920786D01* 736 | X-2744881Y-5958881D01* 737 | X-2754405Y-5977928D01* 738 | X-2763929Y-5987452D01* 739 | X-2782976Y-5996976D01* 740 | X-2802024Y-5996976D01* 741 | X-2821071Y-5987452D01* 742 | X-2830595Y-5977928D01* 743 | X-2840119Y-5958881D01* 744 | X-2849643Y-5920786D01* 745 | X-2849643Y-5873167D01* 746 | X-2840119Y-5835071D01* 747 | X-2830595Y-5816024D01* 748 | X-2821071Y-5806500D01* 749 | X-2802024Y-5796976D01* 750 | X-2649643Y-5977928D02* 751 | X-2640119Y-5987452D01* 752 | X-2649643Y-5996976D01* 753 | X-2659167Y-5987452D01* 754 | X-2649643Y-5977928D01* 755 | X-2649643Y-5996976D01* 756 | X-2516310Y-5796976D02* 757 | X-2497262Y-5796976D01* 758 | X-2478214Y-5806500D01* 759 | X-2468690Y-5816024D01* 760 | X-2459167Y-5835071D01* 761 | X-2449643Y-5873167D01* 762 | X-2449643Y-5920786D01* 763 | X-2459167Y-5958881D01* 764 | X-2468690Y-5977928D01* 765 | X-2478214Y-5987452D01* 766 | X-2497262Y-5996976D01* 767 | X-2516310Y-5996976D01* 768 | X-2535357Y-5987452D01* 769 | X-2544881Y-5977928D01* 770 | X-2554405Y-5958881D01* 771 | X-2563929Y-5920786D01* 772 | X-2563929Y-5873167D01* 773 | X-2554405Y-5835071D01* 774 | X-2544881Y-5816024D01* 775 | X-2535357Y-5806500D01* 776 | X-2516310Y-5796976D01* 777 | X-2259167Y-5996976D02* 778 | X-2373452Y-5996976D01* 779 | X-2316310Y-5996976D02* 780 | X-2316310Y-5796976D01* 781 | X-2335357Y-5825548D01* 782 | X-2354405Y-5844595D01* 783 | X-2373452Y-5854119D01* 784 | X-2078214Y-5796976D02* 785 | X-2173452Y-5796976D01* 786 | X-2182976Y-5892214D01* 787 | X-2173452Y-5882690D01* 788 | X-2154405Y-5873167D01* 789 | X-2106786Y-5873167D01* 790 | X-2087738Y-5882690D01* 791 | X-2078214Y-5892214D01* 792 | X-2068690Y-5911262D01* 793 | X-2068690Y-5958881D01* 794 | X-2078214Y-5977928D01* 795 | X-2087738Y-5987452D01* 796 | X-2106786Y-5996976D01* 797 | X-2154405Y-5996976D01* 798 | X-2173452Y-5987452D01* 799 | X-2182976Y-5977928D01* 800 | X-2002024Y-5796976D02* 801 | X-1868690Y-5796976D01* 802 | X-1954405Y-5996976D01* 803 | X-1802024Y-5796976D02* 804 | X-1802024Y-5835071D01* 805 | X-1725833Y-5796976D02* 806 | X-1725833Y-5835071D01* 807 | X-1430595Y-6073167D02* 808 | X-1440119Y-6063643D01* 809 | X-1459167Y-6035071D01* 810 | X-1468690Y-6016024D01* 811 | X-1478214Y-5987452D01* 812 | X-1487738Y-5939833D01* 813 | X-1487738Y-5901738D01* 814 | X-1478214Y-5854119D01* 815 | X-1468690Y-5825548D01* 816 | X-1459167Y-5806500D01* 817 | X-1440119Y-5777928D01* 818 | X-1430595Y-5768405D01* 819 | X-1259167Y-5796976D02* 820 | X-1354405Y-5796976D01* 821 | X-1363929Y-5892214D01* 822 | X-1354405Y-5882690D01* 823 | X-1335357Y-5873167D01* 824 | X-1287738Y-5873167D01* 825 | X-1268690Y-5882690D01* 826 | X-1259167Y-5892214D01* 827 | X-1249643Y-5911262D01* 828 | X-1249643Y-5958881D01* 829 | X-1259167Y-5977928D01* 830 | X-1268690Y-5987452D01* 831 | X-1287738Y-5996976D01* 832 | X-1335357Y-5996976D01* 833 | X-1354405Y-5987452D01* 834 | X-1363929Y-5977928D01* 835 | X-1011548Y-5996976D02* 836 | X-1011548Y-5796976D01* 837 | X-925833Y-5996976D02* 838 | X-925833Y-5892214D01* 839 | X-935357Y-5873167D01* 840 | X-954405Y-5863643D01* 841 | X-982976Y-5863643D01* 842 | X-1002024Y-5873167D01* 843 | X-1011548Y-5882690D01* 844 | X-802024Y-5996976D02* 845 | X-821071Y-5987452D01* 846 | X-830595Y-5977928D01* 847 | X-840119Y-5958881D01* 848 | X-840119Y-5901738D01* 849 | X-830595Y-5882690D01* 850 | X-821071Y-5873167D01* 851 | X-802024Y-5863643D01* 852 | X-773452Y-5863643D01* 853 | X-754405Y-5873167D01* 854 | X-744881Y-5882690D01* 855 | X-735357Y-5901738D01* 856 | X-735357Y-5958881D01* 857 | X-744881Y-5977928D01* 858 | X-754405Y-5987452D01* 859 | X-773452Y-5996976D01* 860 | X-802024Y-5996976D01* 861 | X-621071Y-5996976D02* 862 | X-640119Y-5987452D01* 863 | X-649643Y-5968405D01* 864 | X-649643Y-5796976D01* 865 | X-468690Y-5987452D02* 866 | X-487738Y-5996976D01* 867 | X-525833Y-5996976D01* 868 | X-544881Y-5987452D01* 869 | X-554405Y-5968405D01* 870 | X-554405Y-5892214D01* 871 | X-544881Y-5873167D01* 872 | X-525833Y-5863643D01* 873 | X-487738Y-5863643D01* 874 | X-468690Y-5873167D01* 875 | X-459167Y-5892214D01* 876 | X-459167Y-5911262D01* 877 | X-554405Y-5930309D01* 878 | X-382976Y-5987452D02* 879 | X-363928Y-5996976D01* 880 | X-325833Y-5996976D01* 881 | X-306786Y-5987452D01* 882 | X-297262Y-5968405D01* 883 | X-297262Y-5958881D01* 884 | X-306786Y-5939833D01* 885 | X-325833Y-5930309D01* 886 | X-354405Y-5930309D01* 887 | X-373452Y-5920786D01* 888 | X-382976Y-5901738D01* 889 | X-382976Y-5892214D01* 890 | X-373452Y-5873167D01* 891 | X-354405Y-5863643D01* 892 | X-325833Y-5863643D01* 893 | X-306786Y-5873167D01* 894 | X-230595Y-6073167D02* 895 | X-221071Y-6063643D01* 896 | X-202024Y-6035071D01* 897 | X-192500Y-6016024D01* 898 | X-182976Y-5987452D01* 899 | X-173452Y-5939833D01* 900 | X-173452Y-5901738D01* 901 | X-182976Y-5854119D01* 902 | X-192500Y-5825548D01* 903 | X-202024Y-5806500D01* 904 | X-221071Y-5777928D01* 905 | X-230595Y-5768405D01* 906 | D14* 907 | X-5037500Y-6135500D02* 908 | X-5037500Y-6205500D01* 909 | X-5072500Y-6170500D02* 910 | X-5002500Y-6170500D01* 911 | D11* 912 | X-4706786Y-6060976D02* 913 | X-4687738Y-6060976D01* 914 | X-4668690Y-6070500D01* 915 | X-4659167Y-6080024D01* 916 | X-4649643Y-6099071D01* 917 | X-4640119Y-6137167D01* 918 | X-4640119Y-6184786D01* 919 | X-4649643Y-6222881D01* 920 | X-4659167Y-6241928D01* 921 | X-4668690Y-6251452D01* 922 | X-4687738Y-6260976D01* 923 | X-4706786Y-6260976D01* 924 | X-4725833Y-6251452D01* 925 | X-4735357Y-6241928D01* 926 | X-4744881Y-6222881D01* 927 | X-4754405Y-6184786D01* 928 | X-4754405Y-6137167D01* 929 | X-4744881Y-6099071D01* 930 | X-4735357Y-6080024D01* 931 | X-4725833Y-6070500D01* 932 | X-4706786Y-6060976D01* 933 | X-4554405Y-6241928D02* 934 | X-4544881Y-6251452D01* 935 | X-4554405Y-6260976D01* 936 | X-4563929Y-6251452D01* 937 | X-4554405Y-6241928D01* 938 | X-4554405Y-6260976D01* 939 | X-4478214Y-6060976D02* 940 | X-4344881Y-6060976D01* 941 | X-4430595Y-6260976D01* 942 | X-4230595Y-6060976D02* 943 | X-4211548Y-6060976D01* 944 | X-4192500Y-6070500D01* 945 | X-4182976Y-6080024D01* 946 | X-4173452Y-6099071D01* 947 | X-4163928Y-6137167D01* 948 | X-4163928Y-6184786D01* 949 | X-4173452Y-6222881D01* 950 | X-4182976Y-6241928D01* 951 | X-4192500Y-6251452D01* 952 | X-4211548Y-6260976D01* 953 | X-4230595Y-6260976D01* 954 | X-4249643Y-6251452D01* 955 | X-4259167Y-6241928D01* 956 | X-4268690Y-6222881D01* 957 | X-4278214Y-6184786D01* 958 | X-4278214Y-6137167D01* 959 | X-4268690Y-6099071D01* 960 | X-4259167Y-6080024D01* 961 | X-4249643Y-6070500D01* 962 | X-4230595Y-6060976D01* 963 | X-4040119Y-6060976D02* 964 | X-4021071Y-6060976D01* 965 | X-4002024Y-6070500D01* 966 | X-3992500Y-6080024D01* 967 | X-3982976Y-6099071D01* 968 | X-3973452Y-6137167D01* 969 | X-3973452Y-6184786D01* 970 | X-3982976Y-6222881D01* 971 | X-3992500Y-6241928D01* 972 | X-4002024Y-6251452D01* 973 | X-4021071Y-6260976D01* 974 | X-4040119Y-6260976D01* 975 | X-4059167Y-6251452D01* 976 | X-4068690Y-6241928D01* 977 | X-4078214Y-6222881D01* 978 | X-4087738Y-6184786D01* 979 | X-4087738Y-6137167D01* 980 | X-4078214Y-6099071D01* 981 | X-4068690Y-6080024D01* 982 | X-4059167Y-6070500D01* 983 | X-4040119Y-6060976D01* 984 | X-3887738Y-6260976D02* 985 | X-3887738Y-6127643D01* 986 | X-3887738Y-6146690D02* 987 | X-3878214Y-6137167D01* 988 | X-3859167Y-6127643D01* 989 | X-3830595Y-6127643D01* 990 | X-3811548Y-6137167D01* 991 | X-3802024Y-6156214D01* 992 | X-3802024Y-6260976D01* 993 | X-3802024Y-6156214D02* 994 | X-3792500Y-6137167D01* 995 | X-3773452Y-6127643D01* 996 | X-3744881Y-6127643D01* 997 | X-3725833Y-6137167D01* 998 | X-3716309Y-6156214D01* 999 | X-3716309Y-6260976D01* 1000 | X-3621071Y-6260976D02* 1001 | X-3621071Y-6127643D01* 1002 | X-3621071Y-6146690D02* 1003 | X-3611548Y-6137167D01* 1004 | X-3592500Y-6127643D01* 1005 | X-3563928Y-6127643D01* 1006 | X-3544881Y-6137167D01* 1007 | X-3535357Y-6156214D01* 1008 | X-3535357Y-6260976D01* 1009 | X-3535357Y-6156214D02* 1010 | X-3525833Y-6137167D01* 1011 | X-3506786Y-6127643D01* 1012 | X-3478214Y-6127643D01* 1013 | X-3459167Y-6137167D01* 1014 | X-3449643Y-6156214D01* 1015 | X-3449643Y-6260976D01* 1016 | X-3059167Y-6051452D02* 1017 | X-3230595Y-6308595D01* 1018 | X-2802024Y-6060976D02* 1019 | X-2782976Y-6060976D01* 1020 | X-2763929Y-6070500D01* 1021 | X-2754405Y-6080024D01* 1022 | X-2744881Y-6099071D01* 1023 | X-2735357Y-6137167D01* 1024 | X-2735357Y-6184786D01* 1025 | X-2744881Y-6222881D01* 1026 | X-2754405Y-6241928D01* 1027 | X-2763929Y-6251452D01* 1028 | X-2782976Y-6260976D01* 1029 | X-2802024Y-6260976D01* 1030 | X-2821071Y-6251452D01* 1031 | X-2830595Y-6241928D01* 1032 | X-2840119Y-6222881D01* 1033 | X-2849643Y-6184786D01* 1034 | X-2849643Y-6137167D01* 1035 | X-2840119Y-6099071D01* 1036 | X-2830595Y-6080024D01* 1037 | X-2821071Y-6070500D01* 1038 | X-2802024Y-6060976D01* 1039 | X-2649643Y-6241928D02* 1040 | X-2640119Y-6251452D01* 1041 | X-2649643Y-6260976D01* 1042 | X-2659167Y-6251452D01* 1043 | X-2649643Y-6241928D01* 1044 | X-2649643Y-6260976D01* 1045 | X-2516310Y-6060976D02* 1046 | X-2497262Y-6060976D01* 1047 | X-2478214Y-6070500D01* 1048 | X-2468690Y-6080024D01* 1049 | X-2459167Y-6099071D01* 1050 | X-2449643Y-6137167D01* 1051 | X-2449643Y-6184786D01* 1052 | X-2459167Y-6222881D01* 1053 | X-2468690Y-6241928D01* 1054 | X-2478214Y-6251452D01* 1055 | X-2497262Y-6260976D01* 1056 | X-2516310Y-6260976D01* 1057 | X-2535357Y-6251452D01* 1058 | X-2544881Y-6241928D01* 1059 | X-2554405Y-6222881D01* 1060 | X-2563929Y-6184786D01* 1061 | X-2563929Y-6137167D01* 1062 | X-2554405Y-6099071D01* 1063 | X-2544881Y-6080024D01* 1064 | X-2535357Y-6070500D01* 1065 | X-2516310Y-6060976D01* 1066 | X-2373452Y-6080024D02* 1067 | X-2363929Y-6070500D01* 1068 | X-2344881Y-6060976D01* 1069 | X-2297262Y-6060976D01* 1070 | X-2278214Y-6070500D01* 1071 | X-2268690Y-6080024D01* 1072 | X-2259167Y-6099071D01* 1073 | X-2259167Y-6118119D01* 1074 | X-2268690Y-6146690D01* 1075 | X-2382976Y-6260976D01* 1076 | X-2259167Y-6260976D01* 1077 | X-2192500Y-6060976D02* 1078 | X-2059167Y-6060976D01* 1079 | X-2144881Y-6260976D01* 1080 | X-1897262Y-6060976D02* 1081 | X-1935357Y-6060976D01* 1082 | X-1954405Y-6070500D01* 1083 | X-1963928Y-6080024D01* 1084 | X-1982976Y-6108595D01* 1085 | X-1992500Y-6146690D01* 1086 | X-1992500Y-6222881D01* 1087 | X-1982976Y-6241928D01* 1088 | X-1973452Y-6251452D01* 1089 | X-1954405Y-6260976D01* 1090 | X-1916309Y-6260976D01* 1091 | X-1897262Y-6251452D01* 1092 | X-1887738Y-6241928D01* 1093 | X-1878214Y-6222881D01* 1094 | X-1878214Y-6175262D01* 1095 | X-1887738Y-6156214D01* 1096 | X-1897262Y-6146690D01* 1097 | X-1916309Y-6137167D01* 1098 | X-1954405Y-6137167D01* 1099 | X-1973452Y-6146690D01* 1100 | X-1982976Y-6156214D01* 1101 | X-1992500Y-6175262D01* 1102 | X-1802024Y-6060976D02* 1103 | X-1802024Y-6099071D01* 1104 | X-1725833Y-6060976D02* 1105 | X-1725833Y-6099071D01* 1106 | X-1430595Y-6337167D02* 1107 | X-1440119Y-6327643D01* 1108 | X-1459167Y-6299071D01* 1109 | X-1468690Y-6280024D01* 1110 | X-1478214Y-6251452D01* 1111 | X-1487738Y-6203833D01* 1112 | X-1487738Y-6165738D01* 1113 | X-1478214Y-6118119D01* 1114 | X-1468690Y-6089548D01* 1115 | X-1459167Y-6070500D01* 1116 | X-1440119Y-6041928D01* 1117 | X-1430595Y-6032405D01* 1118 | X-1373452Y-6060976D02* 1119 | X-1249643Y-6060976D01* 1120 | X-1316310Y-6137167D01* 1121 | X-1287738Y-6137167D01* 1122 | X-1268690Y-6146690D01* 1123 | X-1259167Y-6156214D01* 1124 | X-1249643Y-6175262D01* 1125 | X-1249643Y-6222881D01* 1126 | X-1259167Y-6241928D01* 1127 | X-1268690Y-6251452D01* 1128 | X-1287738Y-6260976D01* 1129 | X-1344881Y-6260976D01* 1130 | X-1363929Y-6251452D01* 1131 | X-1373452Y-6241928D01* 1132 | X-1173452Y-6080024D02* 1133 | X-1163929Y-6070500D01* 1134 | X-1144881Y-6060976D01* 1135 | X-1097262Y-6060976D01* 1136 | X-1078214Y-6070500D01* 1137 | X-1068690Y-6080024D01* 1138 | X-1059167Y-6099071D01* 1139 | X-1059167Y-6118119D01* 1140 | X-1068690Y-6146690D01* 1141 | X-1182976Y-6260976D01* 1142 | X-1059167Y-6260976D01* 1143 | X-821071Y-6260976D02* 1144 | X-821071Y-6060976D01* 1145 | X-735357Y-6260976D02* 1146 | X-735357Y-6156214D01* 1147 | X-744881Y-6137167D01* 1148 | X-763928Y-6127643D01* 1149 | X-792500Y-6127643D01* 1150 | X-811548Y-6137167D01* 1151 | X-821071Y-6146690D01* 1152 | X-611548Y-6260976D02* 1153 | X-630595Y-6251452D01* 1154 | X-640119Y-6241928D01* 1155 | X-649643Y-6222881D01* 1156 | X-649643Y-6165738D01* 1157 | X-640119Y-6146690D01* 1158 | X-630595Y-6137167D01* 1159 | X-611548Y-6127643D01* 1160 | X-582976Y-6127643D01* 1161 | X-563929Y-6137167D01* 1162 | X-554405Y-6146690D01* 1163 | X-544881Y-6165738D01* 1164 | X-544881Y-6222881D01* 1165 | X-554405Y-6241928D01* 1166 | X-563929Y-6251452D01* 1167 | X-582976Y-6260976D01* 1168 | X-611548Y-6260976D01* 1169 | X-430595Y-6260976D02* 1170 | X-449643Y-6251452D01* 1171 | X-459167Y-6232405D01* 1172 | X-459167Y-6060976D01* 1173 | X-278214Y-6251452D02* 1174 | X-297262Y-6260976D01* 1175 | X-335357Y-6260976D01* 1176 | X-354405Y-6251452D01* 1177 | X-363928Y-6232405D01* 1178 | X-363928Y-6156214D01* 1179 | X-354405Y-6137167D01* 1180 | X-335357Y-6127643D01* 1181 | X-297262Y-6127643D01* 1182 | X-278214Y-6137167D01* 1183 | X-268690Y-6156214D01* 1184 | X-268690Y-6175262D01* 1185 | X-363928Y-6194309D01* 1186 | X-192500Y-6251452D02* 1187 | X-173452Y-6260976D01* 1188 | X-135357Y-6260976D01* 1189 | X-116309Y-6251452D01* 1190 | X-106786Y-6232405D01* 1191 | X-106786Y-6222881D01* 1192 | X-116309Y-6203833D01* 1193 | X-135357Y-6194309D01* 1194 | X-163929Y-6194309D01* 1195 | X-182976Y-6184786D01* 1196 | X-192500Y-6165738D01* 1197 | X-192500Y-6156214D01* 1198 | X-182976Y-6137167D01* 1199 | X-163929Y-6127643D01* 1200 | X-135357Y-6127643D01* 1201 | X-116309Y-6137167D01* 1202 | X-40119Y-6337167D02* 1203 | X-30595Y-6327643D01* 1204 | X-11548Y-6299071D01* 1205 | X-2024Y-6280024D01* 1206 | X7500Y-6251452D01* 1207 | X17024Y-6203833D01* 1208 | X17024Y-6165738D01* 1209 | X7500Y-6118119D01* 1210 | X-2024Y-6089548D01* 1211 | X-11548Y-6070500D01* 1212 | X-30595Y-6041928D01* 1213 | X-40119Y-6032405D01* 1214 | M02* 1215 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-PTH.drl: -------------------------------------------------------------------------------- 1 | M48 2 | ; DRILL file {KiCad (6.0.0-0)} date Sunday, 24 July 2022 at 14:36:43 3 | ; FORMAT={-:-/ absolute / metric / decimal} 4 | ; #@! TF.CreationDate,2022-07-24T14:36:43-07:00 5 | ; #@! TF.GenerationSoftware,Kicad,Pcbnew,(6.0.0-0) 6 | ; #@! TF.FileFunction,Plated,1,2,PTH 7 | FMAT,2 8 | METRIC 9 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 10 | T1C0.305 11 | ; #@! TA.AperFunction,Plated,PTH,ViaDrill 12 | T2C0.400 13 | ; #@! TA.AperFunction,Plated,PTH,ComponentDrill 14 | T3C0.700 15 | % 16 | G90 17 | G05 18 | T1 19 | X-34.106Y-39.834 20 | X-29.978Y-13.164 21 | X-26.924Y-13.614 22 | X-23.946Y-11.259 23 | X-19.818Y-14.116 24 | T2 25 | X-42.062Y-32.766 26 | X-39.116Y-19.964 27 | X-33.153Y-41.535 28 | X-21.184Y-27.33 29 | X-20.879Y-29.007 30 | T3 31 | X-38.145Y-29.343 32 | X-38.145Y-43.343 33 | X-36.145Y-29.343 34 | X-36.145Y-43.343 35 | X-34.145Y-29.343 36 | X-34.145Y-43.343 37 | X-32.693Y-4.453 38 | X-32.693Y-6.453 39 | X-32.693Y-8.453 40 | X-32.693Y-10.453 41 | X-32.693Y-12.453 42 | X-32.693Y-14.453 43 | X-32.693Y-16.453 44 | X-32.693Y-18.453 45 | X-32.145Y-29.343 46 | X-32.145Y-43.343 47 | X-30.145Y-29.343 48 | X-30.145Y-43.343 49 | X-28.145Y-29.343 50 | X-28.145Y-43.343 51 | X-26.145Y-29.343 52 | X-26.145Y-43.343 53 | X-24.145Y-29.343 54 | X-24.145Y-43.343 55 | X-18.693Y-4.453 56 | X-18.693Y-6.453 57 | X-18.693Y-8.453 58 | X-18.693Y-10.453 59 | X-18.693Y-12.453 60 | X-18.693Y-14.453 61 | X-18.693Y-16.453 62 | X-18.693Y-18.453 63 | T0 64 | M30 65 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness-job.gbrjob: -------------------------------------------------------------------------------- 1 | { 2 | "Header": { 3 | "GenerationSoftware": { 4 | "Vendor": "KiCad", 5 | "Application": "Pcbnew", 6 | "Version": "(6.0.0-0)" 7 | }, 8 | "CreationDate": "2022-07-24T14:36:37-07:00" 9 | }, 10 | "GeneralSpecs": { 11 | "ProjectId": { 12 | "Name": "ESP12_Harness", 13 | "GUID": "45535031-325f-4486-9172-6e6573732e6b", 14 | "Revision": "rev?" 15 | }, 16 | "Size": { 17 | "X": 50.05, 18 | "Y": 50.05 19 | }, 20 | "LayerNumber": 2, 21 | "BoardThickness": 1.6, 22 | "Finish": "None" 23 | }, 24 | "DesignRules": [ 25 | { 26 | "Layers": "Outer", 27 | "PadToPad": 0.127, 28 | "PadToTrack": 0.127, 29 | "TrackToTrack": 0.127, 30 | "MinLineWidth": 0.508, 31 | "TrackToRegion": 0.508, 32 | "RegionToRegion": 0.508 33 | } 34 | ], 35 | "FilesAttributes": [ 36 | { 37 | "Path": "ESP12_Harness-F_Cu.gbr", 38 | "FileFunction": "Copper,L1,Top", 39 | "FilePolarity": "Positive" 40 | }, 41 | { 42 | "Path": "ESP12_Harness-B_Cu.gbr", 43 | "FileFunction": "Copper,L2,Bot", 44 | "FilePolarity": "Positive" 45 | }, 46 | { 47 | "Path": "ESP12_Harness-F_Paste.gbr", 48 | "FileFunction": "SolderPaste,Top", 49 | "FilePolarity": "Positive" 50 | }, 51 | { 52 | "Path": "ESP12_Harness-B_Paste.gbr", 53 | "FileFunction": "SolderPaste,Bot", 54 | "FilePolarity": "Positive" 55 | }, 56 | { 57 | "Path": "ESP12_Harness-F_Silkscreen.gbr", 58 | "FileFunction": "Legend,Top", 59 | "FilePolarity": "Positive" 60 | }, 61 | { 62 | "Path": "ESP12_Harness-B_Silkscreen.gbr", 63 | "FileFunction": "Legend,Bot", 64 | "FilePolarity": "Positive" 65 | }, 66 | { 67 | "Path": "ESP12_Harness-F_Mask.gbr", 68 | "FileFunction": "SolderMask,Top", 69 | "FilePolarity": "Negative" 70 | }, 71 | { 72 | "Path": "ESP12_Harness-B_Mask.gbr", 73 | "FileFunction": "SolderMask,Bot", 74 | "FilePolarity": "Negative" 75 | }, 76 | { 77 | "Path": "ESP12_Harness-Edge_Cuts.gbr", 78 | "FileFunction": "Profile", 79 | "FilePolarity": "Positive" 80 | } 81 | ], 82 | "MaterialStackup": [ 83 | { 84 | "Type": "Legend", 85 | "Name": "Top Silk Screen" 86 | }, 87 | { 88 | "Type": "SolderPaste", 89 | "Name": "Top Solder Paste" 90 | }, 91 | { 92 | "Type": "SolderMask", 93 | "Name": "Top Solder Mask" 94 | }, 95 | { 96 | "Type": "Copper", 97 | "Name": "F.Cu" 98 | }, 99 | { 100 | "Type": "Dielectric", 101 | "Material": "FR4", 102 | "Name": "F.Cu/B.Cu", 103 | "Notes": "Type: dielectric layer 1 (from F.Cu to B.Cu)" 104 | }, 105 | { 106 | "Type": "Copper", 107 | "Name": "B.Cu" 108 | }, 109 | { 110 | "Type": "SolderMask", 111 | "Name": "Bottom Solder Mask" 112 | }, 113 | { 114 | "Type": "SolderPaste", 115 | "Name": "Bottom Solder Paste" 116 | }, 117 | { 118 | "Type": "Legend", 119 | "Name": "Bottom Silk Screen" 120 | } 121 | ] 122 | } 123 | -------------------------------------------------------------------------------- /PRODUCTION_FILES/ESP12_Harness.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WingTangWong/ESP8266_Programming_D1_Mini_Pogo_Jig/960a0ee33b916857018689776377a7ac1ad12c54/PRODUCTION_FILES/ESP12_Harness.zip -------------------------------------------------------------------------------- /PRODUCTION_FILES/README.md: -------------------------------------------------------------------------------- 1 | # Gerber and Drill files for the ESP12 board. 2 | 3 | * Generated from KiCAD files 4 | 5 | ![PCB Front](../IMAGES/front.png) 6 | ![PCB Back](../IMAGES/back.png) 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ESP8266 Programming D1 Mini Pogo Jig V2 2 | 3 | This board makes use of a WemosD1Mini (ESP8266 version) board as a USB->SERIAL adapter to flash 4 | ESP-12 modules via POGO pins. 5 | 6 | * [Eagle Files](EAGLE) 7 | * [KiCAD Files](KICAD) 8 | * [Gerber/Drill Production Files](PRODUCTION_FILES) 9 | * [Gerber/Drill Production File ZIP](PRODUCTION_FILES/ESP12_Harness.zip) 10 | 11 | ![Front](IMAGES/transparent_front.png) 12 | ![Back](IMAGES/transparent_back.png) 13 | 14 | # Version 2 - Changelog 15 | 16 | * Imported [Eagle CAD](EAGLE) files into [KiCAD 6.x](KICAD) and did some cleanup: 17 | * Rerouted some paths so that they weren't right on top of each other. 18 | * Fixed an import bug to make sure that the pogo traces show up. 19 | * Fixed the silkscreen on some footprints so that DRC passes without warnings. 20 | * Exported Gerber and Drill files for the Version 2 design from KiCAD: [Production Files](PRODUCTION_FILES) / [Production File ZIP](PRODUCTION_FILES/ESP12_Harness.zip) 21 | 22 | # Original Version 1 - Changelog 23 | 24 | * Originally Designed in [Eagle CAD](EAGLE) 25 | * Circuit works, but traces were pretty close together 26 | * The masking configs don't port to KiCad very well, so creating a version 2 that is done using [KiCAD](KICAD) 27 | * Silkscreens are all over the place. lulz. 28 | 29 | This is a board designed to take a WeMos D1 Mini board(with the ESP module removed) and use it as a USB interface with built-in reset/flash 30 | functionality for bare ESP8266 modules similar to the ESP-12 units. 31 | 32 | The PCB was drawn up in Eagle and I have successfully gotten them manufactured through OshPark. 33 | 34 | They are designed to be used with Pogo pins. I STRONGLY recommend the mushroom head type. 35 | 36 | The D1 Mini board is to be mated to the PCB in a manner similar to ball grid array: add solder to the pads where the ESP module was to give it a bump. 37 | 38 | Rest the board on the PCB within the outline with the bumps facing their matching set of pads and heat from below with a hot air gun. When the solder 39 | melts, the boards will come together. Presuming no bridges, you should be good to go. 40 | 41 | # Gotchas 42 | 43 | * Don't install the pogo pins too far in. Otherwise, you'll never get the ESP module installed. 44 | * Don't get flux or solder onto the pin portion of the pogo pin... this will ruin them. 45 | * Don't use low temp solder paste... tried this route and was a PITA. 46 | * You can solder the pogo pins individually... but I had the best luck with 2 runs of solder paste on the end away from the pin side and placing the pins in place and using hot air to reflow the solder. This works great. 47 | --------------------------------------------------------------------------------