Practical case: Simple twilight switch

Simple twilight switch prototype (Maker Style)

Level: Basic. Objective: Build a circuit that activates an LED when light levels drop.

Objective and use case

In this practical case, you will design and assemble a light-sensing circuit that automatically turns on an LED when the environment becomes dark. This circuit uses a photodiode to control an NPN transistor acting as a switch.

  • Real-world applications:
    • Automatic street lighting systems.
    • Emergency corridor lights that activate during power outages (if light absent).
    • Battery-saving garden solar lights.
    • Security systems triggered by shadows or obstruction of light beams.
  • Expected outcome:
    • Bright light: The LED remains OFF; the voltage at the transistor base is low.
    • Darkness: The LED turns ON; the voltage at the transistor base rises above 0.7 V.
    • Transition: The circuit reacts to the absence of light (dark sensor logic).
  • Target audience: Beginners and electronics students.

Materials

  • V1: 5 V DC supply, function: main power source.
  • R1: 100 kΩ resistor, function: base pull-up resistor (sets sensitivity).
  • R2: 330 Ω resistor, function: LED current limiting.
  • D1: Generic silicon photodiode, function: light sensor.
  • Q1: 2N2222 (or BC547) NPN Transistor, function: electronic switch.
  • D2: Red LED, function: visual output indicator.

Wiring guide

This guide uses specific node names to define the connections clearly.
* Nodes defined: VCC (5 V), GND (0 V), V_BASE (Control voltage), V_COL (Collector voltage).

  • V1 (Source): Connect positive terminal to VCC and negative terminal to GND.
  • R1 (Bias): Connect between VCC and V_BASE.
  • D1 (Photodiode):
    • Connect the Cathode to V_BASE.
    • Connect the Anode to GND.
    • Note: The photodiode is used in reverse bias mode.
  • Q1 (Transistor):
    • Connect the Base to V_BASE.
    • Connect the Emitter to GND.
    • Connect the Collector to V_COL.
  • R2 & D2 (Output Loop):
    • Connect R2 between VCC and the Anode of D2.
    • Connect the Cathode of D2 to V_COL (the Collector of Q1).

Conceptual block diagram

Conceptual block diagram — 74HC14 Photodiode
Quick read: inputs → main block → output (actuator or measurement). This summarizes the ASCII schematic below.

Schematic

[ INPUT / SENSING ]                     [ LOGIC / SWITCHING ]                   [ OUTPUT / LOAD ]

      [ VCC (5 V) ]                                                                       [ VCC (5 V) ]
           |                                                                                  |
           |                                                                                  |
           v                                                                                  v
    [ R1: 100k Bias ] --(Pull Up)--+                                                  [ R2: 330 Ohm ]
                                   |                                                          |
                                   |                                                          |
                                (V_BASE)                                                      v
                                   |                                                    [ D2: Red LED ]
                                   |                                                          |
                                   +--(Control Sig)--> [ Q1: NPN Base ]                       |
                                   |                   [              ]                       |
                                   |                   [ Q1 Collector ] <--(Sink Current)-----+
    [ D1: Photodiode ] --(Sensor)--+                   [              ]                 (V_COL Node)
    (Reverse Biased)               |                   [ Q1 Emitter   ]
           |                       |                          |
           |                       |                          |
           v                       |                          v
        [ GND ]                    +---------------------> [ GND ]
Schematic (ASCII)

Electrical diagram

Electrical diagram for case: Practical case: Simple twilight switch
Generated from the validated SPICE netlist for this case.

🔒 This electrical diagram is premium. With the 7-day pass or the monthly membership you can unlock the complete didactic material and the print-ready PDF pack.🔓 See premium access plans

Measurements and tests

Perform the following validation steps using a multimeter to ensure the circuit works as intended.

  1. Check Supply Voltage:
    • Measure between VCC and GND. It should read approximately 5 V.
  2. Test Light Condition (LED OFF):
    • Shine a bright light directly on the photodiode D1.
    • Measure voltage at V_BASE. It should be low (typically < 0.5 V) because the photodiode conducts current to ground.
    • Observe D2 (LED). It should be OFF.
    • Measure voltage at V_COL. It should be close to VCC (High) as the transistor is in cutoff.
  3. Test Dark Condition (LED ON):
    • Cover D1 completely with your hand or a dark cap.
    • Measure voltage at V_BASE. It should rise above 0.6 V – 0.7 V.
    • Observe D2 (LED). It should turn ON.
    • Measure voltage at V_COL. It should drop to near 0 V (saturation voltage ~0.2 V).

