-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrel_osc.kicad_sch
1074 lines (1055 loc) · 36.8 KB
/
rel_osc.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 20230819) (generator eeschema)
(uuid c42d136e-a01c-4774-8c23-cf19b13d034e)
(paper "A4")
(lib_symbols
(symbol "4xxx:40106" (pin_names (offset 1.016)) (exclude_from_sim no) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "40106" (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/HEF40106B.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "Hex Schmitt trigger inverter" (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" "CMOS" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP?14*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "40106_1_0"
(polyline
(pts
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy 0.635 -1.27)
(xy 0.635 1.27)
(xy 1.27 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
(symbol "40106_2_0"
(polyline
(pts
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy 0.635 -1.27)
(xy 0.635 1.27)
(xy 1.27 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "40106_3_0"
(polyline
(pts
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy 0.635 -1.27)
(xy 0.635 1.27)
(xy 1.27 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "40106_4_0"
(polyline
(pts
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy 0.635 -1.27)
(xy 0.635 1.27)
(xy 1.27 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "40106_5_0"
(polyline
(pts
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy 0.635 -1.27)
(xy 0.635 1.27)
(xy 1.27 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
)
(symbol "40106_6_0"
(polyline
(pts
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy 0.635 -1.27)
(xy 0.635 1.27)
(xy 1.27 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
)
(symbol "40106_7_0"
(pin power_in line (at 0 12.7 270) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "40106_7_1"
(rectangle (start -5.08 7.62) (end 5.08 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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 "Description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (exclude_from_sim no) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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 "Description" "Resistor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Simulation_SPICE:VDC" (pin_numbers hide) (pin_names (offset 0.0254)) (exclude_from_sim no) (in_bom yes) (on_board yes)
(property "Reference" "V" (at 2.54 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1" (at 2.54 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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 "Description" "Voltage source, DC" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=+ 2=-" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Type" "DC" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "V" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "simulation" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VDC_0_0"
(polyline
(pts
(xy -1.27 0.254)
(xy 1.27 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.762 -0.254)
(xy -1.27 -0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 -0.254)
(xy -0.254 -0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -0.254)
(xy 0.762 -0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(text "+" (at 0 1.905 0)
(effects (font (size 1.27 1.27)))
)
)
(symbol "VDC_0_1"
(circle (center 0 0) (radius 2.54)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "VDC_1_1"
(pin passive line (at 0 5.08 270) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 2.54)
(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)) (exclude_from_sim no) (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 "Description" "Power symbol creates a global label with name \"GND\" , ground" (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)
)
(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 212.852 68.834) (diameter 0) (color 0 0 0 0)
(uuid 3ec3ea95-2ee3-41bb-b090-0b93ba8d62af)
)
(junction (at 174.752 55.372) (diameter 0) (color 0 0 0 0)
(uuid 45b84d81-1768-4c19-b90f-1fa91acfd824)
)
(junction (at 174.752 68.834) (diameter 0) (color 0 0 0 0)
(uuid d5b98183-fbf1-4326-9779-5ec383a95586)
)
(wire (pts (xy 180.594 40.386) (xy 174.752 40.386))
(stroke (width 0) (type default))
(uuid 0629bbd6-6f41-40d0-afb5-72925882b054)
)
(wire (pts (xy 236.728 68.834) (xy 212.852 68.834))
(stroke (width 0) (type default))
(uuid 0b05875a-7232-44ce-b55c-2305140638a2)
)
(wire (pts (xy 174.752 68.834) (xy 174.752 69.342))
(stroke (width 0) (type default))
(uuid 4a31940d-7f75-44fe-80f2-881bfcb908d8)
)
(wire (pts (xy 174.752 55.372) (xy 174.752 61.214))
(stroke (width 0) (type default))
(uuid 5c05e013-33f7-47db-858a-9dbf00f80541)
)
(wire (pts (xy 189.992 40.386) (xy 185.674 40.386))
(stroke (width 0) (type default))
(uuid 67921d86-f507-41b5-b73b-038e0f9fd17d)
)
(wire (pts (xy 236.728 61.214) (xy 236.728 68.834))
(stroke (width 0) (type default))
(uuid 80e0da28-a324-42e4-bd49-63ba9433ac58)
)
(wire (pts (xy 174.752 40.386) (xy 174.752 55.372))
(stroke (width 0) (type default))
(uuid b1f1553a-c32d-40f5-8f91-92cbca4cd6ba)
)
(wire (pts (xy 236.728 51.054) (xy 236.728 43.434))
(stroke (width 0) (type default))
(uuid b5c9997a-4142-4840-8ac4-b7cf8afdafda)
)
(wire (pts (xy 236.728 43.434) (xy 212.852 43.434))
(stroke (width 0) (type default))
(uuid c622b47e-da18-4e80-99d7-fa125d7bf705)
)
(wire (pts (xy 189.992 55.372) (xy 189.992 40.386))
(stroke (width 0) (type default))
(uuid c86ddd2a-dc3c-4a09-a032-b11147e1f41a)
)
(wire (pts (xy 174.752 68.834) (xy 212.852 68.834))
(stroke (width 0) (type default))
(uuid ce1965df-9adb-419b-bba2-0f04bf25b578)
)
(wire (pts (xy 174.752 66.294) (xy 174.752 68.834))
(stroke (width 0) (type default))
(uuid d4a113d4-fadd-4d59-bd01-430558e2d724)
)
(text ".options noinit" (exclude_from_sim no)
(at 218.44 79.375 0)
(effects (font (size 1.27 1.27)))
(uuid a141679d-6dff-470b-8ba7-d8e65f5bd688)
)
(label "vdd" (at 223.52 43.434 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9c740503-919f-4535-9211-c04ce380e651)
)
(label "out" (at 189.992 44.45 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cdc1102b-ecb5-4dfd-948c-74a33662c3ae)
)
(label "cc" (at 174.752 48.006 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e88def53-f6a1-47f9-b8b3-2843e3933019)
)
(symbol (lib_id "4xxx:40106") (at 182.372 55.372 0) (unit 1)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 25af858b-828b-476a-bcb7-a4e1d045e3c0)
(property "Reference" "U1" (at 182.372 46.736 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "40106" (at 182.372 49.276 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 182.372 55.372 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/HEF40106B.pdf" (at 182.372 55.372 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 182.372 55.372 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Library" "CD40106B.lib" (at 182.372 55.372 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Name" "CD40106B" (at 182.372 55.372 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "SUBCKT" (at 182.372 55.372 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=Y 2=A 7=AGND 14=VCC" (at 182.372 55.372 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 62dba568-0246-46dc-8b7c-22c491f8d760))
(pin "2" (uuid 715d0642-bb7f-47ee-8b36-48ad952d19a9))
(pin "3" (uuid f7c7c6a5-74ae-4c16-9696-24a03eb3a677))
(pin "4" (uuid 59dcffbf-cbc8-4bd8-8dd1-0b4a2536605d))
(pin "5" (uuid e06386a8-af5c-4336-8f0f-04a6c27513a2))
(pin "6" (uuid e0ba5adc-3924-435e-b70d-b73316292c39))
(pin "8" (uuid 1a54146b-56eb-40f1-b50d-88b96009c1f0))
(pin "9" (uuid fd60e31e-3471-4142-942c-3f2a6c07bd03))
(pin "10" (uuid 3acfd92b-97f1-4779-93c5-d120c474e939))
(pin "11" (uuid b37ceb63-f1e3-4020-bec5-3ceaeb7caf5d))
(pin "12" (uuid 647da030-1ae8-40ae-9858-9610ca43446f))
(pin "13" (uuid 2d1a5461-d636-493a-b542-bd00b39e70e5))
(pin "14" (uuid b6e4128b-b05c-4d28-8e75-a7f3d87e0dca))
(pin "7" (uuid fe4fb509-a66c-43bf-b56f-b558d53a64c4))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "U1") (unit 1)
)
)
)
)
(symbol (lib_id "4xxx:40106") (at 189.484 87.376 0) (unit 2)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 34d5ceee-84b5-4db5-ac8c-c9b59e84dd4c)
(property "Reference" "U1" (at 189.484 78.74 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "40106" (at 189.484 81.28 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 189.484 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/HEF40106B.pdf" (at 189.484 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 189.484 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Library" "CD40106B.lib" (at 189.484 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Name" "CD40106B" (at 189.484 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "SUBCKT" (at 189.484 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=Y 2=A 7=AGND 14=VCC" (at 189.484 87.376 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9001bce1-cd6c-46b9-b8ed-23bd94b89628))
(pin "2" (uuid 90d790fa-6541-446a-8018-cc97c001e6ab))
(pin "3" (uuid 573c48a1-4463-4bf2-8d18-aca4397c8a96))
(pin "4" (uuid de3c0d13-37b1-40a9-b860-04dc4ac79cd1))
(pin "5" (uuid a4ec29fc-0e2c-4d05-a099-5e9dd224e6a2))
(pin "6" (uuid 1fcaab11-73c5-4f7c-a479-3650974b6203))
(pin "8" (uuid 343ca7d2-125f-46c4-91ae-6ae920048b5e))
(pin "9" (uuid 956a7fae-882e-42e8-b12a-2129ae384635))
(pin "10" (uuid a8307321-fe69-4352-a76d-0a4a66c5f401))
(pin "11" (uuid e7b4a226-cf7e-4fe4-bab1-d27aa1fe4b65))
(pin "12" (uuid bd8d4414-d437-48e9-a66e-d12c46111e8f))
(pin "13" (uuid 84b772bd-1220-434f-a49b-771576ca7e8e))
(pin "14" (uuid afef843f-e050-406e-adf0-703a50b526db))
(pin "7" (uuid aaa00f7a-330e-46ca-8a6c-d1dcbbad8663))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "U1") (unit 2)
)
)
)
)
(symbol (lib_id "power:GND") (at 174.752 69.342 0) (unit 1)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 41eaddc5-d590-44a6-815e-cb989c52b93e)
(property "Reference" "#PWR01" (at 174.752 75.692 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 174.752 73.66 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 174.752 69.342 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 174.752 69.342 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 174.752 69.342 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1c0d01d6-5613-4f46-9ed0-6bbf2abd2529))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "#PWR01") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 174.752 63.754 0) (unit 1)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4ebd6073-c7cd-4245-8355-7b218e65e6bd)
(property "Reference" "C1" (at 177.8 62.4903 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 177.8 65.0303 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 174.752 63.754 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 174.752 63.754 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 174.752 63.754 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0dbf66e1-f10d-4238-a67e-e9274b452a5e))
(pin "2" (uuid 8e99e205-eeaa-4333-bdae-a6df8b8de9f7))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "C1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_Small") (at 183.134 40.386 270) (unit 1)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)
(uuid 60713a7d-2b28-41b1-9e5b-82e809ca1d4a)
(property "Reference" "R1" (at 183.134 34.798 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 183.134 37.338 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 183.134 40.386 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 183.134 40.386 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 183.134 40.386 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b1a6da84-2fec-4ba1-99d4-26d2e28cb92d))
(pin "2" (uuid d009f45b-f86f-48ad-b0b1-e5cba50ef330))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "R1") (unit 1)
)
)
)
)
(symbol (lib_id "4xxx:40106") (at 189.23 105.664 0) (unit 3)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7acee72c-d0f0-4145-87e0-6bdd5be7d116)
(property "Reference" "U1" (at 189.23 96.52 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "40106" (at 189.23 99.06 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 189.23 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/HEF40106B.pdf" (at 189.23 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 189.23 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Library" "CD40106B.lib" (at 189.23 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Name" "CD40106B" (at 189.23 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "SUBCKT" (at 189.23 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=Y 2=A 7=AGND 14=VCC" (at 189.23 105.664 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 25147392-fd40-4bd6-8432-b10d43319f3e))
(pin "2" (uuid 8ade642a-c644-4571-96e8-0cb96b9702ab))
(pin "3" (uuid 00dec32d-0d4b-4fea-ba28-d0b7021eb640))
(pin "4" (uuid b94ce74a-5fe4-4289-9c8e-7f951423e331))
(pin "5" (uuid 3db27979-fe53-4a88-bb86-9deab485b6ad))
(pin "6" (uuid 7c387d04-40b8-4950-a5bc-d073a68d9070))
(pin "8" (uuid 871efe20-232e-4c06-a6d4-d4c9a3375494))
(pin "9" (uuid 66de29f2-5773-4f7f-b58a-568f3ba73c34))
(pin "10" (uuid fe930d93-fae9-4ad4-bd43-a1814b80cc7a))
(pin "11" (uuid 3f0e77c9-0bfe-44b7-9646-7857475b0dea))
(pin "12" (uuid 18a32b56-ea27-4941-8b29-72f0ab1fc044))
(pin "13" (uuid 7e897a58-56ec-490b-ae71-2fc7cf12281b))
(pin "14" (uuid 77915ba9-fdc6-4d54-95ce-585ee0a2aae6))
(pin "7" (uuid 3d1ca346-75c2-4da2-b32b-cf92367ab321))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "U1") (unit 3)
)
)
)
)
(symbol (lib_id "4xxx:40106") (at 188.214 154.432 0) (unit 6)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 860d5c67-04a3-4a54-a35e-f05b126ab5af)
(property "Reference" "U1" (at 188.214 145.288 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "40106" (at 188.214 147.828 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 188.214 154.432 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/HEF40106B.pdf" (at 188.214 154.432 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 188.214 154.432 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Library" "CD40106B.lib" (at 188.214 154.432 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Name" "CD40106B" (at 188.214 154.432 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "SUBCKT" (at 188.214 154.432 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=Y 2=A 7=AGND 14=VCC" (at 188.214 154.432 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a4cc97a7-933a-489f-8ea4-28df2bc22049))
(pin "2" (uuid e8958613-e590-4c64-b6f6-a298c3a29484))
(pin "3" (uuid 8ea0ded8-7521-47f7-a27a-6413025f5318))
(pin "4" (uuid 0077b850-102c-4469-9ed4-e5478da86771))
(pin "5" (uuid 38045c16-f19b-4e59-a088-5a717addb6bf))
(pin "6" (uuid 5f8ac5ca-bb2e-4a49-9e25-cb819064d5da))
(pin "8" (uuid f096c54e-8bda-433c-9397-fad56a424f1e))
(pin "9" (uuid aae83999-cb5f-4195-9ec6-2830622138d6))
(pin "10" (uuid 44ef5c88-b797-41a3-9282-a1311d6e8b16))
(pin "11" (uuid 77a28a1c-dfe5-4feb-a4ef-f998045f5ccd))
(pin "12" (uuid 26a73fad-50c8-451d-9136-6de5bdb6c6da))
(pin "13" (uuid d8d56a07-9c58-47f3-babf-4bcc9e56261d))
(pin "14" (uuid 5d7b9129-50f2-4192-8d37-8b23b3c27f5f))
(pin "7" (uuid cabc2d9d-4221-48fe-811b-41881d541921))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "U1") (unit 6)
)
)
)
)
(symbol (lib_id "Simulation_SPICE:VDC") (at 236.728 56.134 0) (unit 1)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 86c61073-0210-41f9-8752-8573ab7f706a)
(property "Reference" "V1" (at 240.03 54.7342 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "5" (at 240.03 57.2742 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 236.728 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 236.728 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 236.728 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=+ 2=-" (at 236.728 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Type" "DC" (at 236.728 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "V" (at 236.728 56.134 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid 81a82d74-9d88-47f5-873f-d851528c4619))
(pin "2" (uuid dc0b8cfe-04a1-441a-b3a6-1ebd358011cb))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "V1") (unit 1)
)
)
)
)
(symbol (lib_id "4xxx:40106") (at 212.852 56.134 0) (unit 7)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid e61c9506-f4a8-4da9-9a7d-c94fafd6e8fa)
(property "Reference" "U1" (at 219.71 54.864 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "40106" (at 219.71 57.404 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 212.852 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/HEF40106B.pdf" (at 212.852 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 212.852 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Library" "CD40106B.lib" (at 212.852 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Name" "CD40106B" (at 212.852 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "SUBCKT" (at 212.852 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=Y 2=A 7=AGND 14=VCC" (at 212.852 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ae9fd174-0ac5-4158-b358-34327e3d46df))
(pin "2" (uuid ba5d21a3-76ee-4644-9aae-e140509f4ac2))
(pin "3" (uuid 709c044d-ae93-4145-a5c2-9407024e2504))
(pin "4" (uuid a2027316-c500-4901-a8b8-7f2e2e09361d))
(pin "5" (uuid 52adce8e-59a2-4399-a490-d602f63ac69e))
(pin "6" (uuid bccfc928-e294-4556-a535-3b65a555c6cf))
(pin "8" (uuid bc127db5-84c5-4a46-bb83-d96a9625f86b))
(pin "9" (uuid 7ded382b-5f5e-4162-99e4-ede94b717b24))
(pin "10" (uuid a2962595-9365-4987-b281-db9f22617784))
(pin "11" (uuid 79ce30f9-240f-4b11-85a5-789dc4443c1c))
(pin "12" (uuid c78cb20c-3984-403e-960b-04d69324ec8c))
(pin "13" (uuid 89f88879-9098-42c5-b7f5-7d9ff55d662b))
(pin "14" (uuid c2080239-e0f5-49f4-9459-96678048f333))
(pin "7" (uuid c02f8766-d620-4618-8af0-c29a6dd4a8d3))
(instances
(project "rel_osc"
(path "/c42d136e-a01c-4774-8c23-cf19b13d034e"
(reference "U1") (unit 7)
)
)
)
)
(symbol (lib_id "4xxx:40106") (at 188.722 122.428 0) (unit 4)
(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f75fcbb3-dba7-46da-8d63-3bf458f1489d)
(property "Reference" "U1" (at 188.722 114.3 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "40106" (at 188.722 116.84 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 188.722 122.428 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/HEF40106B.pdf" (at 188.722 122.428 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 188.722 122.428 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Library" "CD40106B.lib" (at 188.722 122.428 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Name" "CD40106B" (at 188.722 122.428 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "SUBCKT" (at 188.722 122.428 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=Y 2=A 7=AGND 14=VCC" (at 188.722 122.428 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7f0556ff-8e6a-4c32-bc33-17e3f97c9aed))
(pin "2" (uuid 07315c12-f4d2-4f62-a109-7f3366f539b5))
(pin "3" (uuid 40f208a0-fc19-4a0e-84b5-74368a610c13))
(pin "4" (uuid 39558dda-82bd-4a3b-9438-acf560de66cf))
(pin "5" (uuid d66b00cc-616a-4681-b89c-3e589617ee6b))
(pin "6" (uuid 2d0c2d0b-6b9a-4b14-b5c2-52191c77d822))