forked from laurivosandi/nixiesp12
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nixiesp.net
1268 lines (1268 loc) · 43.5 KB
/
nixiesp.net
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
(export (version D)
(design
(source /home/lauri/nixiesp12/nixiesp.sch)
(date "L 22 dets 2018 18:27:34 EET")
(tool "Eeschema 4.0.7")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title NixiESP12)
(company "Lauri Võsandi")
(rev)
(date 2017-07-13)
(source nixiesp.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U5)
(value 74HC595)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74xx) (part 74HC595))
(sheetpath (names /) (tstamps /))
(tstamp 59217C2D))
(comp (ref N4)
(value HH:XM:SS)
(footprint nixiesp:russian-nixies-IN-12)
(libsource (lib russian-nixies) (part IN-12A))
(sheetpath (names /) (tstamps /))
(tstamp 59219102))
(comp (ref N3)
(value HH:MX:SS)
(footprint nixiesp:russian-nixies-IN-12)
(libsource (lib russian-nixies) (part IN-12A))
(sheetpath (names /) (tstamps /))
(tstamp 592191F2))
(comp (ref N5)
(value HH:MM:SX)
(footprint nixiesp:russian-nixies-IN-12)
(libsource (lib russian-nixies) (part IN-12A))
(sheetpath (names /) (tstamps /))
(tstamp 5921FC78))
(comp (ref N6)
(value HH:MM:XS)
(footprint nixiesp:russian-nixies-IN-12)
(libsource (lib russian-nixies) (part IN-12A))
(sheetpath (names /) (tstamps /))
(tstamp 5921FE00))
(comp (ref U8)
(value 74HC595)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74xx) (part 74HC595))
(sheetpath (names /) (tstamps /))
(tstamp 5921FF85))
(comp (ref J2)
(value ESP8266)
(footprint Socket_Strips:Socket_Strip_Straight_2x04_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_02X04))
(sheetpath (names /) (tstamps /))
(tstamp 592253DB))
(comp (ref N2)
(value XH:MM:SS)
(footprint nixiesp:russian-nixies-IN-12)
(libsource (lib russian-nixies) (part IN-12A))
(sheetpath (names /) (tstamps /))
(tstamp 592192B4))
(comp (ref Q2)
(value BS107)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib nixiesp-rescue) (part BS107-RESCUE-nixiesp))
(sheetpath (names /) (tstamps /))
(tstamp 592AC4C6))
(comp (ref Q1)
(value BS107)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib nixiesp-rescue) (part BS107-RESCUE-nixiesp))
(sheetpath (names /) (tstamps /))
(tstamp 592ACDBD))
(comp (ref R8)
(value 15k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AD40C))
(comp (ref R7)
(value 15k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AD4D5))
(comp (ref Q4)
(value BS107)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib nixiesp-rescue) (part BS107-RESCUE-nixiesp))
(sheetpath (names /) (tstamps /))
(tstamp 592B0CA4))
(comp (ref R9)
(value 15k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592B1199))
(comp (ref R10)
(value 15k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592B12F4))
(comp (ref N1)
(value HX:MM:SS)
(footprint nixiesp:russian-nixies-IN-12)
(libsource (lib russian-nixies) (part IN-12A))
(sheetpath (names /) (tstamps /))
(tstamp 59219309))
(comp (ref R11)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AD7D9))
(comp (ref R12)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AE63C))
(comp (ref R13)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AE6EF))
(comp (ref R14)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AE7DF))
(comp (ref R15)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AE91A))
(comp (ref R16)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 592AE9E2))
(comp (ref J1)
(value "Power 9-15V")
(footprint Connectors_Terminal_Blocks:TerminalBlock_Pheonix_PT-3.5mm_2pol)
(libsource (lib nixiesp-cache) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 592B31AF))
(comp (ref U7)
(value K155ID1)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74141) (part 74141-DIP))
(sheetpath (names /) (tstamps /))
(tstamp 592BC62A))
(comp (ref N7)
(value IN-6)
(footprint nixiesp:russian-nixies-IN-6)
(libsource (lib russian-nixies) (part IN-6))
(sheetpath (names /) (tstamps /))
(tstamp 592BEC1C))
(comp (ref N10)
(value IN-6)
(footprint nixiesp:russian-nixies-IN-6)
(libsource (lib russian-nixies) (part IN-6))
(sheetpath (names /) (tstamps /))
(tstamp 592BF0B0))
(comp (ref N9)
(value IN-6)
(footprint nixiesp:russian-nixies-IN-6)
(libsource (lib russian-nixies) (part IN-6))
(sheetpath (names /) (tstamps /))
(tstamp 592BF164))
(comp (ref N8)
(value IN-6)
(footprint nixiesp:russian-nixies-IN-6)
(libsource (lib russian-nixies) (part IN-6))
(sheetpath (names /) (tstamps /))
(tstamp 592BF578))
(comp (ref U9)
(value K155ID1)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74141) (part 74141-DIP))
(sheetpath (names /) (tstamps /))
(tstamp 592F06C2))
(comp (ref J9)
(value CONN_01X05)
(footprint Socket_Strips:Socket_Strip_Straight_1x05_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 593FFF9F))
(comp (ref U12)
(value LM1117-3.3)
(footprint TO_SOT_Packages_SMD:SOT-223)
(libsource (lib nixiesp-rescue) (part LM1117-3.3-RESCUE-nixiesp))
(sheetpath (names /) (tstamps /))
(tstamp 5952D1A4))
(comp (ref U10)
(value LM1117-5.0)
(footprint TO_SOT_Packages_SMD:SOT-223)
(libsource (lib nixiesp-rescue) (part LM1117-5.0-RESCUE-nixiesp))
(sheetpath (names /) (tstamps /))
(tstamp 5952D692))
(comp (ref U1)
(value 74HC595)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74xx) (part 74HC595))
(sheetpath (names /) (tstamps /))
(tstamp 59219343))
(comp (ref U11)
(value 74HC595)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74xx) (part 74HC595))
(sheetpath (names /) (tstamps /))
(tstamp 59539D8E))
(comp (ref U13)
(value 74HC595)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74xx) (part 74HC595))
(sheetpath (names /) (tstamps /))
(tstamp 5955908F))
(comp (ref J15)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59561B47))
(comp (ref J16)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59561B4D))
(comp (ref J17)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59561B53))
(comp (ref J18)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59561B59))
(comp (ref J19)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59561CC3))
(comp (ref J20)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 59561CC9))
(comp (ref J21)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 595728DA))
(comp (ref J23)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 595728E6))
(comp (ref J24)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 595728EC))
(comp (ref J25)
(value CONN_01X01)
(footprint Connectors:1pin)
(libsource (lib nixiesp-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 595728F2))
(comp (ref J13)
(value CONN_01X07)
(footprint Pin_Headers:Pin_Header_Angled_1x07_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X07))
(sheetpath (names /) (tstamps /))
(tstamp 595BF0AC))
(comp (ref U14)
(value 74HC595)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74xx) (part 74HC595))
(sheetpath (names /) (tstamps /))
(tstamp 595C03E1))
(comp (ref J12)
(value CONN_01X06)
(footprint Pin_Headers:Pin_Header_Angled_1x06_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 595C0883))
(comp (ref U6)
(value K155ID1)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74141) (part 74141-DIP))
(sheetpath (names /) (tstamps /))
(tstamp 595C2F35))
(comp (ref U4)
(value K155ID1)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74141) (part 74141-DIP))
(sheetpath (names /) (tstamps /))
(tstamp 595C3173))
(comp (ref J10)
(value CONN_01X06)
(footprint Pin_Headers:Pin_Header_Angled_1x06_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 595C3185))
(comp (ref U3)
(value K155ID1)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74141) (part 74141-DIP))
(sheetpath (names /) (tstamps /))
(tstamp 595C364B))
(comp (ref U2)
(value K155ID1)
(footprint Housings_DIP:DIP-16_W7.62mm)
(libsource (lib 74141) (part 74141-DIP))
(sheetpath (names /) (tstamps /))
(tstamp 595C366A))
(comp (ref J3)
(value CONN_01X06)
(footprint Pin_Headers:Pin_Header_Angled_1x06_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 595C367C))
(comp (ref J5)
(value CONN_01X06)
(footprint Socket_Strips:Socket_Strip_Straight_1x06_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 595BD9F2))
(comp (ref J29)
(value CONN_01X06)
(footprint Socket_Strips:Socket_Strip_Straight_1x06_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 595C1B86))
(comp (ref J27)
(value CONN_01X06)
(footprint Socket_Strips:Socket_Strip_Straight_1x06_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 595C37DE))
(comp (ref J31)
(value CONN_01X07)
(footprint Socket_Strips:Socket_Strip_Straight_1x07_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X07))
(sheetpath (names /) (tstamps /))
(tstamp 595C3C2A))
(comp (ref R1)
(value 2.2k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59692FCB))
(comp (ref C1)
(value C)
(footprint Capacitors_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBE841))
(comp (ref C3)
(value C)
(footprint Capacitors_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBEADC))
(comp (ref C2)
(value CP)
(footprint Capacitors_THT:CP_Radial_D8.0mm_P3.50mm)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBECC0))
(comp (ref C4)
(value CP)
(footprint Capacitors_THT:CP_Radial_D8.0mm_P3.50mm)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBEDBC))
(comp (ref R2)
(value 2.2k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5BEC016E))
(comp (ref J6)
(value CONN_01X07)
(footprint Pin_Headers:Pin_Header_Angled_1x07_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X07))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E4CB5))
(comp (ref Q3)
(value BS107)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib nixiesp-rescue) (part BS107-RESCUE-nixiesp))
(sheetpath (names /) (tstamps /))
(tstamp 592B0897))
(comp (ref J11)
(value CONN_01X07)
(footprint Socket_Strips:Socket_Strip_Straight_1x07_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X07))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E5AB4))
(comp (ref J14)
(value CONN_01X07)
(footprint Socket_Strips:Socket_Strip_Straight_1x07_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X07))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E73B8))
(comp (ref J4)
(value CONN_01X07)
(footprint Pin_Headers:Pin_Header_Angled_1x07_Pitch2.54mm)
(libsource (lib nixiesp-cache) (part CONN_01X07))
(sheetpath (names /) (tstamps /))
(tstamp 5C1E785F)))
(libparts
(libpart (lib 74xx) (part 74HC595)
(aliases
(alias 74LS596)
(alias 74LS595))
(description "8 bits serial in // out Shift Register 3 State Out")
(docs 74xx/74HC595.pdf)
(fields
(field (name Reference) U)
(field (name Value) 74HC595))
(pins
(pin (num 1) (name QB) (type 3state))
(pin (num 2) (name QC) (type 3state))
(pin (num 3) (name QD) (type 3state))
(pin (num 4) (name QE) (type 3state))
(pin (num 5) (name QF) (type 3state))
(pin (num 6) (name QG) (type 3state))
(pin (num 7) (name QH) (type 3state))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name ~QH) (type output))
(pin (num 10) (name SRCLR) (type input))
(pin (num 11) (name SRCLK) (type input))
(pin (num 12) (name RCLK) (type input))
(pin (num 13) (name G) (type input))
(pin (num 14) (name SER) (type input))
(pin (num 15) (name QA) (type 3state))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib nixiesp-rescue) (part BS107-RESCUE-nixiesp)
(footprints
(fp TO-92*))
(fields
(field (name Reference) Q)
(field (name Value) BS107-RESCUE-nixiesp)
(field (name Footprint) TO_SOT_Packages_THT:TO-92_Molded_Narrow))
(pins
(pin (num 1) (name D) (type passive))
(pin (num 2) (name G) (type input))
(pin (num 3) (name S) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib nixiesp-cache) (part CONN_01X01)
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib nixiesp-cache) (part CONN_01X02)
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X02))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))))
(libpart (lib nixiesp-cache) (part CONN_01X05)
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))))
(libpart (lib nixiesp-cache) (part CONN_01X06)
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X06))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))))
(libpart (lib nixiesp-cache) (part CONN_01X07)
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X07))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))))
(libpart (lib nixiesp-cache) (part CONN_02X04)
(footprints
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*)
(fp IDC_Header_Straight_*))
(fields
(field (name Reference) J)
(field (name Value) CONN_02X04))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))))
(libpart (lib device) (part CP)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib 74141) (part Housings_DIP:DIP-16_W7.62mm)
(aliases
(alias 74141-DIP))
(footprints
(fp DIP-16))
(fields
(field (name Reference) U)
(field (name Value) Housings_DIP:DIP-16_W7.62mm)
(field (name Footprint) dip-sip:DIP-16))
(pins
(pin (num 1) (name 4) (type openCol))
(pin (num 2) (name 2) (type openCol))
(pin (num 3) (name A) (type input))
(pin (num 4) (name D) (type input))
(pin (num 5) (name VCC) (type power_in))
(pin (num 6) (name B) (type input))
(pin (num 7) (name C) (type input))
(pin (num 8) (name 8) (type openCol))
(pin (num 9) (name 9) (type openCol))
(pin (num 10) (name 0) (type openCol))
(pin (num 11) (name 7) (type openCol))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name 6) (type openCol))
(pin (num 14) (name 1) (type openCol))
(pin (num 15) (name 3) (type openCol))
(pin (num 16) (name 5) (type openCol))))
(libpart (lib russian-nixies) (part IN-12A)
(fields
(field (name Reference) N)
(field (name Value) IN-12A)
(field (name Footprint) russian-nixies-IN-12))
(pins
(pin (num 0) (name 0) (type BiDi))
(pin (num 1) (name 1) (type BiDi))
(pin (num 2) (name 2) (type BiDi))
(pin (num 3) (name 3) (type BiDi))
(pin (num 4) (name 4) (type BiDi))
(pin (num 5) (name 5) (type BiDi))
(pin (num 6) (name 6) (type BiDi))
(pin (num 7) (name 7) (type BiDi))
(pin (num 8) (name 8) (type BiDi))
(pin (num 9) (name 9) (type BiDi))
(pin (num A) (name A) (type BiDi))))
(libpart (lib russian-nixies) (part IN-6)
(fields
(field (name Reference) N)
(field (name Value) IN-6)
(field (name Footprint) russian-nixies-IN-6))
(pins
(pin (num A) (name A) (type BiDi))
(pin (num K) (name K) (type BiDi))))
(libpart (lib nixiesp-rescue) (part LM1117-3.3-RESCUE-nixiesp)
(footprints
(fp SOT-223*)
(fp TO-263*)
(fp TO-252*))
(fields
(field (name Reference) U)
(field (name Value) LM1117-3.3-RESCUE-nixiesp))
(pins
(pin (num 1) (name GND/ADJ) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))
(pin (num 4) (name VO) (type power_out))))
(libpart (lib nixiesp-rescue) (part LM1117-5.0-RESCUE-nixiesp)
(footprints
(fp SOT-223*)
(fp TO-263*)
(fp TO-252*))
(fields
(field (name Reference) U)
(field (name Value) LM1117-5.0-RESCUE-nixiesp))
(pins
(pin (num 1) (name GND/ADJ) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))
(pin (num 4) (name VO) (type power_out))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive)))))
(libraries
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical 74xx)
(uri /usr/share/kicad/library/74xx.lib))
(library (logical nixiesp-rescue)
(uri nixiesp-rescue.lib))
(library (logical 74141)
(uri 74141.lib))
(library (logical russian-nixies)
(uri russian-nixies.lib))
(library (logical nixiesp-cache)
(uri /home/lauri/nixiesp12/nixiesp-cache.lib)))
(nets
(net (code 1) (name "Net-(J10-Pad1)")
(node (ref J10) (pin 1))
(node (ref Q2) (pin 2)))
(net (code 2) (name "Net-(N8-PadA)")
(node (ref N8) (pin A))
(node (ref R7) (pin 2)))
(net (code 3) (name "Net-(J11-Pad7)")
(node (ref U1) (pin 1))
(node (ref J11) (pin 7)))
(net (code 4) (name "Net-(J5-Pad1)")
(node (ref J5) (pin 1))
(node (ref U1) (pin 2)))
(net (code 5) (name "Net-(J12-Pad1)")
(node (ref Q4) (pin 2))
(node (ref J12) (pin 1)))
(net (code 6) (name /data)
(node (ref U8) (pin 14))
(node (ref J2) (pin 3))
(node (ref R2) (pin 2)))
(net (code 7) (name "Net-(N10-PadK)")
(node (ref N10) (pin K))
(node (ref Q3) (pin 1)))
(net (code 8) (name GND)
(node (ref U12) (pin 1))
(node (ref J4) (pin 1))
(node (ref U11) (pin 13))
(node (ref J2) (pin 1))
(node (ref U2) (pin 12))
(node (ref J17) (pin 1))
(node (ref U11) (pin 8))
(node (ref J14) (pin 1))
(node (ref U1) (pin 13))
(node (ref J15) (pin 1))
(node (ref U5) (pin 13))
(node (ref J20) (pin 1))
(node (ref U1) (pin 8))
(node (ref U3) (pin 12))
(node (ref U10) (pin 1))
(node (ref U5) (pin 8))
(node (ref J23) (pin 1))
(node (ref U4) (pin 12))
(node (ref J31) (pin 1))
(node (ref U8) (pin 13))
(node (ref U14) (pin 8))
(node (ref J13) (pin 1))
(node (ref U14) (pin 13))
(node (ref J25) (pin 1))
(node (ref C1) (pin 2))
(node (ref C3) (pin 2))
(node (ref C2) (pin 2))
(node (ref C4) (pin 2))
(node (ref J21) (pin 1))
(node (ref U6) (pin 12))
(node (ref J27) (pin 1))
(node (ref U8) (pin 8))
(node (ref J24) (pin 1))
(node (ref U13) (pin 13))
(node (ref J6) (pin 1))
(node (ref Q3) (pin 3))
(node (ref J11) (pin 1))
(node (ref U13) (pin 8))
(node (ref J16) (pin 1))
(node (ref J18) (pin 1))
(node (ref J19) (pin 1))
(node (ref J3) (pin 1))
(node (ref U7) (pin 12))
(node (ref J1) (pin 1))
(node (ref J9) (pin 4))
(node (ref Q2) (pin 3))
(node (ref Q1) (pin 3))
(node (ref Q4) (pin 3))
(node (ref U9) (pin 12))
(node (ref J9) (pin 2)))
(net (code 9) (name "Net-(J6-Pad2)")
(node (ref J6) (pin 2))
(node (ref U6) (pin 7)))
(net (code 10) (name "Net-(J6-Pad3)")
(node (ref J6) (pin 3))
(node (ref U6) (pin 6)))
(net (code 11) (name "Net-(J6-Pad5)")
(node (ref J6) (pin 5))
(node (ref U6) (pin 4)))
(net (code 12) (name "Net-(J6-Pad6)")
(node (ref U6) (pin 3))
(node (ref J6) (pin 6)))
(net (code 13) (name "Net-(J6-Pad7)")
(node (ref J6) (pin 7))
(node (ref Q3) (pin 2)))
(net (code 14) (name "Net-(J29-Pad1)")
(node (ref U5) (pin 2))
(node (ref J29) (pin 1)))
(net (code 15) (name "Net-(J14-Pad6)")
(node (ref J14) (pin 6))
(node (ref U13) (pin 6)))
(net (code 16) (name "Net-(J27-Pad2)")
(node (ref U8) (pin 3))
(node (ref J27) (pin 2)))
(net (code 17) (name "Net-(J27-Pad3)")
(node (ref J27) (pin 3))
(node (ref U8) (pin 4)))
(net (code 18) (name "Net-(J14-Pad5)")
(node (ref J14) (pin 5))
(node (ref U13) (pin 5)))
(net (code 19) (name "Net-(J14-Pad3)")
(node (ref J14) (pin 3))
(node (ref U13) (pin 4)))
(net (code 20) (name "Net-(J14-Pad2)")
(node (ref J14) (pin 2))
(node (ref U13) (pin 3)))
(net (code 21) (name "Net-(J31-Pad3)")
(node (ref U14) (pin 4))
(node (ref J31) (pin 3)))
(net (code 22) (name "Net-(J31-Pad7)")
(node (ref J9) (pin 5))
(node (ref J31) (pin 7)))
(net (code 23) (name "Net-(J31-Pad6)")
(node (ref J31) (pin 6))
(node (ref U14) (pin 6)))
(net (code 24) (name "Net-(J31-Pad5)")
(node (ref U14) (pin 5))
(node (ref J31) (pin 5)))
(net (code 25) (name "Net-(J31-Pad2)")
(node (ref J31) (pin 2))
(node (ref U14) (pin 3)))
(net (code 26) (name "Net-(J27-Pad6)")
(node (ref U8) (pin 6))
(node (ref J27) (pin 6)))
(net (code 27) (name "Net-(J27-Pad5)")
(node (ref U8) (pin 5))
(node (ref J27) (pin 5)))
(net (code 28) (name "Net-(N5-Pad6)")
(node (ref U2) (pin 13))
(node (ref N5) (pin 6)))
(net (code 29) (name "Net-(N5-Pad1)")
(node (ref N5) (pin 1))
(node (ref U2) (pin 14)))
(net (code 30) (name "Net-(N5-Pad3)")
(node (ref N5) (pin 3))
(node (ref U2) (pin 15)))
(net (code 31) (name "Net-(N5-Pad4)")
(node (ref N5) (pin 4))
(node (ref U2) (pin 16)))
(net (code 32) (name VCC)
(node (ref U5) (pin 16))
(node (ref U13) (pin 10))
(node (ref U7) (pin 5))
(node (ref U9) (pin 5))
(node (ref U13) (pin 16))
(node (ref U8) (pin 10))
(node (ref U4) (pin 5))
(node (ref U3) (pin 5))
(node (ref J10) (pin 4))
(node (ref J13) (pin 4))
(node (ref U14) (pin 10))
(node (ref U14) (pin 16))
(node (ref J12) (pin 4))
(node (ref U10) (pin 4))
(node (ref U10) (pin 2))
(node (ref U5) (pin 10))
(node (ref U6) (pin 5))
(node (ref U12) (pin 4))
(node (ref U12) (pin 2))
(node (ref U11) (pin 16))
(node (ref U11) (pin 10))
(node (ref J2) (pin 4))
(node (ref J2) (pin 6))
(node (ref J2) (pin 8))
(node (ref U8) (pin 16))
(node (ref U1) (pin 16))
(node (ref U1) (pin 10))
(node (ref C4) (pin 1))
(node (ref C2) (pin 1))
(node (ref C3) (pin 1))
(node (ref C1) (pin 1))
(node (ref J29) (pin 4))
(node (ref J31) (pin 4))
(node (ref R1) (pin 2))
(node (ref U2) (pin 5))
(node (ref J4) (pin 4))
(node (ref J14) (pin 4))
(node (ref J27) (pin 4))
(node (ref J5) (pin 4))
(node (ref J3) (pin 4))
(node (ref J11) (pin 4))
(node (ref J6) (pin 4))
(node (ref R2) (pin 1)))
(net (code 33) (name "Net-(J3-Pad5)")
(node (ref J3) (pin 5))
(node (ref U2) (pin 4)))
(net (code 34) (name "Net-(J5-Pad5)")
(node (ref U1) (pin 5))
(node (ref J5) (pin 5)))
(net (code 35) (name "Net-(N5-Pad5)")
(node (ref N5) (pin 5))
(node (ref U2) (pin 1)))
(net (code 36) (name "Net-(N6-Pad0)")
(node (ref N6) (pin 0))
(node (ref U3) (pin 10)))
(net (code 37) (name "Net-(N6-Pad7)")
(node (ref N6) (pin 7))
(node (ref U3) (pin 11)))
(net (code 38) (name "Net-(N6-Pad6)")
(node (ref U3) (pin 13))
(node (ref N6) (pin 6)))
(net (code 39) (name "Net-(N6-Pad1)")
(node (ref N6) (pin 1))
(node (ref U3) (pin 14)))
(net (code 40) (name "Net-(N6-Pad3)")
(node (ref N6) (pin 3))
(node (ref U3) (pin 15)))
(net (code 41) (name "Net-(N6-Pad4)")
(node (ref N6) (pin 4))
(node (ref U3) (pin 16)))
(net (code 42) (name "Net-(N5-Pad2)")
(node (ref N5) (pin 2))
(node (ref U2) (pin 2)))
(net (code 43) (name "Net-(J3-Pad6)")
(node (ref U2) (pin 3))
(node (ref J3) (pin 6)))
(net (code 44) (name "Net-(J3-Pad3)")
(node (ref J3) (pin 3))
(node (ref U2) (pin 6)))
(net (code 45) (name "Net-(J3-Pad2)")
(node (ref J3) (pin 2))
(node (ref U2) (pin 7)))
(net (code 46) (name "Net-(N5-Pad8)")
(node (ref N5) (pin 8))
(node (ref U2) (pin 8)))
(net (code 47) (name "Net-(N5-Pad9)")
(node (ref N5) (pin 9))
(node (ref U2) (pin 9)))
(net (code 48) (name "Net-(N5-Pad0)")
(node (ref N5) (pin 0))
(node (ref U2) (pin 10)))
(net (code 49) (name "Net-(N5-Pad7)")
(node (ref N5) (pin 7))
(node (ref U2) (pin 11)))
(net (code 50) (name "Net-(J29-Pad6)")
(node (ref J29) (pin 6))
(node (ref U5) (pin 6)))
(net (code 51) (name "Net-(J1-Pad2)")
(node (ref J9) (pin 1))
(node (ref J1) (pin 2))
(node (ref U10) (pin 3))
(node (ref U12) (pin 3)))
(net (code 52) (name "Net-(N6-Pad5)")
(node (ref N6) (pin 5))
(node (ref U3) (pin 1)))
(net (code 53) (name "Net-(N4-Pad5)")
(node (ref U6) (pin 1))
(node (ref N4) (pin 5)))
(net (code 54) (name "Net-(N4-Pad6)")
(node (ref N4) (pin 6))
(node (ref U6) (pin 13)))
(net (code 55) (name "Net-(N4-Pad7)")
(node (ref N4) (pin 7))
(node (ref U6) (pin 11)))
(net (code 56) (name "Net-(N4-Pad0)")
(node (ref U6) (pin 10))
(node (ref N4) (pin 0)))
(net (code 57) (name "Net-(N2-Pad1)")
(node (ref U9) (pin 14))
(node (ref N2) (pin 1)))
(net (code 58) (name "Net-(N2-Pad2)")
(node (ref U9) (pin 2))
(node (ref N2) (pin 2)))
(net (code 59) (name "Net-(N2-Pad3)")
(node (ref U9) (pin 15))
(node (ref N2) (pin 3)))
(net (code 60) (name "Net-(N2-Pad0)")
(node (ref U9) (pin 10))
(node (ref N2) (pin 0)))
(net (code 61) (name "Net-(N6-Pad2)")
(node (ref N6) (pin 2))
(node (ref U3) (pin 2)))
(net (code 62) (name "Net-(J13-Pad7)")
(node (ref R10) (pin 1))
(node (ref R11) (pin 1))
(node (ref R13) (pin 1))
(node (ref R8) (pin 1))
(node (ref R7) (pin 1))
(node (ref J13) (pin 7))
(node (ref R9) (pin 1))
(node (ref R16) (pin 1))
(node (ref R15) (pin 1))
(node (ref R14) (pin 1))
(node (ref R12) (pin 1)))
(net (code 63) (name "Net-(J14-Pad7)")
(node (ref J14) (pin 7))
(node (ref U5) (pin 1)))
(net (code 64) (name "Net-(J4-Pad2)")
(node (ref U3) (pin 7))
(node (ref J4) (pin 2)))
(net (code 65) (name "Net-(J4-Pad3)")
(node (ref U3) (pin 6))
(node (ref J4) (pin 3)))
(net (code 66) (name "Net-(J4-Pad5)")
(node (ref J4) (pin 5))
(node (ref U3) (pin 4)))
(net (code 67) (name "Net-(J4-Pad6)")
(node (ref J4) (pin 6))
(node (ref U3) (pin 3)))
(net (code 68) (name "Net-(J4-Pad7)")
(node (ref J4) (pin 7))
(node (ref Q1) (pin 2)))
(net (code 69) (name "Net-(U11-Pad14)")
(node (ref U5) (pin 9))
(node (ref U11) (pin 14)))
(net (code 70) (name "Net-(N4-Pad8)")
(node (ref N4) (pin 8))
(node (ref U6) (pin 8)))
(net (code 71) (name "Net-(N4-Pad9)")
(node (ref U6) (pin 9))
(node (ref N4) (pin 9)))
(net (code 72) (name "Net-(N2-Pad9)")
(node (ref U9) (pin 9))
(node (ref N2) (pin 9)))
(net (code 73) (name "Net-(N2-Pad8)")
(node (ref U9) (pin 8))