SPICE netlist and simulation

Reference SPICE Netlist (ngspice) — excerptFull SPICE netlist (ngspice)

* Practical case: Simple twilight switch

* --- Power Supply ---
* V1: 5 V DC supply
V1 VCC 0 DC 5

* --- Input Stage (Light Sensor) ---
* R1: 100 kΩ resistor (Base pull-up)
* Connect between VCC and V_BASE
R1 VCC V_BASE 100k

* D1: Generic silicon photodiode
* Connect the Cathode to V_BASE, Anode to GND (Reverse Bias)
* SPICE Syntax: Dname Anode Cathode Model
D1 0 V_BASE D_GENERIC

* OPTICAL STIMULUS SIMULATION
* The photodiode generates a photocurrent flowing from Cathode to Anode 
* (Reverse current) proportional to light intensity.
* We simulate this with a Current Source (I_LIGHT) in parallel with D1.
* ... (truncated in public view) ...

Copy this content into a .cir file and run with ngspice.

🔒 Part of this section is premium. With the 7-day pass or the monthly membership you can access the full content (materials, wiring, detailed build, validation, troubleshooting, variants and checklist) and download the complete print-ready PDF pack.

* Practical case: Simple twilight switch

* --- Power Supply ---
* V1: 5 V DC supply
V1 VCC 0 DC 5

* --- Input Stage (Light Sensor) ---
* R1: 100 kΩ resistor (Base pull-up)
* Connect between VCC and V_BASE
R1 VCC V_BASE 100k

* D1: Generic silicon photodiode
* Connect the Cathode to V_BASE, Anode to GND (Reverse Bias)
* SPICE Syntax: Dname Anode Cathode Model
D1 0 V_BASE D_GENERIC

* OPTICAL STIMULUS SIMULATION
* The photodiode generates a photocurrent flowing from Cathode to Anode 
* (Reverse current) proportional to light intensity.
* We simulate this with a Current Source (I_LIGHT) in parallel with D1.
* Logic: 
*   0uA = Dark (Night) -> Base High -> Q1 ON -> LED ON
*   100uA = Light (Day) -> Base Low -> Q1 OFF -> LED OFF
* Waveform: Dark (0uA) transitioning to Light (100uA)
I_LIGHT V_BASE 0 PULSE(0 100u 100u 100u 100u 2m 5m)

* --- Switching Stage ---
* Q1: 2N2222 NPN Transistor
* Base to V_BASE, Emitter to GND, Collector to V_COL
* SPICE Syntax: Qname Collector Base Emitter Model
Q1 V_COL V_BASE 0 2N2222

* --- Output Stage ---
* R2: 330 Ω resistor
* Connect between VCC and the Anode of D2 (Node V_LED_ANODE)
R2 VCC V_LED_ANODE 330

* D2: Red LED
* Connect Anode to V_LED_ANODE, Cathode to V_COL
D2 V_LED_ANODE V_COL LED_RED

* --- Models ---
* Standard NPN Transistor Model
.model 2N2222 NPN (IS=1E-14 VAF=100 BF=200 IKF=0.3 XTB=1.5 BR=3 CJC=8E-12 CJE=25E-12 TR=46.91E-9 TF=411.1E-12 ITF=0.6 VTF=1.7 XTF=3 RB=10 RC=1 RE=0.1)

* Generic Red LED Model (Approx 1.8V-2V drop)
.model LED_RED D (IS=93.2p RS=42m N=3.73 BV=5 IBV=10u CJO=2.97p VJ=0.75 M=0.333 TT=4.32u)

* Generic Silicon Diode Model for Photodiode (Dark characteristics)
.model D_GENERIC D (IS=1N N=1 RS=0.1)

* --- Analysis Directives ---
* Transient analysis to show the switching behavior
.tran 10u 5m

* Print required voltages to verify operation
* V(V_BASE): Sensor voltage (High = Dark, Low = Light)
* V(V_COL): Output state (Low = LED ON, High/Floating = LED OFF)
.print tran V(V_BASE) V(V_COL)

.op
.end

Simulation Results (Transient Analysis)

