-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
electronics.bigb
1533 lines (1148 loc) · 46.8 KB
/
electronics.bigb
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
= Electronics
{wiki}
= Electronic
{synonym}
= Alternating and direct current
{parent=Electronics}
= Alternating current
{parent=Alternating and direct current}
{title2=AC}
{wiki}
= Alternating current source
{parent=Alternating current}
{tag=Electronic component}
= AC source
{c}
{synonym}
{title2}
= Signal generator
{parent=Alternating current source}
{wiki}
= Hippolyte Pixii
{c}
{parent=Alternating current source}
{wiki}
= Hippolyte Pixiis alternator
{c}
{parent=Hippolyte Pixii}
{title2=1832}
Operated by a hand crank.
\Image[https://upload.wikimedia.org/wikipedia/commons/5/56/Wechselstromerzeuger.jpg]
= Inverter
{parent=Alternating current source}
{title2=DC to AC}
{wiki}
= Direct current
{parent=Alternating and direct current}
{title2=DC}
{wiki}
= DC current
{synonym}
= DC voltage
{c}
{synonym}
= Direct current source
{parent=Direct current}
{tag=Electronic component}
= DC source
{c}
{synonym}
{title2}
= 5v vs 3.3V
{parent=Direct current source}
* https://electronics.stackexchange.com/questions/186353/which-is-better-5v-or-3-3v-as-the-supply-voltage#:~:text=3.3V%20has%20a%20lower,ICs%20still%20target%205V%20systems.
* https://forum.arduino.cc/t/5v-vs-3-3v-really-whats-the-difference/648063
= AC adapter
{parent=Direct current source}
{title2=AC to DC}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/7/7f/Wall-Wart-AC-Adapter.jpg/1024px-Wall-Wart-AC-Adapter.jpg]
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Notebook-Computer-AC-Adapter.jpg/1024px-Notebook-Computer-AC-Adapter.jpg]
= Coaxial power connector
{parent=AC adapter}
{wiki}
= Polarity symbols
{parent=AC adapter}
{wiki}
Positive center is way more popular: https://gearspace.com/board/electronic-music-instruments-and-electronic-music-production/1222518-center-negative-vs-center-positive-power-supply.html
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Polarity_marking_center_positive.svg/425px-Polarity_marking_center_positive.svg.png]
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Polarity_marking_center_negative.svg/425px-Polarity_marking_center_negative.svg.png]
= Rectifier
{parent=AC adapter}
{wiki}
= Diode bridge
{parent=rectifier}
= Biasing
{parent=Electronics}
{wiki}
= Bias current
{synonym}
= Bias voltage
{synonym}
= Circuit diagram
{parent=Electronics}
{wiki}
= ASCII art circuit diagram
{c}
{parent=Circuit diagram}
{tag=ASCII art}
* https://github.com/Blokkendoos/AACircuit
* https://hackaday.com/2021/04/29/ascii-schematic-diagrams/
* https://www.qsl.net/yo5ofh/hobby%20circuits/ascii.htm
= Ciro's ASCII art circuit diagram notation
{c}
{parent=ASCII art circuit diagram}
This notation is designed to be relatively easy to write. This is achieved by not drawing ultra complex ASCII art boxes of every component. It would be slightly more readable if we did that, but prioritizing the writer here.
Two wires are only joined if `+` is given. E.g. the following two wires are not joined:
``
|
--|--
|
``
but the following are:
``
|
--+--
|
``
Simple symmetric components:
* `-`, `+` and `|`: wire
* `AC`: <AC source>. Parameters:
* `Hz`: frequency
* `V`: peak voltage
e.g.:
``
AC_1Hz_2V
``
If only one side is given, the other is assumed to be at a ground `G`.
* `C`: <capacitor>
* `G`: ground. Often used together with `DC`, e.g.:
``
DC_10---R_10---G
``
means applying a voltage of 10 V across a 10 Ohm <resistor>, which would lead to a current of 1 A
* `L`: <inductor>
* `MICROPHONE`. As a multi-letter symmetric component, you can connect the two wires anywhere, e.g.
```
---MICROPHONE---
```
or:
```
|
MICROPHONE
|
```
* `SPEAKER`
* `R`: <resistor>
* `SQUID`: <SQUID device>
* `X`: <Josephson junction>
Asymmetric components have multiple letters indicating different ports. The capital letter indicates the device, and lower case letters the ports. The wires then go into the ports:
* `D`: <diode>
* `a`: anode (where electrons can come in from)
* `c`: cathode
Sample usage in a circuit:
``
--aDc--
``
Can also be used vertically like aany other circuit:
``
|
a
D
c
|
``
We can also change the port order, the device is still the same due to capital `D`:
``
--cDa--
|
Dac--
|
Dca--
|
--caD
``
* `DC` <DC source>. Ports:
* `p`: positive
* `n`: negative
E.g. a 10 V source with a 10 Ohm resistor would be:
``
+---pDC_10_n---+
| |
+----R_10------+
``
If only one side is given, the other is assumed to be at a the ground `G`. We can also omit `p` and `m` in that case and assume that `p` is the one used, e.g. the above would be equivalent to:
``
DC_10---R_10---G
``
If the voltage is not given, it is assumed to be a <potentiometer>.
* `T`: <transistor>. The ports are `sgTd`:
* `s`: source
* `g`: gate
* `d`: gate
Sample usage in a circuit:
``
---+
|
--sgTd--
``
All the following are also equivalent:
``
|
g
--sTd--
|
--Tsgd--
|
``
* `I`: <electric current> source. Ports:
* `s`: electron source
* `d`: electron destination
* `V`: <Voltmeter>. Ports:
* `p`: positive
* `n`: negative
If we don't need to specify explicit positive and negative sides, we can just use:
```
---V---
```
without any ports. This is notably often the case for AC circuits.
Optionaly, we can also add the sides as in:
Numbers characterizing components are put just next to each component with an underscore. When there is only one parameter, standard units are assumed, e.g.:
``
+-----+
| |
C_1p R_2k
| |
+-----+
``
means:
* a capacitor with 1 pico Faraday
* a resistor with 2 k Ohms
Micro is denoted as `u`.
Wires can just freely come in and out of specs of a component, they are then just connected to the component, e.g.:
``
DC_10---R_10---G
``
means applying a voltage of 10 V across a 10 Ohm <resistor>, which would lead to a current of 1 A
If a component has more than two parameters, units are used to distinguish them when possible, e.g.:
``
AC_1kV_2MHz
``
means an <AC source> with:
* 1 kV <voltage>
* 1 MHz frequency
= Electronic symbol
{parent=Circuit diagram}
{wiki}
= Electronic component
{parent=Electronics}
{wiki}
\Video[https://www.youtube.com/watch?v=byKyJ0b04Lo]
{title=Open Circuits book interview by <CuriousMarc> (2022)}
= Electrical cable
{parent=Electronic component}
{wiki}
One more more electrical wires surrounded by an insulator.
= Twisted pair
{parent=Electrical cable}
{wiki}
= Twisted pair cable
{synonym}
\Video[https://upload.wikimedia.org/wikipedia/commons/d/d1/CAT5e_Cable.jpg]
{description=<Cat 5e cable> stripped}
= Current source
{parent=Electronic component}
{wiki}
= Current-voltage characteristic
{parent=Electronic component}
{wiki}
= I-V curve
{c}
{synonym}
{title2}
= Amplifier
{parent=Electronic component}
{wiki}
= Amplification
{synonym}
Main implementations: the same as <electronic switches>: <vacuum tubes> in the past, and <transistors> in the second half of the 20th century.
\Video[https://www.youtube.com/watch?v=4ObzEft2R_g]
{title=How to make an LM386 audio amplifier circuit by <#Afrotechmods> (2017)}
{description=Builds the circuit on a <breadboard> from minimal components, including one discrete <transistor>. Then plays music from phone through headset cables into a <speaker>.}
= Capacitor
{parent=Electronic component}
{wiki}
The fundamental intuition about capacitors is that they never let <electrons> through.
They can only absorb <electrons> up to a certain point, but then the pushback becomes too strong, and current stops.
Therefore, they cannot conduct <direct current> long term.
For <alternating current> however, things are different, because in alternating current, <electrons> are just jiggling back and forward a little bit around a center point. So you can send alternating current power across a capacitor.
The key equation that relates <Voltage> to <electric current> in the <capacitor> is:
$$
I(t) = C \dv{V(t)}{t}
$$
So if a voltage <Heavyside step function> is applied what happens is:
* the capacitor fills up instantly with an infinite current
* the current then stops instantly
More realistically, one may consider the behavior or the <series RC circuit> to see what happens without infinities when a capacitor is involved as in the <step response of the series RC circuit>.
\Image[https://upload.wikimedia.org/wikipedia/commons/7/73/IEEE_315_Fundamental_Items_Symbols_%2832%29.svg]
{title=<Electronic symbol> of a <capacitor>}
\Video[https://www.youtube.com/watch?v=4PkcOeZCE0g]
{title=Finding <capacitance> with an <oscilloscope> by Jacob Watts (2020)}
{description=Good experiment.}
\Video[https://www.youtube.com/watch?v=X4EUwTwZ110]
{title=<Capacitors> Explained by <#The Engineering Mindset>}
{description=2019.}
= Leyden jar
{c}
{parent=Capacitor}
{wiki}
<Pieter van Musschenbroek> is the perfect example that if your surname is too complicated, things you invent will not be named after you!
\Image[https://upload.wikimedia.org/wikipedia/commons/1/15/Andreas_Cunaeus_discovering_the_Leyden_jar.png]
= Pieter van Musschenbroek
{c}
{parent=Leyden jar}
{tag=Physicist}
= RC circuit
{parent=Capacitor}
{tag=Electronic circuit}
= Series RC circuit
{parent=RC circuit}
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/RC_Series_Filter_%28with_V%26I_Labels%29.svg/250px-RC_Series_Filter_%28with_V%26I_Labels%29.svg.png]
= Step response of the series RC circuit
{parent=Series RC circuit}
This is what happens when you apply a step <voltage> to a <series RC circuit>: TODO $I(t)$ graph.
= Capacitance
{parent=Capacitor}
{wiki}
= Diode
{parent=Electronic component}
{wiki}
Ideally can be thought of as a one-way ticket gate that only lets electrons go in one direction with zero resistance! Real devices do have imperfections however, so there is some resistance.
First they were made out of <vacuum tubes>, but later <semiconductor diodes> were invented and became much more widespread.
= Semiconductor diode
{parent=Diode}
{{wiki=Diode#Semiconductor_diodes}}
\Image[https://upload.wikimedia.org/wikipedia/commons/2/2a/Diode_current_wiki.png]
{title=<I-V curve> of a <diode>}
{description=This image shows well how the diode is only an approximation of the ideal one way device. Notably, there is this $V_d$ non-ideal voltage drop across the device, which can be modelled as constant. It is however an exponential in fact.}
\Video[https://www.youtube.com/watch?v=Fwj_d3uO5g8]
{title=<Diodes> Explained by The Engineering Mindset (2020)}
{description=
Good video:
* https://youtu.be/Fwj_d3uO5g8?t=153 how it works
* https://youtu.be/Fwj_d3uO5g8?t=514 applications:
* protection against accidental battery inversion
* <rectifiers>, notably mentions a <diode bridge>
}
= Crystal detector
{parent=Semiconductor diode}
{wiki}
The first <diodes>. These were apparently incredibly unreliable, especially for portable radios, as you had to randomly search for the best contact point you could find in a random polycrystalline material!!
And also quality was highly dependant on where the material was sourced from as that affected the impurities present in the material. Later this was understood to be an issue of <doping (semiconductor)>.
It was so unreliable that <vacuum tube> diodes overtook them in many applications, even though <crystal detectors> are actually <semiconductor diodes>, which eventually won over!
For a long time, before artificial <semiconductors> kicked in, people just didn't know the underlying physical working principle of these detectors. <What I cannot create, I do not understand> basically.
= Crystal radio
{parent=Crystal detector}
{tag=Radio receiver}
This was the first generation of commercially successful radios.
It uses a <crystal detector> as its <diode>, which is a crucial element of the radio, thus its name.
They were superseded by <#transistor radios>, which were much more reliable, portable and could amplify the signal received.
\Image[https://upload.wikimedia.org/wikipedia/commons/3/3b/Kristallradio.JPG]
\Video[https://www.youtube.com/watch?v=0-PParSmwtE]
{title=How a <Crystal Radio> Works by RimstarOrg}
= Electrical connector
{parent=Electronic component}
{wiki}
= Breakout board
{parent=Electrical connector}
{wiki}
= General-purpose input/output
{parent=Electrical connector}
{wiki}
= GPIO
{c}
{synonym}
{title2}
= Pulse width modulation
{parent=General-purpose input output}
GPIO generally only supports discrete outputs.
But for some types of hardware, like LEDs and some motors, the system has some inertia, and if you switch on and off fast enough, you get a result similar to having an intermediate voltage.
So with pulse width modulation we can fake <analog> output from digital output in a good enough manner.
= Jump wire
{parent=Electrical connector}
{wiki}
Notably used to connect:
* <pin headers>
* <breadboard> holes
You can buy large sets of them in combitation of male/male, male/female, female/female. Male/male is perhaps the most important
\Video[https://www.youtube.com/watch?v=o53uveSmJR0]
{title=Making Jumper Wires by PCBurn! (2018)}
= Pin header
{parent=Electrical connector}
{wiki}
These often come pre-soldered on <devboards>, e.g. and allow for easy access to <GPIO> pins. E.g. they're present on the <Raspberry Pi 2>.
Why would someone ever sell a devboard without them pre-soldered!
\Image[https://upload.wikimedia.org/wikipedia/commons/b/bf/6_Pin_Header.jpg]
{title=6x1 pin header}
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Raspberry_Pi_2_Model_B_v1.1_underside_new_%28bg_cut_out%29.jpg/640px-Raspberry_Pi_2_Model_B_v1.1_underside_new_%28bg_cut_out%29.jpg]
{title=Underside of a <Raspberry Pi 2>}
{description=At the top of this image we can clearly see how the usually pre-soldered <pin header> connectors go through the <PCB> and are soldered on both sides.}
= Jumper
{disambiguate=computing}
{parent=Pin header}
{wiki}
Allows you to connect two adjacent pins of a <pin header>. Sometimes used as a hardware configuration interface!
\Image[https://upload.wikimedia.org/wikipedia/commons/b/b0/Jumper_on_motherboard.jpg]
= Electronic oscillator
{parent=Electronic component}
{wiki}
= Oscillator
{synonym}
Something where <DC voltage> comes in, and a periodic voltage comes out.
\Video[https://www.youtube.com/watch?v=eYVOdlK15Og]
{title=Oscillators: <RC oscillator>[RC], <LC oscillator>[LC], <crystal oscillator>[Crystal] by GreatScott! (2015)}
{description=
Good video. Contains actual <breadboard> experiments on <oscilloscope> and circuit diagrams
* https://youtu.be/eYVOdlK15Og?t=66 <RC oscillator> on <breadboard>. Produces <rectangular wave>. Mentions popular <integrated circuit> that does it: <555 timer IC>.
* https://youtu.be/eYVOdlK15Og?t=175 <LC oscillators> allows for higher frequencies. Produces <sinusoidal> output on <MHz> range. Uses an amplifier to feed back into input and maintain same voltage. Hard to make reliably on breadboard.
* https://youtu.be/eYVOdlK15Og?t=315 <crystal oscillator>. Mentions it acts like an <LC oscillators>. Shows and equivalent model. Wish he had talked more about them. You need support components around it: similarly to the LC case, the amplifier is generally not packaged in.
}
= Relaxation oscillator
{parent=Electronic oscillator}
{wiki}
= RC oscillator
{c}
{parent=Relaxation oscillator}
First watch: <video Oscillators: RC, LC, Crystal by GreatScott! (2015)>
= 555 timer IC
{parent=RC oscillator}
{wiki}
= LC oscillator
{c}
{parent=Relaxation oscillator}
Oscillator made of an <LC circuit>.
First watch: <video Oscillators: RC, LC, Crystal by GreatScott! (2015)>
= Crystal oscillator
{parent=Electronic oscillator}
{wiki}
First watch: <video Oscillators: RC, LC, Crystal by GreatScott! (2015)>
\Video[https://www.youtube.com/watch?v=duZlWWwxIPQ]
{title=From Raw Crystal to <Crystal Oscillator>}
{description=by United States Army Signal Corps (1943)}
= Light-emitting diode
{parent=Electronic component}
{tag=Light source}
{wiki}
= LED
{c}
{synonym}
{title2}
\Video[https://www.youtube.com/watch?v=9BDTtcRMxpA]
{title=How <LEDs> work by VirtualBrain}
{description=2021. Good 3d schematics clearly explaining part of the <LED electronic package>.}
= LED electronic package
{parent=Light-emitting diode}
https://electronics.stackexchange.com/questions/93858/reason-for-anvil-and-post-in-leds
\Video[https://www.youtube.com/watch?v=EvAFRB4E68Q]
{title=How are LED Chips and LED Encapsulation is made by Future Linear}
{description=Starts from some level of cut square chips. Still in round wafer form.}
= LED spectrum
{c}
{parent=Light-emitting diode}
https://electronics.stackexchange.com/questions/477264/spectrum-of-leds
= Are LEDs monochromatic?
{parent=LED spectrum}
https://electronics.stackexchange.com/questions/477264/spectrum-of-leds
= Why aren't LEDs monochromatic
{parent=Are LEDs monochromatic?}
https://www.reddit.com/r/Optics/comments/18f6bdt/comment/kcsiook/ mentions:
\Q[LEDs are broadband by nature, since the spontaneous emission broadly speaking reflects the overlap of the Fermi distribution and the density of states]
= LED vs
{parent=Light-emitting diode}
= LED vs diode
{c}
{parent=LED vs}
<Direct and indirect band gaps> is an important part of why <diodes> don't emit light apparently.
Bibliography:
* https://www.quora.com/What-is-the-difference-between-an-LED-and-a-diode
* https://youtu.be/9BDTtcRMxpA?t=388 from <video How LEDs work by VirtualBrain> explains the geometry aspect well
= LED vs photodetector
{c}
{parent=LED vs}
{tag=Photodetector}
https://electronics.stackexchange.com/questions/548353/can-led-strips-be-used-as-photodetectors
Apparently fundamentally LEDs in principle work as <#photodetectors>, but
= Inductor
{parent=Electronic component}
{wiki}
It resists to change in <electric current>. Well seen at: <video LC circuit by Eugene Khutoryansky (2016)>.
= Multiplexer
{parent=Electronic component}
{wiki}
= Resistor
{parent=Electronic component}
{wiki}
= Potentiometer
{parent=Resistor}
{wiki}
= Electrical resistance and conductance
{parent=Resistor}
{wiki}
= Electrical conductance
{parent=Electrical resistance and conductance}
= Electrical resistance
{parent=Electrical resistance and conductance}
= Drude model
{c}
{parent=Electrical resistance}
{wiki}
= Free electron model
{parent=Drude model}
{wiki}
= Ohm
{c}
{parent=Electrical resistance}
{wiki}
= Transformer
{parent=Electronic component}
{wiki}
= Magnetic core
{parent=Transformer}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/Electromagnet_with_gap.svg/547px-Electromagnet_with_gap.svg.png]
{title=Hand drawn schematic of the <magnetic field> induced in a <magnetic core> by an <electromagnetic coil>}
= Electronic switch
{parent=Electronic component}
{wiki}
= Vacuum tube
{parent=Electronic switch}
{wiki}
= Transistor
{parent=Electronic switch}
{wiki}
A <solid-state> <electronic switch> and <amplifier>.
Although transistors were revolutionary, it is fun to note that they were just "way cheaper and more reliable and smaller" versions of exactly the main functions that a <vacuum tube> could achieve
* <amplifier>
* <electronic switch>
= Point-contact transistor
{parent=Transistor}
{title2=BJT}
{title2=1947}
{wiki}
The first working one in 1947 by <John Bardeen> and <walter Brattain> in <Bell Labs Murray Hill>.
People had already <patented> a lot of stuff before without being able to make them work. Nonsense.
As the name suggests, this is not very sturdy, and was quickly replaced by <bipolar junction transistor>.
= Bipolar junction transistor
{parent=Transistor}
{title2=BJT}
{title2=1948}
{wiki}
By <William Shockley> in 1948 also at <Bell Labs Murray Hill>.
As of 2020, not used anymore in <logic gates>, but still used in <amplifiers>.
\Image[https://upload.wikimedia.org/wikipedia/commons/6/6b/NPN_BJT_%28Planar%29_Cross-section.svg]
= Field-effect transistor
{parent=Transistor}
{title2=FET}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/4/44/FET_cross_section.svg]
= MOSFET
{c}
{parent=Field-effect transistor}
{title2=1959}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/4/44/FET_cross_section.svg]
= CMOS
{c}
{parent=MOSFET}
{wiki}
= Voltage transformer
{parent=Electronic component}
{wiki}
= Electronic lab equipment
{parent=Electronics}
{wiki}
\Video[https://www.youtube.com/watch?v=l7OOnv8_m0c]
{title=A Perfect Electronics Bench? by <Keysight> (2021)}
= Arbitrary waveform generator
{parent=Electronic lab equipment}
{wiki}
= Electron multiplier
{parent=Electronic lab equipment}
{wiki}
= Power supply
{parent=Electronic lab equipment}
{wiki}
= Electronic test equipment
{parent=Electronic lab equipment}
{wiki}
= Oscilloscope
{parent=Electronic test equipment}
{wiki}
\Video[https://www.youtube.com/watch?v=yQKuHJELEOs]
{title=FNIRSI 1014D review by Kerry Wong (2022)}
{description=One of the cheapest oscilloscopes available at the time.}
= Oscilloscope mode
{parent=Oscilloscope}
= Oscilloscope XY mode
{parent=Oscilloscope mode}
= Oscilloscope in XY mode
{synonym}
= Digital storage oscilloscope
{parent=Oscilloscope}
{wiki}
= PC-based oscilloscope
{parent=Oscilloscope}
{wiki}
= Cheap oscilloscope
{parent=Oscilloscope}
{wiki}
* https://www.reddit.com/r/ECE/comments/jqfv4f/what_is_the_cheapest_oscilloscope_available_and/
\Video[https://www.youtube.com/watch?v=x19kwG-wJRI]
{title=DIY Oscilloscope Kit (20\$) VS Regular DS Oscilloscope (400\$) by Great Scott (2016)}
\Video[https://www.youtube.com/watch?v=8ts5J09Y7Gc]
{title=Hantek 6022BE Review by Adrian's Digital Basement (2022)}
= Open source oscilloscope
{parent=Oscilloscope}
{tag=Open source hardware}
{wiki}
= Haascope
{c}
{parent=Open source oscilloscope}
{title2=2017}
https://www.crowdsupply.com/andy-haas/haasoscope
By Andy Haas, an experimental <particle physics> professor: https://as.nyu.edu/content/nyu-as/as/faculty/andy-haas.html What an awesome dude!
\Video[https://www.youtube.com/watch?v=tDUg0Q3wInE]
{title=Haasoscope prototype, 2 4-channel boards}
= ScopeFun
{c}
{parent=Open source oscilloscope}
{title2=2020}
* https://www.scopefun.com/
899 USD as of 2022, takes a year to ship as they gather up a lot of orders before producing.
Sounds so cool, especially the multi functionality. Shame so expensive.
= ThunderScope
{c}
{parent=Open source oscilloscope}
{title2=2021}
* https://github.com/EEVengers/ThunderScope
* https://www.crowdsupply.com/eevengers/thunderscope
\Video[https://www.youtube.com/watch?v=TIc-xa1BUYk]
{title=ThunderScope presentation for Hackaday Prize (2021)}
= Electronics vendor
{parent=Electronics}
{tag=Company}
= Hewlett-Packard
{c}
{parent=Electronics vendor}
{title2=1939-2015}
{wiki}
= HP
{c}
{synonym}
{title2}
They do seem to have been very innovative, and have had a very good work culture. They also had a huge impact on the <Silicon Valley> startup scene.
Some products they are known for:
* oscilloscopes
* <Atomic clocks>, notably highly portable ones, see e.g. <video Inside the HP 5061A Cesium Clock by CuriousMarc (2020)>
* pocket calculator
\Video[https://www.youtube.com/watch?v=ppqC0tNghSk]
{title=The decline of <HP> by Company Man (2022)}
\Video[https://www.youtube.com/watch?v=Iqv6DhtLay4]
{title=HP Origins promotional documentary by <HP> (2006)}
{description=A bit too star eyed, but gives some good ideas.}
= HP spinoff
{c}
{parent=Hewlett-Packard}
= Agilent Technologies
{c}
{parent=HP spinoff}
{title2=1999}
{wiki}
In a way, Agilent represents the most grassroots electronics parts of <HP> from before they became overly invested in laptops and fell.
They spun out the electronics part as <Keysight> in 2014, becoming life science only.
= Keysight
{c}
{parent=Agilent Technologies}
{tag=Electronics vendor}
{title2=2014}
{wiki}
= Agilent Technologies oscilloscope
{c}
{parent=Agilent Technologies}
= Hewlett Packard Enterprise
{c}
{parent=HP spinoff}
{title2=HPE}
{title2=2017}
{wiki}
= Philips
{c}
{parent=Electronics vendor}
{wiki}
= Rohde & Schwarz
{c}
{parent=Electronics vendor}
{wiki}
= STAR Cryoelectronics
{c}
{parent=Electronics vendor}
https://starcryo.com/
= Mr. SQUID
{c}
{parent=STAR Cryoelectronics}
{tag=SQUID device}
https://starcryo.com/mr-squid/
This is the cutest product name ever.
\Q[Since 1992, Mr. SQUID has been the standard educational demonstration system for undergraduate physics lab courses.]
Used e.g. at <video Superconducting Quantum Interference Devices by UNSW Physics (2020)}>
Their manual: https://www.phys.ksu.edu/personal/cocke/classes/phys506/squidman.pdf
<YBCO> device, runs on <liquid nitrogen>.
= Electronic circuit
{parent=Electronics}
{wiki}
= Circuit board
{parent=Electronic circuit}
= Breadboard
{parent=Circuit board}
{wiki}
This is how <electronic circuits> are normally prototyped!
Once you validate them like this, the next step is usually to move on to <printed circuit boards> for more reliable production setups.
Breadboards are a thing of beauty and wonder.
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Wooden_Breadboard_Circuits.jpg/1024px-Wooden_Breadboard_Circuits.jpg]
{title=<Point-to-point constructions> on woden boards}
{description=Predecessors to <breadboards> from where the name came. A thing of beauty, so vintage. You could actually write stuff on those with a pencil!}
\Video[https://www.youtube.com/watch?v=SI8DGyl0K8E]
{title=Breadboards - Trash or Treasure? by <Keysight> (2020)}
= Printed circuit board
{parent=Circuit board}
{wiki}
= PCB
{c}
{synonym}
{title2}
= Microprocessor development board
{parent=Printed circuit board}
{tag=Computer form factor}
{wiki}
= Devboard
{synonym}
{title2}
= Arduino
{c}
{parent=Microprocessor development board}
{wiki}
= Micro Bit
{c}
{parent=Microprocessor development board}
{title2=2016}
{title2=BBC Micro Bit}
{wiki}
<Zephyr> support: https://docs.zephyrproject.org/2.7.0/boards/arm/bbc_microbit/doc/index.html
<Bluetooth> support: not enough <RAM> for it, though in principle its chip/<transceiver> could support it! https://microbit-micropython.readthedocs.io/en/v1.0.1/ble.html
Supported editors: https://microbit.org/code/
MicroPython web editor and compiler: https://python.microbit.org/v/2