-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenzirk.kicad_pcb
9256 lines (9194 loc) · 438 KB
/
openzirk.kicad_pcb
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_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "plots/")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "Net-(J2-Pin_2)")
(net 3 "+5V")
(net 4 "GND")
(net 5 "TempProbe1")
(net 6 "TempProbe2")
(net 7 "Net-(D1-K)")
(net 8 "Net-(D1-A)")
(net 9 "Net-(D2-A)")
(net 10 "Net-(D3-A)")
(net 11 "Net-(D4-A)")
(net 12 "Net-(D5-A)")
(net 13 "Net-(D6-A)")
(net 14 "Net-(D7-A)")
(net 15 "Net-(J2-Pin_1)")
(net 16 "CurrentProbe")
(net 17 "Net-(J5-Pin_1)")
(net 18 "Net-(J5-Pin_3)")
(net 19 "Net-(J7-Pin_1)")
(net 20 "Net-(J7-Pin_2)")
(net 21 "Net-(J7-Pin_3)")
(net 22 "Net-(J7-Pin_4)")
(net 23 "Net-(Q1-B)")
(net 24 "CurrentProbeEnable")
(net 25 "Net-(Q2-D)")
(net 26 "TempProbesEnable")
(net 27 "LoadEnable")
(net 28 "+3V3")
(net 29 "Net-(R2-Pad2)")
(net 30 "Net-(U3-GPIO19)")
(net 31 "Net-(U3-GPIO18)")
(net 32 "Net-(U3-GPIO10)")
(net 33 "Net-(U3-GPIO11)")
(net 34 "Net-(U3-GPIO12)")
(net 35 "Net-(U3-GPIO13)")
(net 36 "Net-(U3-GPIO5)")
(net 37 "Net-(U3-GPIO4)")
(net 38 "Net-(U3-GPIO3)")
(net 39 "Net-(U3-GPIO2)")
(net 40 "unconnected-(U1-Pad5)")
(net 41 "Net-(U2-K)")
(net 42 "unconnected-(U3-GPIO14-Pad19)")
(net 43 "unconnected-(U3-GPIO20-Pad26)")
(net 44 "unconnected-(U3-GPIO22-Pad29)")
(net 45 "unconnected-(U3-RUN-Pad30)")
(net 46 "unconnected-(U3-3V3_EN-Pad37)")
(net 47 "unconnected-(U3-VBUS-Pad40)")
(net 48 "unconnected-(U3-GPIO16-Pad21)")
(net 49 "Net-(J3-Pin_1)")
(net 50 "Net-(J3-Pin_5)")
(net 51 "Net-(J4-Pin_1)")
(net 52 "Net-(J4-Pin_2)")
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 054afb56-6dc7-4c82-bfff-3eecf3872702)
(at 83.25 117.8125 90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/f953fa63-5b77-44fd-994e-fe147d867a54")
(attr smd)
(fp_text reference "D5" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5cd7793b-9203-412b-a450-1a71018bbcd5)
)
(fp_text value "Blue, 2,65V/2mA" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58935b4c-e1e6-4424-bc6c-4b314b2d587e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ca0ac980-421d-46f6-8e5a-efa26f29a24d)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3be49e65-7aa2-4f64-80c8-b379c280707e))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c00c5ac-b2fa-438d-82a8-674415891ef0))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bac673d-9fce-418b-aa8c-9e039ba048ce))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1c3720d-8c2f-41c4-b406-159787e3c261))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5669b8c-64d7-4ed8-b2b8-eada23c73ff8))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be7d4c1b-6d2d-445c-81f7-73e1832adfb3))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b8eed42-c447-4f46-b376-90f7a11607dd))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a9538f9-d483-4ce5-82bd-240a37b7093f))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f344c4b-ce52-45ad-81b2-317b97ac738d))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96218b89-4b16-462a-a95c-807e9102de64))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d8baea1-8104-4ec9-a442-c42ede178559))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cfa974c-4a3e-4d22-b65e-a3978930301d))
(pad "1" smd roundrect (at -0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "K") (pintype "passive") (tstamp e2e90ac2-53c8-49be-91ad-c73c3656571f))
(pad "2" smd roundrect (at 0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(D5-A)") (pinfunction "A") (pintype "passive") (tstamp 9b5fe7b9-03ed-41a3-8b00-77618f5b63ae))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 063a7b09-c339-4cb7-bec6-3f681860a70f)
(at 109.5 133.75 -90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/932e399f-9676-4326-bdc0-0ecfc3c9f8a5")
(attr through_hole)
(fp_text reference "J5" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6abd7784-5d61-4156-916c-108d065cb92b)
)
(fp_text value "Debug" (at 0 7.41 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b94a8630-8095-4d1c-955a-f4149ac59e82)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b5eacba-3043-4294-bb88-d3d8b4850e9c)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06f95df0-8ac6-4576-aa2d-662a18ebd738))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28880ea2-97b1-488a-9dab-f1015e5e884a))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76aeef2e-f147-4ccb-b9af-7638eb2e8369))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ab622f3-c6fc-4702-b965-0b90870de3a3))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 649e3c96-be72-4cfd-93b6-68eed8bd9f23))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1788cc35-2ec6-42cd-a011-1622f1ee016a))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89b24dfa-0b12-4633-9ee5-b3f39a7d47ba))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a57e0ca-7a5d-4166-85a3-e6c6644fda25))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e3408c6-0235-4b21-93bc-9a2b542aa24a))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f69e4bb8-6f4d-4bc7-b85e-79f83b491cf3))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efe6ae7f-2a80-4516-951b-2d0266a49646))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp baa74699-87b2-42bc-99e5-fdef364f0f2a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d9ed851-c366-44d9-9fbf-05a3cd4192d8))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3afc8493-d8f0-40b0-9836-93b16ce4238e))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a4311a9-f279-4912-b21b-ae80ae7f4cb4))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "Net-(J5-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 5f6afa3f-c79b-4e27-8928-718711a52f59))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp fc1bf3da-ef56-4e81-8f52-46d1e931c7a2))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "Net-(J5-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp ba561e7c-37e7-4b03-bd50-f654f27e6d0b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 09920289-43f7-4bfc-8c5d-0c4810433a0c)
(at 78.5 78.25)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6f98baf-bb0e-41f5-8db5-4ef9b55fb360)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c2661d4-a53c-44cb-9c58-301c3f10a717)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dff4919d-6e55-4d0f-9c1e-a56a6b9ecbf0)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 2564eef5-0fea-4034-a442-c216d3707c07))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e35f3c39-93ff-4c5a-ba34-b0b25b3b6b29))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 7bb211c1-c2c6-4edc-a5ab-ebe450b254e2))
)
(footprint "OpenZirk:SHDR6W90P0X350_1X6_2160X1000X1255P" (layer "F.Cu")
(tstamp 13dccace-1f3e-4dcf-bbb3-fd6576e0c9fb)
(at 100 149)
(descr "1752146")
(tags "Connector")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/140f09cd-369e-4f22-8d73-86b6df871e12")
(attr through_hole)
(fp_text reference "J3" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 6b2d3ca2-d993-40d1-b97a-b71a3b7575fb)
)
(fp_text value "Sensoren" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 184dabde-e612-4f12-b2b5-d19986c29b84)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 8c710b2d-df43-4c5e-94ed-5517c7fae16d)
)
(fp_line (start -2.45 -4.35) (end -2.45 0)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 71135612-a2b5-43a0-b40f-f50d8dca295c))
(fp_line (start 0 5.8) (end 19.35 5.8)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 63e6aabd-bf42-4cd4-b09f-bc6cead9c8d5))
(fp_line (start 19.35 -4.35) (end -2.45 -4.35)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 8aa42b77-ee94-43f1-9fa6-b495ea1a8599))
(fp_line (start 19.35 5.8) (end 19.35 -4.35)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp c8a7f98c-d42c-465d-8ec4-7b7d8032369d))
(fp_line (start -2.7 -4.6) (end 19.6 -4.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc92e576-2339-453f-932f-f9f8fd406e5e))
(fp_line (start -2.7 6.05) (end -2.7 -4.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a7afe9a-896e-4767-ab16-4ca0b5035162))
(fp_line (start 19.6 -4.6) (end 19.6 6.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43b0b9f0-a963-442c-9721-c5ce93ddc29d))
(fp_line (start 19.6 6.05) (end -2.7 6.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e6c03b5-9121-4884-89f5-b33755a2ec6f))
(fp_line (start -2.45 -4.35) (end 19.35 -4.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71334340-17c5-4e79-a60d-f256ddd86695))
(fp_line (start -2.45 5.8) (end -2.45 -4.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e12d411-99f9-4c45-9e81-cd47e39b1f6b))
(fp_line (start 19.35 -4.35) (end 19.35 5.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be45ac21-46ee-4e37-99b1-9ddfa6080208))
(fp_line (start 19.35 5.8) (end -2.45 5.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8daed28-3bcf-4206-b9b6-9e01b31a19f4))
(pad "1" thru_hole rect (at 0 0) (size 1.65 1.65) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 49 "Net-(J3-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 365b4014-f642-4b1a-bb9b-0e9329de857e))
(pad "2" thru_hole circle (at 3.5 0) (size 1.65 1.65) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "TempProbe2") (pinfunction "Pin_2") (pintype "passive") (tstamp b46195bd-b441-41c8-b818-9522f208a1ec))
(pad "3" thru_hole circle (at 7 0) (size 1.65 1.65) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 49 "Net-(J3-Pin_1)") (pinfunction "Pin_3") (pintype "passive") (tstamp 9a62e844-d935-4c99-91a5-7873a76bcb7d))
(pad "4" thru_hole circle (at 10.5 0) (size 1.65 1.65) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 5 "TempProbe1") (pinfunction "Pin_4") (pintype "passive") (tstamp 3f511960-c09e-408a-9876-05b7c4c1febb))
(pad "5" thru_hole circle (at 14 0) (size 1.65 1.65) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 50 "Net-(J3-Pin_5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 5fc64a5c-f07c-4df0-994f-23f66b77f4b1))
(pad "6" thru_hole circle (at 17.5 0) (size 1.65 1.65) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 16 "CurrentProbe") (pinfunction "Pin_6") (pintype "passive") (tstamp 7339c412-9197-4537-a0d7-2e16f44adb25))
(model "1752146.stp"
(offset (xyz 0.239999991 11.94999963 -32.42999982))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 1ed9b6c2-58be-4f28-a778-7eb36a26d2f0)
(at 171.5 151)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ded6f2c-eb08-41c4-80d6-1280d70f4540)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c55ab41d-2087-4cfe-81e4-375668aeadd9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4a1e61f-cf2a-4039-a7a1-591387e6d593)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 1a1fd42c-e2b9-4891-9e0a-d11aab9294fc))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 845a0c11-5b55-415e-8818-886451dba798))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 2ff098e1-6541-4ab0-90fc-d1e244f3b2ef))
)
(footprint "LED_SMD:LED_0805_2012Metric" (layer "F.Cu")
(tstamp 24b9d94f-92f4-40e2-a740-3d1be3663818)
(at 161.5 82.75 90)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/ab949e3d-acf7-41ce-9d21-3f63ab3acc3c")
(attr smd)
(fp_text reference "D1" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a10c6f56-b66e-4ba9-8585-6a2181d3438b)
)
(fp_text value "Red 1.6V/4mA" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a70520f5-604e-41ac-ad62-50e4d18188b4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3dc261bd-6b9a-4bdc-85d3-f86afcf2e216)
)
(fp_line (start -1.685 -0.96) (end -1.685 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71f54086-83e2-4b62-878c-7c6820466bbc))
(fp_line (start -1.685 0.96) (end 1 0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2206f08-a296-432f-b89c-306c2c87cfcb))
(fp_line (start 1 -0.96) (end -1.685 -0.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf85a6f8-3422-41c9-b5f5-e4357c024181))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a41a865-de1b-4b90-8760-0d37c25472d7))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e01dc694-133f-412e-bf32-dd8ee9b9643e))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 669e0d71-f71d-4ffc-8bf8-a12516b75063))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fea1ba6d-3e46-435a-95c8-7f7b4b5077df))
(fp_line (start -1 -0.3) (end -1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb1da5d5-03dd-4c0f-bbf8-6a07ea47a943))
(fp_line (start -1 0.6) (end 1 0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0f926cf-1328-4a9d-aec4-72838210ced9))
(fp_line (start -0.7 -0.6) (end -1 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a56aa935-5958-4c35-92f7-a91a2ca69049))
(fp_line (start 1 -0.6) (end -0.7 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d41cb94d-42e1-4ce9-9802-626d3a54acc4))
(fp_line (start 1 0.6) (end 1 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28a08574-83dc-447d-a911-e028393e5888))
(pad "1" smd roundrect (at -0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp d6422bb6-6fe4-49f4-a5b4-a32addfc6819))
(pad "2" smd roundrect (at 0.9375 0 90) (size 0.975 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp e7a32ade-5999-40a3-9a62-231bb2d5a1c0))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 253632e8-254c-4d98-88ea-0ce95e06a25f)
(at 83.5 143.8125 -90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "Sim.Device" "NMOS")
(property "Sim.Pins" "1=D 2=G 3=S")
(property "Sim.Type" "VDMOS")
(property "ki_description" "N-MOSFET transistor, gate/source/drain")
(property "ki_keywords" "transistor NMOS N-MOS N-MOSFET")
(path "/e9a981c0-cc63-466f-8774-1a983cc66b1a")
(attr smd)
(fp_text reference "Q3" (at 0 -2.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aeec7ecc-cc10-4c49-b523-aa9c154e2e87)
)
(fp_text value "FDV303N" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e1cd6da-ed8a-4f6c-a553-34259b78db7e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 562bcb2f-b560-4984-8963-23fff230a004)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a44db58b-1c36-4690-9c38-bfbb327249db))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d556d338-5e9b-4bd4-83fb-b2616617cc71))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47d9b337-a506-4ec5-922d-9e02f3ba9141))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74dfb5d0-c04f-41d7-93d0-2ba523058bd3))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 516a94dc-3b67-4557-8c58-0e9c67894ec1))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ae3f596-8a44-4e3d-88e6-306c1d73ed8b))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 657de7a5-06e1-423c-b3ef-6efa350f5494))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8597998b-d227-4050-8457-7c7885f411f3))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3113f7b6-2efa-4838-af76-a6f1fd4b6832))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea2165aa-97ac-47d9-9f86-6748a66e5fbf))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fd75b39-cc91-4e14-a254-41c9ab69c44e))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7d20b86-9e2b-40ea-a24b-807774990ddf))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22b6fdfd-0881-47f4-b52a-32c541eace7a))
(pad "1" smd roundrect (at -0.9375 -0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "TempProbesEnable") (pinfunction "G") (pintype "input") (tstamp 04ca5b80-5c9d-4bda-a20d-47f3480a742c))
(pad "2" smd roundrect (at -0.9375 0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "S") (pintype "passive") (tstamp 684adb31-6e61-4d51-a8b7-898659d47b19))
(pad "3" smd roundrect (at 0.9375 0 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "Net-(J3-Pin_1)") (pinfunction "D") (pintype "passive") (tstamp ea8760a7-f542-410d-9cae-72dcfa32379e))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 28674fff-fae5-4c8c-9981-5cf845a75377)
(at 124.25 112.25)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/0b69e33e-8002-46f6-96c4-8666f5e9f254")
(attr smd)
(fp_text reference "R11" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac4aa182-2b65-417e-a830-46c8a54c6e7d)
)
(fp_text value "470" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da80436e-dbb3-4ed7-b023-9011fdceecf7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 74f18712-ff3b-43cd-9d09-5f3014b043ab)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9c275d1-0b33-4f16-8b3c-a2193ec7bfb9))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30cb6a2d-a467-4529-8d9b-26d93763eb99))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9be36018-f3b7-445b-9872-6dd3e88ec45e))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c745322-32a5-417a-95d1-87f6667714bc))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f616000-5ad4-4da8-88ab-79d4fae1f2e9))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5f0d889-407e-445d-9134-e03f64406e94))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91556edc-0580-4c61-bf75-e92eb2b20b67))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2566ad8-ffce-4443-9852-4f4eda5bb922))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83e0cb84-c6ff-4f6b-963f-1ba91d3548ba))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63b2a09c-57fc-43b0-b9a4-97710de3f012))
(pad "1" smd roundrect (at -0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 30 "Net-(U3-GPIO19)") (pintype "passive") (tstamp e84ee516-1705-45f4-b8e7-7ea1ef04ff09))
(pad "2" smd roundrect (at 0.9125 0) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 9 "Net-(D2-A)") (pintype "passive") (tstamp c4d44321-d747-4811-838f-078787d1b169))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 2edb5334-3b0c-46b4-9913-2c4fb457c1e8)
(at 91.25 140.5 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/21580576-6748-47c5-ac9d-2a9bfe5183d7")
(attr smd)
(fp_text reference "R8" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a769d554-e6b5-4ac0-b81f-3f9cd9b7012d)
)
(fp_text value "R" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a817cff-d5fb-4369-ac3a-ada1724435bc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2c6a2919-e559-4f29-a3e1-013c0bb7905f)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddec4042-3b8e-4447-8175-4097ad3da032))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dc6e58c-bb01-4f4c-800b-baa124d3d8e3))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a1f94d1-6c2d-43ef-ac84-72d0e69736b1))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10d94723-be10-43f1-a68c-ecdee7758d40))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40c67ad3-72df-4f9f-af05-67f56ad984f4))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0fddc0e-e61e-4e3c-b15e-f7d4f483f858))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7844c2db-a001-4db9-bbe3-1dadaa5cf3ec))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96bba839-66a1-4c5a-865b-b933ee730628))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 284cefd2-ad1d-498a-82b5-ef0d6f0a5605))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54159cc4-b2e5-401f-a6e6-5ec301f7cff5))
(pad "1" smd roundrect (at -0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 28 "+3V3") (pintype "passive") (tstamp fe20cd3c-4f3a-40c7-85b6-abcc437a34cd))
(pad "2" smd roundrect (at 0.9125 0 270) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 6 "TempProbe2") (pintype "passive") (tstamp da37cf19-0f74-43e8-b0c8-09a0ef2b47ad))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 3473bc08-375c-48c8-a7e7-d8f270396785)
(at 115.5875 134.75 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/33dbbaba-61d4-48ca-8dc1-b9f57558533b")
(attr smd)
(fp_text reference "R10" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abac6671-b71e-407a-b269-110128967ac7)
)
(fp_text value "~" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6973b26e-0a2a-40bf-aa98-219754ba7e79)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 02ed5857-71ab-4367-b250-c8a041cfc82c)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71b76e48-1cae-4fc2-8a3f-bbadab88498f))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9cf8f41f-c2b6-40c8-96a3-537b56db486a))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a7cf885-ccf4-4ffb-bf75-c8f8cedc2f35))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98c2dfb0-1ac2-417d-9243-e5f431e47116))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 101651ab-cc93-4477-95f5-ce05b1b055f3))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f1c63d4-1fe2-498e-992a-7711f07bcae1))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b884d117-0cb3-4f4d-a2c6-2e766cf29cd3))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89c44411-cbe6-4568-930b-fb415b5c8526))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aac10d75-d41e-429f-8399-cd6463242c49))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5bda4425-fab3-4360-8923-c83282ab987e))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 16 "CurrentProbe") (pintype "passive") (tstamp 2d71d01b-2578-4d48-bf49-cf3a621385a4))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 50 "Net-(J3-Pin_5)") (pintype "passive") (tstamp cd498289-93ae-4758-a343-bb9047a12a34))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 3494d328-116c-41c9-bda4-ccb89ecdad0f)
(at 83.5 138.75 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/afbbb0bb-6543-46da-8089-c2d48d666702")
(attr smd)
(fp_text reference "R9" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50560203-dcbb-4227-bb90-9347d790917a)
)
(fp_text value "0" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1518e22-cd34-47b1-9d56-430e38ec40f4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1ee7ec13-7253-4733-b594-1ae394a58ddb)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c72b4ba-d677-4f96-90d9-9cc0acfb2d74))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f5674ad-0bc9-4a69-91c3-a0dd860698fd))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7406cd7f-877c-439a-854b-ca283587e28d))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8369854a-20b1-4b63-b972-9f610b4cbe52))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6eb087f4-ab85-4eb3-931d-e9694795e41e))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d8768c9-5122-436e-b789-ba4b5adfab9c))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0c7fa03-04b1-4add-9bd7-be303594d148))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b582cae-888b-41d7-836f-f8f7d35ed69f))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cec17710-7bf5-4eb5-940e-7c3cb55fcf51))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cd87a40-47b2-47ea-b35f-5b0eeff2f37b))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 49 "Net-(J3-Pin_1)") (pintype "passive") (tstamp 255dceff-83f1-4ee4-a2ef-29d4f6fc3b08))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 4 "GND") (pintype "passive") (tstamp e4e95eb1-eea0-43af-9c45-2d6c163be6bf))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 4032a558-d1d4-4326-a9cc-442084fbfb92)
(at 78.25 138.75)
(descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x01 2.54mm single row")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/9e98bca9-7027-41d3-b14e-e47e3b5e5918")
(attr through_hole)
(fp_text reference "J6" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0dac4f8c-dfe4-4444-b2f0-11deea02d8a6)
)
(fp_text value "GND" (at 0 2.33) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a750bdf2-a424-4761-b192-261ea39bf9cb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab3281a2-74b5-4f26-858e-254fec659d08)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f6363e8-d8b9-4f3b-9f5f-7667ee08885d))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0c023df-9029-4cdd-b878-5cb6d1a06295))
(fp_line (start -1.33 1.27) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1f3b0d3-dc2b-43cd-abe8-7f3242d9c4f4))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a61f20ef-6fca-4772-b0c1-7e6a885d3c01))
(fp_line (start -1.33 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a8c67c2-ae36-4e2c-911f-63feb541d75a))
(fp_line (start 1.33 1.27) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6edea4f4-ad60-4a2c-a705-01d33ef5629c))
(fp_line (start -1.8 -1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be9abf4a-b324-48c2-93d7-77d440d1f1eb))
(fp_line (start -1.8 1.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49b82663-5b3b-48af-9126-1c1eb379cdad))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12a06234-f49a-4ddd-97b9-5d6e70ce6562))
(fp_line (start 1.8 1.8) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2d223cb-2c47-4b80-a270-01627170b439))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 632aa279-0be4-4cb3-ba1d-13813c9d7879))
(fp_line (start -1.27 1.27) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76d0f699-82e1-493e-88f7-1797a4397ae5))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acaf50a0-c9cc-4081-9057-8dcad882659a))
(fp_line (start 1.27 -1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff6287e2-4ec2-46f1-94fb-20cd8d96879a))
(fp_line (start 1.27 1.27) (end -1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18c7b509-e4d4-4ea7-afba-e453b71cf1b4))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp cfd5b38d-12f2-4e36-865d-0d61a3d34d6d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 429309d3-27f3-4781-ab14-c6c6194856f3)
(at 156.75 82.75 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/3be874ba-4c3a-4326-83fb-33086c37d377")
(attr smd)
(fp_text reference "R3" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c63285c-983f-4551-b4cd-4b2eb3804c33)
)
(fp_text value "470" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56b3de24-f529-495e-9ad0-70c4671a1846)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 83f17918-6b88-4de5-b10a-145b90b1e1f8)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74cae877-0585-429e-a7a3-ef8d715245c2))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e54126d-72dd-4f65-8420-7a33a22e9743))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ed8a866-be39-45f9-b74a-e96ba46eb2fb))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f3a699a-945f-4343-9dd3-50575a2f776a))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b549ec92-a323-4f5d-9f2f-e7e885c129b1))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d39012c-b931-45a7-8730-67c14ebfa67b))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fad853f6-6487-40d0-8fef-3ee0a0270932))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d12a1c12-cc25-4368-a015-602010d00cbb))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b68d76a-a92d-455a-b5ff-e027941f5b6d))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f14b9f6b-71b0-4e3b-a7ff-2abf897e37b9))
(pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 8 "Net-(D1-A)") (pintype "passive") (tstamp 988187ac-2e11-4234-91bb-73baa85a5d9a))
(pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 28 "+3V3") (pintype "passive") (tstamp 89917fb0-c042-49bf-91d0-19caa68edf73))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 4500634d-90d9-4e15-94ee-094e85de36aa)
(at 82 105.83 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/5d3e8e3b-daae-44c1-9623-e41426a49468")
(attr through_hole)
(fp_text reference "J7" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51cdd171-f338-45af-a6b0-742ee86de58a)
)
(fp_text value "Spare" (at 0 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c14bb2f-0f11-4281-9a39-34fe98cb6a73)
)
(fp_text user "${REFERENCE}" (at 0 3.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4934ad76-a1b0-46cc-80a5-bae335a8163a)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4ddb9d3-ef50-4ae2-b2a8-0c95c588bead))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ccb2fcf4-eb77-4e64-95de-aee566cc9a67))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57491e59-be62-402f-b591-2d87f0407925))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ad4a824-3789-48ea-8fbf-5d31edc419f6))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 749a042b-0ffb-4ae9-ad66-b184d25d30c1))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b9ec3c8-7e6e-4a60-ad1c-c82bf5ac4bdb))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc91f0fd-bd12-49e8-95e3-de0cfc3e4cd2))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73301841-1ca8-454d-94f2-b93726e47d8f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5860410a-8b66-49c7-8234-94d9c28839b3))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1efa602d-974f-4312-bb2e-3ba8f1c616f7))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce06123d-829d-4b8b-aaa5-732c180405b4))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b02620b-3b8f-43ac-a00b-118a9379012c))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bd7afb5-1bdb-4aa8-85c3-f57cf81c7852))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f72e502c-341a-4665-b8b1-b11f037bbe59))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 646a1dda-c97d-4fd6-978b-133a5b8ca4fa))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "Net-(J7-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 19f0d678-803c-48b0-8ae2-901f8d404991))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "Net-(J7-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp de8cbdf1-3952-414c-a224-7f5cb54ad792))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "Net-(J7-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 605667d4-bf97-4255-8d0d-07a69586a863))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "Net-(J7-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 08a0900f-15c5-4169-825d-0ca9c0b29d99))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 479c00e7-fd17-41f4-a9a5-f558fc9569fa)
(at 99.25 134.75)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/cd128fbb-42f0-4768-bdd5-545db79aecb9")
(attr exclude_from_pos_files)
(fp_text reference "TP-T1" (at 0 -1.648) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7721b88b-af7a-452b-abe7-0756db7126b6)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22aa1ced-4a77-4f34-b1f3-c8cf82639f26)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15988d8b-68a4-4122-b091-f3a427cae7c2)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c84af188-9828-46dd-8377-21294ed3c4d5))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp e904801a-d00c-473f-93de-02aabcfeeda7))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 5 "TempProbe1") (pinfunction "1") (pintype "passive") (tstamp 5f89188b-0e2f-44d1-b17a-5cbbfe499161))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tstamp 48d00b3e-6ba5-4059-976c-d0af1a8af962)
(at 79.5 112 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/a32342d9-af26-463b-9b3d-0f089e0494b9")
(attr smd)
(fp_text reference "R13" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60b2e95e-d1b9-456d-b548-1e5af689276d)
)
(fp_text value "620" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cc223d5-b2fa-49fa-bffb-9c3a822b0fe8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c83f7f5c-7e6a-40c3-96b2-b49f4ff70d8f)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3a2d1a5-8c05-49d0-980b-74fdb0b566f9))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab3de062-a3c9-44c3-952c-e378c36047cf))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 840ca426-d616-477a-a1a1-153b40f3977e))
(fp_line (start -1.68 0.95) (end -1.68 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95a6dd4f-f83a-45fb-8b8b-a1d52ae6830b))
(fp_line (start 1.68 -0.95) (end 1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23c066bd-3cf0-447a-9f4b-ea44644dd900))
(fp_line (start 1.68 0.95) (end -1.68 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0dacdb0e-d261-46f3-8c5b-0d3015d3820a))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70c1600c-d4b3-4dfb-a7a3-12133b1959a4))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9385da4-6c59-4fb8-aeb6-b2c68eb9d574))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp adcedd50-c2d8-4e00-b6ab-21b5dee1aee1))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a36e076b-f951-4075-a06a-112f02113506))
(pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 11 "Net-(D4-A)") (pintype "passive") (tstamp 9df2eee2-e480-4139-9dbe-591e5dce7be5))
(pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902439)
(net 32 "Net-(U3-GPIO10)") (pintype "passive") (tstamp 9dbb8e75-3ca7-4ed4-9717-d53406f4f62a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (layer "F.Cu")
(tstamp 4b30532c-fc36-456c-b3e8-dc85069c7cd9)
(at 127.25 94.75 180)
(descr "CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "openzirk.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/04b9fbca-062a-4fba-8b9b-f21bac6b1e71")
(attr through_hole)
(fp_text reference "C2" (at 1 -3.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c9a1607-117a-46ec-8dfd-3b49937e2a3f)
)
(fp_text value "10uF" (at 1 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e244469-6faf-4b9e-8c0f-f4a70c9c48a3)
)
(fp_text user "${REFERENCE}" (at 1 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))