Simulation Results (Transient Analysis)
Show raw data table (534 rows)
Index   time            v(v_base)       v(v_col)
0	0.000000e+00	7.119659e-01	4.863696e-01
1	1.000000e-07	7.119659e-01	4.863696e-01
2	2.000000e-07	7.119659e-01	4.863696e-01
3	4.000000e-07	7.119659e-01	4.863696e-01
4	8.000000e-07	7.119659e-01	4.863696e-01
5	1.600000e-06	7.119659e-01	4.863696e-01
6	3.200000e-06	7.119659e-01	4.863696e-01
7	6.400000e-06	7.119659e-01	4.863696e-01
8	1.280000e-05	7.119659e-01	4.863696e-01
9	2.280000e-05	7.119659e-01	4.863696e-01
10	3.280000e-05	7.119659e-01	4.863696e-01
11	4.280000e-05	7.119659e-01	4.863696e-01
12	5.280000e-05	7.119659e-01	4.863696e-01
13	6.280000e-05	7.119659e-01	4.863696e-01
14	7.280000e-05	7.119659e-01	4.863696e-01
15	8.280000e-05	7.119659e-01	4.863696e-01
16	9.280000e-05	7.119659e-01	4.863696e-01
17	1.000000e-04	7.119659e-01	4.863696e-01
18	1.006859e-04	7.117420e-01	5.075675e-01
19	1.020576e-04	7.110644e-01	5.716214e-01
20	1.044620e-04	7.094358e-01	7.222583e-01
21	1.068767e-04	7.077111e-01	8.743413e-01
22	1.096009e-04	7.056321e-01	1.048175e+00
23	1.150494e-04	7.009675e-01	1.400214e+00
... (510 more rows) ...

Common mistakes and how to avoid them

  1. Reversing the Photodiode:
    • Error: Connecting the Anode to Base and Cathode to Ground.
    • Result: The diode acts like a standard forward-biased diode, clamping the Base to ~0.7 V permanently or conducting fully, preventing the switching logic.
    • Solution: Ensure the Cathode (marked with a line or flat side) connects to the positive side (Base) for reverse bias operation.
  2. Incorrect Transistor Pinout:
    • Error: Swapping Collector and Emitter on the 2N2222.
    • Result: The gain is significantly reduced, and the LED may not turn on fully or the transistor might overheat.
    • Solution: Verify the pinout (E-B-C) in the datasheet before insertion.
  3. Wrong Resistor Value for R1:
    • Error: Using a very low value (e.g., 1 kΩ) for R1.
    • Result: The photodiode current cannot pull the voltage down enough in bright light, keeping the LED ON permanently.
    • Solution: Use a high value (100 kΩ to 330 kΩ) to allow the small photocurrent to control the voltage divider effectively.

Troubleshooting

  • Symptom: LED is always ON, even in bright light.
    • Cause: R1 is too small, or the ambient light is not strong enough to generate sufficient photocurrent.
    • Fix: Increase R1 to 220 kΩ or 330 kΩ, or bring the light source closer.
  • Symptom: LED is always OFF, even in total darkness.
    • Cause: Photodiode is shorted, R1 is open, or Transistor is blown.
    • Fix: Check continuity on R1. Remove D1; if LED turns on, D1 was shorted or installed backward (forward biased).
  • Symptom: LED glows dimly in the dark.
    • Cause: Q1 is not fully saturating.
    • Fix: Decrease R2 slightly (ensure it stays above 220 Ω) or check if V1 is actually 5 V.

Possible improvements and extensions

  1. Sensitivity Adjustment: Replace R1 with a 500 kΩ potentiometer (in series with a 10 kΩ safety resistor) to manually tune the light level at which the LED triggers.
  2. Hysteresis/Clean Switching: Add a second transistor or a Schmitt Trigger (e.g., 74HC14) between the photodiode node and the driver transistor to prevent the LED from flickering at the «twilight» threshold.

More Practical Cases on Prometeo.blog

Find this product and/or books on this topic on Amazon

Go to Amazon

As an Amazon Associate, I earn from qualifying purchases. If you buy through this link, you help keep this project running.

Quick Quiz

Question 1: What is the primary objective of the circuit described in the text?




Question 2: Which component acts as the electronic switch in this circuit?




Question 3: What happens to the LED when the environment is bright?




Question 4: What is the function of the 330 Ω resistor (R2)?




