-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresistors_detector.kicad_sch
1891 lines (1840 loc) · 65.4 KB
/
resistors_detector.kicad_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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
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
200
201
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
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
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
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid a87f1f03-83b2-4d95-9dbf-ad9e3bf9f5f8)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x08_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x08_Pin" (at 0 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x08, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x08_Pin_1_1"
(polyline
(pts
(xy 1.27 -10.16)
(xy 0.8636 -10.16)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -7.62)
(xy 0.8636 -7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 7.62)
(xy 0.8636 7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 0.8636 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(pin passive line (at 5.08 7.62 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 5.08 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -7.62 180) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -10.16 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 132.08 20.32) (diameter 0) (color 0 0 0 0)
(uuid 00c28f00-9a6e-4c48-9bc4-224350b92826)
)
(junction (at 116.84 157.48) (diameter 0) (color 0 0 0 0)
(uuid 1e234777-e323-45c0-8fe6-1d99f7d361cb)
)
(junction (at 129.54 87.63) (diameter 0) (color 0 0 0 0)
(uuid 1ec29e4a-2468-4242-98bd-6ad98e55dadb)
)
(junction (at 116.84 20.32) (diameter 0) (color 0 0 0 0)
(uuid 2d3501fb-a7f1-4357-ad2c-9a2154a63989)
)
(junction (at 223.52 86.36) (diameter 0) (color 0 0 0 0)
(uuid 32bfd83e-2c22-44b0-8dd9-394ce9aa0960)
)
(junction (at 129.54 20.32) (diameter 0) (color 0 0 0 0)
(uuid 339a2e5e-cbc8-42a4-a78c-35f7cd30931b)
)
(junction (at 119.38 113.03) (diameter 0) (color 0 0 0 0)
(uuid 3a60dde7-8be9-4783-b8e2-9e27d5f61536)
)
(junction (at 223.52 88.9) (diameter 0) (color 0 0 0 0)
(uuid 3f97a08b-c4bf-4dd3-95b1-5cd2dd787e37)
)
(junction (at 121.92 157.48) (diameter 0) (color 0 0 0 0)
(uuid 460b1c09-4816-439b-b1b0-96024a162db6)
)
(junction (at 223.52 91.44) (diameter 0) (color 0 0 0 0)
(uuid 469a2179-4117-4c2e-98ed-1f64d8bb6d88)
)
(junction (at 46.99 88.9) (diameter 0) (color 0 0 0 0)
(uuid 501cb933-70f6-4530-adf8-ed15ee5724b5)
)
(junction (at 223.52 81.28) (diameter 0) (color 0 0 0 0)
(uuid 56ecca53-c078-4d3b-b7b5-2d0b8c94d407)
)
(junction (at 223.52 78.74) (diameter 0) (color 0 0 0 0)
(uuid 5d6aaf36-c115-463c-bfbb-d2dd4a3c621f)
)
(junction (at 121.92 71.12) (diameter 0) (color 0 0 0 0)
(uuid 632076e7-5d14-4b9e-aa0c-af7e4cac30af)
)
(junction (at 129.54 157.48) (diameter 0) (color 0 0 0 0)
(uuid 752a1386-fe55-4b94-834a-8bd3610c855e)
)
(junction (at 46.99 81.28) (diameter 0) (color 0 0 0 0)
(uuid 75b30844-2250-4c3d-a082-13c614c2773f)
)
(junction (at 46.99 91.44) (diameter 0) (color 0 0 0 0)
(uuid 8091ffc4-e6ea-4871-af20-134f71faed5d)
)
(junction (at 127 20.32) (diameter 0) (color 0 0 0 0)
(uuid 890175a5-3672-4004-8e7a-96b20ef35791)
)
(junction (at 110.49 113.03) (diameter 0) (color 0 0 0 0)
(uuid 92cee86d-726b-429f-beea-4e788f2ae29b)
)
(junction (at 124.46 157.48) (diameter 0) (color 0 0 0 0)
(uuid a0ade418-adcb-41f7-8ed8-c87e1717fdf9)
)
(junction (at 129.54 71.12) (diameter 0) (color 0 0 0 0)
(uuid a4aaac27-9c39-40c7-bd5f-dd50481e2578)
)
(junction (at 132.08 157.48) (diameter 0) (color 0 0 0 0)
(uuid aa48ea16-4fd1-4c1e-a390-78b0f1c5f71e)
)
(junction (at 127 157.48) (diameter 0) (color 0 0 0 0)
(uuid b2f70c4b-7bef-4288-b101-5fe1ee1c6adc)
)
(junction (at 46.99 76.2) (diameter 0) (color 0 0 0 0)
(uuid bcd57fea-0ee5-46e9-97e7-49855c1b70eb)
)
(junction (at 121.92 20.32) (diameter 0) (color 0 0 0 0)
(uuid be64a03c-e1f6-4814-9b7c-6e918735a5e1)
)
(junction (at 124.46 20.32) (diameter 0) (color 0 0 0 0)
(uuid c6b0d567-57b3-4cb6-96bc-71718d42f6c6)
)
(junction (at 120.65 49.53) (diameter 0) (color 0 0 0 0)
(uuid d05a3c86-a74c-44f5-9164-74ee92b0b99a)
)
(junction (at 128.27 49.53) (diameter 0) (color 0 0 0 0)
(uuid d46b71da-4fb7-49c5-af25-00ab12c409c6)
)
(junction (at 119.38 157.48) (diameter 0) (color 0 0 0 0)
(uuid dbc3ef41-0c33-49f4-8907-b295fd7fa2f6)
)
(junction (at 223.52 83.82) (diameter 0) (color 0 0 0 0)
(uuid dbd9b9c6-91d2-4898-839e-80b805214815)
)
(junction (at 223.52 93.98) (diameter 0) (color 0 0 0 0)
(uuid debe1be0-7958-4458-a9e3-67c6c8931c38)
)
(junction (at 121.92 87.63) (diameter 0) (color 0 0 0 0)
(uuid e1c098b9-2e09-452f-ad0e-c07195f4e7ab)
)
(junction (at 46.99 83.82) (diameter 0) (color 0 0 0 0)
(uuid e1fb3479-a21b-4528-afa3-ec16f583105e)
)
(junction (at 46.99 78.74) (diameter 0) (color 0 0 0 0)
(uuid e5843a95-9788-4f4d-8b3d-aabc2614d99c)
)
(junction (at 46.99 86.36) (diameter 0) (color 0 0 0 0)
(uuid e8811941-e952-4d66-85cd-177f23244f80)
)
(junction (at 119.38 20.32) (diameter 0) (color 0 0 0 0)
(uuid ed19aefd-25db-4354-8d60-81abf7da7610)
)
(wire (pts (xy 46.99 86.36) (xy 46.99 88.9))
(stroke (width 0) (type default))
(uuid 035385c8-059b-4ee6-9be1-3794c674f15d)
)
(wire (pts (xy 121.92 68.58) (xy 121.92 71.12))
(stroke (width 0) (type default))
(uuid 0b620b42-ec87-4e5e-a2c1-a3a2ff3ad46c)
)
(wire (pts (xy 223.52 78.74) (xy 223.52 81.28))
(stroke (width 0) (type default))
(uuid 0db2f39e-7aeb-4dac-9233-e2ef351c0f51)
)
(wire (pts (xy 119.38 109.22) (xy 119.38 113.03))
(stroke (width 0) (type default))
(uuid 0e9cb7ca-016f-466b-bfa4-387bced0dfff)
)
(wire (pts (xy 119.38 113.03) (xy 123.19 113.03))
(stroke (width 0) (type default))
(uuid 14343313-38a4-43a9-aa37-eadd34c39592)
)
(wire (pts (xy 114.3 20.32) (xy 116.84 20.32))
(stroke (width 0) (type default))
(uuid 1624a396-6c8e-4417-9e9c-e275d76481ca)
)
(wire (pts (xy 121.92 157.48) (xy 124.46 157.48))
(stroke (width 0) (type default))
(uuid 1e27e7ba-62a3-4700-b419-87d20f11f687)
)
(wire (pts (xy 129.54 87.63) (xy 130.81 87.63))
(stroke (width 0) (type default))
(uuid 21bf3f2d-58af-4edc-ac90-0ae997514ccd)
)
(wire (pts (xy 128.27 49.53) (xy 128.27 53.34))
(stroke (width 0) (type default))
(uuid 231396d0-63f9-4070-ad72-57b9399c9595)
)
(wire (pts (xy 129.54 157.48) (xy 132.08 157.48))
(stroke (width 0) (type default))
(uuid 2a5f898d-3f73-40cd-a156-0ffaae8bb719)
)
(wire (pts (xy 129.54 68.58) (xy 129.54 71.12))
(stroke (width 0) (type default))
(uuid 2caae7b5-10b6-4c6d-89f2-d36f3c0099c7)
)
(wire (pts (xy 118.11 49.53) (xy 120.65 49.53))
(stroke (width 0) (type default))
(uuid 2d63af77-eaae-41a0-8a93-583b542dd675)
)
(wire (pts (xy 46.99 78.74) (xy 46.99 81.28))
(stroke (width 0) (type default))
(uuid 2e2b231b-83b5-4b16-8502-4d71e6ad99cc)
)
(wire (pts (xy 125.73 100.33) (xy 146.05 100.33))
(stroke (width 0) (type default))
(uuid 3505e98f-c1c9-405a-9c9a-1814f51712c6)
)
(wire (pts (xy 129.54 85.09) (xy 129.54 87.63))
(stroke (width 0) (type default))
(uuid 350cfa25-0613-4bc4-bc92-56813a9aa7f2)
)
(wire (pts (xy 118.11 87.63) (xy 121.92 87.63))
(stroke (width 0) (type default))
(uuid 3bcdee59-b775-454b-8a94-ea71463a21b0)
)
(wire (pts (xy 223.52 83.82) (xy 223.52 86.36))
(stroke (width 0) (type default))
(uuid 4574fe17-cda1-4752-94ef-bd921881c4cb)
)
(wire (pts (xy 46.99 76.2) (xy 46.99 78.74))
(stroke (width 0) (type default))
(uuid 4727afcd-d788-448a-9aa6-e3cd955c6539)
)
(wire (pts (xy 132.08 20.32) (xy 135.89 20.32))
(stroke (width 0) (type default))
(uuid 4cee6217-fc36-44c2-9006-d6322d900d36)
)
(wire (pts (xy 134.62 49.53) (xy 128.27 49.53))
(stroke (width 0) (type default))
(uuid 4e64a1f6-d9ac-4659-b788-af752aac35a7)
)
(wire (pts (xy 129.54 71.12) (xy 129.54 76.2))
(stroke (width 0) (type default))
(uuid 50c2126d-dbb6-4538-bc29-69ffd1ecf024)
)
(wire (pts (xy 127 157.48) (xy 129.54 157.48))
(stroke (width 0) (type default))
(uuid 538e7bdb-1e27-419e-8f82-69aebf561de1)
)
(wire (pts (xy 110.49 113.03) (xy 110.49 109.22))
(stroke (width 0) (type default))
(uuid 5a99f7e5-0f85-4632-ac6b-1e93faa427a0)
)
(wire (pts (xy 114.3 157.48) (xy 116.84 157.48))
(stroke (width 0) (type default))
(uuid 5c23d0ad-fe75-40a1-94e6-fd8dadd02a6e)
)
(wire (pts (xy 46.99 88.9) (xy 46.99 91.44))
(stroke (width 0) (type default))
(uuid 600650ba-b9e6-41ef-ad7e-1f3aa342e937)
)
(wire (pts (xy 142.24 49.53) (xy 146.05 49.53))
(stroke (width 0) (type default))
(uuid 65402f69-b287-4210-8f56-d7986970e6d8)
)
(wire (pts (xy 120.65 49.53) (xy 120.65 53.34))
(stroke (width 0) (type default))
(uuid 736a9947-fdb4-406e-acfd-4433d1dc3cd8)
)
(wire (pts (xy 121.92 71.12) (xy 121.92 76.2))
(stroke (width 0) (type default))
(uuid 80eab6f9-70fa-40e3-b134-d821382ddab2)
)
(wire (pts (xy 129.54 87.63) (xy 129.54 92.71))
(stroke (width 0) (type default))
(uuid 82de13dd-bd43-4749-a418-ea8eacceba8c)
)
(wire (pts (xy 110.49 125.73) (xy 125.73 125.73))
(stroke (width 0) (type default))
(uuid 85e5780f-d663-4c64-8837-343f6b8489c6)
)
(wire (pts (xy 116.84 157.48) (xy 119.38 157.48))
(stroke (width 0) (type default))
(uuid 86fb01f2-553b-4d51-b949-c1d53305a5a2)
)
(wire (pts (xy 110.49 113.03) (xy 110.49 116.84))
(stroke (width 0) (type default))
(uuid 92a10d2e-6aa4-499d-be31-59798556a79d)
)
(wire (pts (xy 223.52 91.44) (xy 223.52 93.98))
(stroke (width 0) (type default))
(uuid 9386759c-01b0-4d49-a277-674e7038668a)
)
(wire (pts (xy 223.52 86.36) (xy 223.52 88.9))
(stroke (width 0) (type default))
(uuid 9cc45a85-1c1e-40bf-a050-c966ba9d2641)
)
(wire (pts (xy 119.38 157.48) (xy 121.92 157.48))
(stroke (width 0) (type default))
(uuid 9e8f126b-6d7f-4e49-8f63-b0417630d28d)
)
(wire (pts (xy 121.92 20.32) (xy 124.46 20.32))
(stroke (width 0) (type default))
(uuid a0537a08-2dce-4b90-a7af-43137b628778)
)
(wire (pts (xy 138.43 113.03) (xy 146.05 113.03))
(stroke (width 0) (type default))
(uuid a0c97295-792b-424f-87c0-8e3f70034449)
)
(wire (pts (xy 121.92 85.09) (xy 121.92 87.63))
(stroke (width 0) (type default))
(uuid a83b23e5-ea68-4ea4-a5d2-0ec45c7d4c98)
)
(wire (pts (xy 119.38 20.32) (xy 121.92 20.32))
(stroke (width 0) (type default))
(uuid a84f06e3-9803-4f17-80c7-3da7da91cf13)
)
(wire (pts (xy 116.84 20.32) (xy 119.38 20.32))
(stroke (width 0) (type default))
(uuid b786ca12-9ddd-4dba-a014-2ba0dfea4c17)
)
(wire (pts (xy 118.11 71.12) (xy 121.92 71.12))
(stroke (width 0) (type default))
(uuid b7df9774-4a5d-43ec-a186-a9810e5de053)
)
(wire (pts (xy 124.46 20.32) (xy 127 20.32))
(stroke (width 0) (type default))
(uuid b9078cf9-caa5-4990-8cfc-55c92b700497)
)
(wire (pts (xy 129.54 20.32) (xy 132.08 20.32))
(stroke (width 0) (type default))
(uuid ba60b3cf-24e6-42a5-9054-3d7df3cce9dd)
)
(wire (pts (xy 110.49 109.22) (xy 111.76 109.22))
(stroke (width 0) (type default))
(uuid bbecce0a-2430-402d-a2e9-400e38bd3545)
)
(wire (pts (xy 133.35 125.73) (xy 146.05 125.73))
(stroke (width 0) (type default))
(uuid c21d1d4c-224b-4bc3-957d-f857b26041a7)
)
(wire (pts (xy 110.49 116.84) (xy 111.76 116.84))
(stroke (width 0) (type default))
(uuid c277315c-8bf1-4e20-8a65-978fb059bc20)
)
(wire (pts (xy 46.99 81.28) (xy 46.99 83.82))
(stroke (width 0) (type default))
(uuid c6f513e4-f5f1-4dd0-8187-db4e63379155)
)
(wire (pts (xy 46.99 73.66) (xy 46.99 76.2))
(stroke (width 0) (type default))
(uuid c74d9485-690b-460f-a0c6-d6a6f812cf9c)
)
(wire (pts (xy 120.65 45.72) (xy 120.65 49.53))
(stroke (width 0) (type default))
(uuid c8a9b67c-514a-4742-acd5-74766edbd1a3)
)
(wire (pts (xy 223.52 88.9) (xy 223.52 91.44))
(stroke (width 0) (type default))
(uuid cb711d45-f1fc-48ca-bf3e-55d6ad866963)
)
(wire (pts (xy 223.52 81.28) (xy 223.52 83.82))
(stroke (width 0) (type default))
(uuid cda4f3d3-82fe-4dea-9671-23c1522d7d88)
)
(wire (pts (xy 124.46 157.48) (xy 127 157.48))
(stroke (width 0) (type default))
(uuid ddc83e69-f803-44be-8ebb-42082d699417)
)
(wire (pts (xy 129.54 71.12) (xy 130.81 71.12))
(stroke (width 0) (type default))
(uuid dfc5f8bf-6a8b-4982-9d82-96ead0893531)
)
(wire (pts (xy 119.38 113.03) (xy 119.38 116.84))
(stroke (width 0) (type default))
(uuid e9b8d39d-97f8-455b-9220-8dedad529c71)
)
(wire (pts (xy 223.52 76.2) (xy 223.52 78.74))
(stroke (width 0) (type default))
(uuid eac09985-45c1-4c79-8dae-33692d23390a)
)
(wire (pts (xy 127 20.32) (xy 129.54 20.32))
(stroke (width 0) (type default))
(uuid f2145cb9-921f-43e7-b73a-200d436269be)
)
(wire (pts (xy 125.73 60.96) (xy 146.05 60.96))
(stroke (width 0) (type default))
(uuid f36a9076-f288-45e8-a145-010ffb2fab75)
)
(wire (pts (xy 128.27 49.53) (xy 128.27 45.72))
(stroke (width 0) (type default))
(uuid f4a5aea8-9b1a-4fa4-a2be-8ac335eefaed)
)
(wire (pts (xy 46.99 83.82) (xy 46.99 86.36))
(stroke (width 0) (type default))
(uuid f77e7df7-0bd7-4001-8c67-3f97ff61944b)
)
(wire (pts (xy 121.92 87.63) (xy 121.92 92.71))
(stroke (width 0) (type default))
(uuid f7fbd61f-082d-4dec-8312-49c1ef61a6ff)
)
(text "C - 261.63\n" (at 83.82 50.8 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 234a7302-c2c8-4869-a023-040568fc785a)
)
(text "B - 493.88\n" (at 83.82 91.44 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 57b6ef2c-2c48-4a30-a500-59eb4d8835c9)
)
(text "A - 440\n" (at 83.82 60.96 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6d0524bf-6564-4e52-830d-fe7acebcaa24)
)
(text "A - 440\n" (at 83.82 102.87 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 82950187-1cf6-4ccc-ae26-37ff60d2bfe7)
)
(text "E - 329.63\n" (at 83.82 125.73 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a493a4c1-3ee9-459b-8b87-55d4d1ab65b5)
)
(text "G - 392\n" (at 83.82 114.3 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bcc8bd33-5674-4149-b959-a44d586ecc37)
)
(text "B - 493.88\n" (at 83.82 71.12 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c3894bc7-113e-42fa-b043-5630b5938043)
)
(symbol (lib_id "power:GND") (at 132.08 157.48 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 13ed82f3-153e-41bc-835e-0c33a1e59bfb)
(property "Reference" "#PWR04" (at 132.08 163.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 132.08 162.56 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 132.08 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 132.08 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6603723b-6b99-4ed7-aa2e-22b3ce4786c4))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/66386db8-3d76-4d11-88a4-576b83983663"
(reference "#PWR04") (unit 1)
)
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "#PWR055") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 121.92 100.33 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1665599a-79eb-477b-b5d7-de0241a6e629)
(property "Reference" "R18" (at 121.92 95.25 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10" (at 121.92 97.79 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 122.174 99.314 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 121.92 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 25f8233f-4798-4668-8cef-7e386e48b405))
(pin "2" (uuid 0bae6de4-436b-42a9-999c-9a1564315c78))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "R18") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 138.43 49.53 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 166e7b37-8567-41e5-954d-05e87bcdcfc1)
(property "Reference" "R4" (at 138.43 44.45 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "62" (at 138.43 46.99 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 138.684 48.514 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 138.43 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 46b4f493-caf4-474b-9379-2b2304deb461))
(pin "2" (uuid 1ec61081-cac9-487d-bf54-4692792a9b8b))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "R4") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 135.89 20.32 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 186b7d3d-c9db-481d-9364-44c86a903f5d)
(property "Reference" "#PWR044" (at 135.89 26.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 135.89 25.4 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 135.89 20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 135.89 20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 159cd8ef-fc90-4f7f-9e39-0a790131366d))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/e29f91d9-a2d8-4d8c-8d88-205f81aa8a69"
(reference "#PWR044") (unit 1)
)
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "#PWR049") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 146.05 87.63 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 228a1c77-39c9-463e-b4bd-0ddda3c562ad)
(property "Reference" "TP8" (at 151.13 86.995 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (at 151.13 89.535 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_D3.0mm" (at 146.05 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 146.05 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6908b367-1156-471f-a485-ed59a5102d86))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "TP8") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 46.99 91.44 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 22c612c1-9563-46f8-9343-1225cc5f50a7)
(property "Reference" "#PWR04" (at 46.99 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 46.99 96.52 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 46.99 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 46.99 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 275aa932-1af7-4658-9761-a0905187abd4))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/66386db8-3d76-4d11-88a4-576b83983663"
(reference "#PWR04") (unit 1)
)
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "#PWR054") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Conn_01x08_Pin") (at 218.44 83.82 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 353759ac-c7e1-4996-ac99-e5eade27bb5a)
(property "Reference" "J10" (at 219.075 72.39 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "resistors2leds" (at 208.28 80.01 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Horizontal" (at 218.44 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 218.44 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9e5ed4bd-8f40-4f2d-976c-8c0bfd4a3112))
(pin "2" (uuid be295039-962a-4240-bddf-eb33071e661b))
(pin "3" (uuid 2f784600-bb51-4666-afb9-5ef91b846347))
(pin "4" (uuid 5eaa43f3-c37b-4bcb-a5b1-9d452ce5e043))
(pin "5" (uuid 7fa96eae-c726-48ce-96a7-1f61d0741468))
(pin "6" (uuid 5074dfe7-4a24-4888-b0d7-cea608590f53))
(pin "7" (uuid 603bb9a6-ee11-4766-8596-2d7aa227a945))
(pin "8" (uuid e40619b1-5f2c-4145-8871-205cb533c764))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "J10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 115.57 116.84 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3600acac-b072-4f66-9544-dc7d64f1eaf4)
(property "Reference" "R20" (at 115.57 111.76 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "680" (at 115.57 114.3 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 115.824 115.824 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 115.57 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6b301222-4355-46e6-888c-def08e956d20))
(pin "2" (uuid b17b50d8-209f-49bd-a83a-67118f77e398))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "R20") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 146.05 60.96 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3895d509-e94c-4e8c-85ed-0d63357f1eac)
(property "Reference" "TP4" (at 151.13 60.325 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (at 151.13 62.865 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_D3.0mm" (at 146.05 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 146.05 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1136be93-e7e0-4925-85dc-fe3f561e6948))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "TP4") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 121.92 60.96 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3e477ad9-1820-4ded-bfa2-3bf36fd0bf74)
(property "Reference" "R6" (at 121.92 55.88 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10" (at 121.92 58.42 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 122.174 59.944 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 121.92 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5478ef24-50c0-47e0-8409-45d74a1d70c3))
(pin "2" (uuid 0338bd03-b1d1-4679-8bdb-c6d48b73971b))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "R6") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 146.05 100.33 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 494ec349-1906-45e4-91ec-0a5e0755d6ad)
(property "Reference" "TP10" (at 151.13 99.695 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (at 151.13 102.235 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_D3.0mm" (at 146.05 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 146.05 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5ab32001-e0e6-4e62-91f5-c659cdd8a04e))
(instances
(project "puzzle_cube"
(path "/7841bf0f-9841-4f7c-a945-d364b36c9525/69fd8798-ce27-4128-a2e9-7f8a262a8e48"
(reference "TP10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 142.24 71.12 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)