Question 5: Which voltage threshold at the transistor base is mentioned for turning the LED ON?




Question 6: What real-world application is listed for this type of circuit?




Question 7: What is the role of resistor R1 (100 kΩ)?




Question 8: What is the function of the V1 component in the materials list?




Question 9: How does the circuit behave during the transition from light to dark?




Question 10: Who is the target audience for this circuit project?




Carlos Núñez Zorrilla
Carlos Núñez Zorrilla
Electronics & Computer Engineer

Telecommunications Electronics Engineer and Computer Engineer (official degrees in Spain).

Follow me:


Practical case: Reverse Bias Photodiode Light Detection

Reverse Bias Photodiode Light Detection prototype (Maker Style)

Level: Basic – Understand how a reverse-biased photodiode acts as a light sensor.

Objective and use case

In this practical case, you will build a circuit that utilizes a photodiode in reverse bias mode to detect varying levels of light intensity. By measuring the voltage drop across a series resistor, you will observe the relationship between photon incidence and leakage current.

  • Real-world utility:

    • Optical communications: Used in fiber optic receivers to convert light pulses back into electrical data.
    • Smoke detectors: Detects light scattered by smoke particles in an optical chamber.
    • Ambient light sensors: Adjusts screen brightness on smartphones based on surrounding light.
    • Safety curtains: Stops industrial machinery when a light beam is interrupted.
  • Expected outcome:

    • Dark condition: The voltage output will be near 0 V (minimal dark current).
    • Light condition: The voltage output will rise proportionally to the light intensity.
    • Linearity: The photodiode acts as a current source where Iphoto is linear with respect to illuminance (Lux).
  • Target audience: Students and hobbyists introducing themselves to semiconductor sensors.

Materials

  • V1: 5 V DC supply, function: Reverse bias voltage source.
  • D1: Photodiode (e.g., BPW34 or generic silicon photodiode), function: Light sensor.
  • R1: 100 kΩ resistor, function: Current-to-voltage conversion (Load resistor).
  • L1: White LED or Flashlight, function: External light stimulus.
  • M1: Multimeter, function: Voltmeter for V_OUT.

Wiring guide

This circuit uses a series configuration to measure the reverse photocurrent. We define the nodes as VCC (5 V source), V_OUT (Measurement point), and 0 (Ground).

  • V1: Connect the positive terminal to node VCC and the negative terminal to node 0.
  • D1 (Photodiode): Connect the Cathode (marked side) to node VCC. Connect the Anode to node V_OUT. Note: This ensures the diode is reverse-biased.
  • R1: Connect one leg to node V_OUT and the other leg to node 0.
  • M1 (Voltmeter): Connect the positive probe to V_OUT and the negative probe to 0.

Conceptual block diagram

Conceptual block diagram — LM393 Reverse-Biased Photodiode
Quick read: inputs → main block → output (actuator or measurement). This summarizes the ASCII schematic below.

Schematic

[ STIMULUS & POWER ]               [ SENSOR LOGIC ]                     [ OUTPUT ]

    [ Light Source L1 ] ~~~(Light)~~~>+---------------------+
                                      |    Photodiode D1    |
                                      | (Sensor / Rev Bias) |
    [ 5 V Supply V1 ] -----(VCC)------>| Cathode       Anode |----(V_OUT)---> [ Multimeter M1 ]
                                      +----------+----------+      (Volts)
                                                 |
                                           (Photocurrent)
                                                 |
                                                 v
                                      +----------+----------+
                                      |     Resistor R1     |
                                      |      (100 kΩ)       |
                                      +----------+----------+
                                                 |
                                                 v
                                          [ GND (0 V) ]
Schematic (ASCII)

Electrical diagram

Electrical diagram for case: Reverse Bias Photodiode Light Detection
Generated from the validated SPICE netlist for this case.

🔒 This electrical diagram is premium. With the 7-day pass or the monthly membership you can unlock the complete didactic material and the print-ready PDF pack.🔓 See premium access plans

Measurements and tests

  1. Dark Test: Cover the photodiode completely with an opaque object or your hand. Measure the voltage at V_OUT.
    • Expectation: The reading should be very close to 0 V (typically in the microvolt or low millivolt range), representing the dark current.
  2. Ambient Light Test: Expose the sensor to normal room lighting.
    • Expectation: V_OUT should rise significantly (e.g., 0.5 V to 2.0 V, depending on brightness and the exact value of R1).
  3. High Intensity Test: Shine a flashlight or bright LED (L1) directly at D1.
    • Expectation: V_OUT should increase further, potentially approaching the supply voltage limit if the light is very intense.
  4. Calculation: Use Ohm’s Law to calculate the photocurrent at any specific light level: Ireverse = VOUT / R1.

SPICE netlist and simulation

Reference SPICE Netlist (ngspice) — excerptFull SPICE netlist (ngspice)

* Practical case: Reverse Bias Photodiode Light Detection

* --- Models ---
* Generic Photodiode Model (Approximation for BPW34)
* Parameters: IS (Sat Current), CJO (Junction Cap), BV (Breakdown), RS (Series Res)
.model BPW34 D(IS=10n RS=5 N=1.1 BV=60 IBV=10u CJO=70p M=0.45 VJ=0.75)

* --- Components ---

* V1: 5 V DC supply
* Wiring: Positive to VCC, Negative to 0 (Ground)
V1 VCC 0 DC 5

* D1: Photodiode (Sensor)
* Wiring Guide: Cathode to VCC, Anode to V_OUT
* Note: SPICE Diode syntax is D   
D1 V_OUT VCC BPW34

* L1: External Light Stimulus (White LED/Flashlight)
* Modeled as a Current Source (I_L1) representing the generated photocurrent.
* ... (truncated in public view) ...

Copy this content into a .cir file and run with ngspice.

🔒 Part of this section is premium. With the 7-day pass or the monthly membership you can access the full content (materials, wiring, detailed build, validation, troubleshooting, variants and checklist) and download the complete print-ready PDF pack.

* Practical case: Reverse Bias Photodiode Light Detection

* --- Models ---
* Generic Photodiode Model (Approximation for BPW34)
* Parameters: IS (Sat Current), CJO (Junction Cap), BV (Breakdown), RS (Series Res)
.model BPW34 D(IS=10n RS=5 N=1.1 BV=60 IBV=10u CJO=70p M=0.45 VJ=0.75)

* --- Components ---

* V1: 5 V DC supply
* Wiring: Positive to VCC, Negative to 0 (Ground)
V1 VCC 0 DC 5

* D1: Photodiode (Sensor)
* Wiring Guide: Cathode to VCC, Anode to V_OUT
* Note: SPICE Diode syntax is D   
D1 V_OUT VCC BPW34

* L1: External Light Stimulus (White LED/Flashlight)
* Modeled as a Current Source (I_L1) representing the generated photocurrent.
* In reverse bias, photocurrent flows from Cathode to Anode (internally),
* effectively injecting current from VCC into V_OUT.
* Simulation: Pulsing light from Dark (0A) to Light (30uA).
* Timing: Delay 100us, Rise/Fall 10us, Width 400us, Period 1ms.
I_L1 VCC V_OUT PULSE(0 30u 100u 10u 10u 400u 1m)

* R1: 100 kOhm Load Resistor
* Wiring: One leg to V_OUT, other leg to 0
R1 V_OUT 0 100k

* M1: Multimeter (Voltmeter)
* Function: Measure voltage at V_OUT relative to Ground.
* Implemented via .print output directives below.

* --- Analysis Directives ---

* Transient Analysis:
* Step: 10us, Stop: 3ms (Captures 3 full light pulses)
.tran 10u 3m

* Operating Point Analysis (Initial DC Check):
.op

* Output Printing:
* Prints the voltage at the output node (V_OUT) and supply (VCC)
.print tran V(V_OUT) V(VCC)

.end

Simulation Results (Transient Analysis)

Simulation Results (Transient Analysis)
Show raw data table (347 rows)
Index   time            v(v_out)        v(vcc)
0	0.000000e+00	1.000500e-03	5.000000e+00
1	1.000000e-07	1.000500e-03	5.000000e+00
2	2.000000e-07	1.000500e-03	5.000000e+00
3	4.000000e-07	1.000500e-03	5.000000e+00
4	8.000000e-07	1.000500e-03	5.000000e+00
5	1.600000e-06	1.000500e-03	5.000000e+00
6	3.200000e-06	1.000500e-03	5.000000e+00
7	6.400000e-06	1.000500e-03	5.000000e+00
8	1.280000e-05	1.000500e-03	5.000000e+00
9	2.280000e-05	1.000500e-03	5.000000e+00
10	3.280000e-05	1.000500e-03	5.000000e+00
11	4.280000e-05	1.000500e-03	5.000000e+00
12	5.280000e-05	1.000500e-03	5.000000e+00
13	6.280000e-05	1.000500e-03	5.000000e+00
14	7.280000e-05	1.000500e-03	5.000000e+00
15	8.280000e-05	1.000500e-03	5.000000e+00
16	9.280000e-05	1.000500e-03	5.000000e+00
17	1.000000e-04	1.000500e-03	5.000000e+00
18	1.010000e-04	7.978912e-02	5.000000e+00
19	1.030000e-04	3.507154e-01	5.000000e+00
20	1.070000e-04	1.270928e+00	5.000000e+00
21	1.100000e-04	2.076364e+00	5.000000e+00
22	1.108000e-04	2.250021e+00	5.000000e+00
23	1.124000e-04	2.525718e+00	5.000000e+00
... (323 more rows) ...

Common mistakes and how to avoid them

  1. Forward Biasing the Photodiode: Connecting the Anode to VCC makes the photodiode act like a regular diode (or LED), conducting current constantly regardless of light.
    • Solution: Ensure the Cathode (stripe) connects to the positive supply (VCC).
  2. Resistor Value too Low: Using a 100 Ω or 1 kΩ resistor might result in a voltage output too small for a standard multimeter to read easily.
    • Solution: Use a high value resistor (100 kΩ to 1 MΩ) to convert the small microampere photocurrent into a readable voltage.
  3. Multimeter in Current Mode: Connecting the multimeter in parallel while set to Ammeter mode effectively shorts V_OUT to ground.
    • Solution: Always ensure the multimeter is set to DC Volts and connected in parallel with R1.

Troubleshooting

  • Symptom: Output voltage is always constant near 5 V (VCC).
    • Cause: The photodiode is likely connected in forward bias (Anode to VCC), or the photodiode is shorted.
    • Fix: Reverse the photodiode orientation.
  • Symptom: Output voltage stays at 0 V even with bright light.
    • Cause: Open circuit connections, R1 is shorted, or the photodiode is damaged.
    • Fix: Check continuity on the breadboard; verify D1 is actually a photodiode and not a standard LED (which also produces current but much less).
  • Symptom: Readings are unstable or «jumpy».
    • Cause: Interference from AC powered lights (50/60 Hz flicker) picked up by the high-impedance node V_OUT.
    • Fix: Test using a DC light source (flashlight) or add a small capacitor (e.g., 100 nF) in parallel with R1 to filter noise.

Possible improvements and extensions

  1. Transimpedance Amplifier (TIA): Replace R1 with an Operational Amplifier configured as a TIA. This provides a much faster response time and linear output voltage buffered from the load.
  2. Light Threshold Alarm: Feed V_OUT into a voltage comparator (like an LM393) to trigger a buzzer or LED when the light level exceeds a specific setpoint.

More Practical Cases on Prometeo.blog

        <div class="amazon-affiliate">
          <p><strong>Find this product and/or books on this topic on Amazon</strong></p>
          <p><a class="amazon-affiliate-btn" href="https://amzn.to/4mt8r4C" target="_blank" rel="nofollow sponsored noopener">Go to Amazon</a></p>
          <p class="amazon-affiliate-disclaimer">As an Amazon Associate, I earn from qualifying purchases. If you buy through this link, you help keep this project running.</p>
        </div>

Quick Quiz

Question 1: What is the primary function of the photodiode in the described circuit?




Question 2: In which mode is the photodiode operated in this practical case?




Question 3: What is the role of the series resistor in the circuit?




Question 4: What is the expected voltage output in a 'dark condition'?




Question 5: How does the photodiode behave with respect to illuminance (Lux)?




Question 6: Which of the following is listed as a real-world utility for this circuit?




Question 7: What physical phenomenon is observed when measuring the voltage drop across the resistor?




Question 8: What happens to the voltage output when the light condition changes from dark to light?




Question 9: How are photodiodes utilized in optical communications?




Question 10: What is the function of a photodiode in a smoke detector?




Carlos Núñez Zorrilla
Carlos Núñez Zorrilla
Electronics & Computer Engineer

Telecommunications Electronics Engineer and Computer Engineer (official degrees in Spain).

Follow me: