An electrical signal is a time-varying voltage or current deliberately manipulated to convey information, represent a physical measurement, or trigger a specific action within a circuit. While power delivery focuses on moving enough energy to spin a motor or heat a coil, a signal focuses on the precision of the waveform. In a real circuit, an electrical signal changes the logic state of a microcontroller pin, adjusts the duty cycle of a motor driver, modulates a radio frequency carrier, or physically moves a proportional valve actuator.

The most common mistake hobbyists and junior technicians make is confusing signal with power. Both rely on the exact same physics—electrons moving through a conductor—but their intent, scale, and vulnerability to interference are entirely different. Power is measured in watts and cares about total energy transfer; signals are measured in volts, amps, or hertz and care about waveform integrity.

The Core Signal Types and Operating Ranges

Before wiring a sensor or debugging a communication bus, you must identify the signal type. Below is a data-dense breakdown of the four primary signal categories you will encounter on the bench or in the field.

Signal Type Typical Range Impedance Characteristic Primary Use Case Noise Vulnerability
Analog Voltage 0–5V, 0–10V, ±10V High input impedance (>1MΩ) Potentiometers, basic temp sensors, audio High (susceptible to voltage drop & EMI)
Analog Current 4–20mA, 0–20mA Low output impedance, loop-dependent Industrial transducers, long-run sensors Low (immune to wire resistance voltage drop)
Digital Logic 0–3.3V, 0–5V, RS-485 (±5V) Matched to trace/cable (e.g., 50Ω, 120Ω) Microcontrollers, SPI/I2C, UART, Ethernet Moderate (relies on distinct threshold margins)
PWM / Frequency 0–100% Duty, 1Hz–100kHz Varies (often drives inductive loads) Motor speed control, LED dimming, servos Low (information is in time, not amplitude)

Row-by-Row Notes: Where People Get It Wrong

  • Analog Voltage: The 0–10V standard is ubiquitous in HVAC and industrial automation, but running a 0–10V signal over 50 feet of thin wire will result in a measurable voltage drop due to the receiver's input impedance. Always use shielded twisted pair (STP) for runs over 10 feet.
  • Analog Current: The 4–20mA loop is the gold standard for noisy environments. The '4mA' represents 0% of the measured variable. This is called a 'live zero'—if the wire breaks and current drops to 0mA, the controller immediately knows it's a fault, not a valid 0% reading.
  • Digital Logic: Never directly connect a 5V logic signal (like an Arduino Uno) to a 3.3V input (like an ESP32-WROOM-32) without a level shifter or voltage divider. The 5V high state will exceed the ESP32's absolute maximum ratings and degrade the silicon over time.
  • PWM: Pulse Width Modulation is often confused with analog voltage. A 50% duty cycle 5V PWM signal does not> output 2.5V DC; it outputs 5V half the time and 0V half the time. You need a low-pass RC filter to convert it to a true analog DC voltage.

Signal vs. Power: The Most Common Confusion

To understand the boundary between signal and power, use this single analogy: Think of voltage signals like water pressure in a pipe, and current signals like the actual flow rate of the water. If the pipe springs a leak or gets clogged (representing wire resistance or electromagnetic interference), the pressure (voltage) drops significantly at the end of the line, but the flow rate (current) remains largely constant throughout the entire loop.

In electrical terms, a power circuit is designed to deliver watts. If you are wiring a 15A, 120V AC branch circuit to a receptacle, the 120V is power. If the voltage sags to 114V under load, your toaster still works, just slightly slower. The exact voltage at any given millisecond is irrelevant as long as the RMS value is within acceptable bounds.

A signal circuit, however, treats the exact voltage or current level as data. If a thermocouple amplifier outputs 2.048V to represent 500°C, and wire resistance drops that signal to 2.010V by the time it reaches the microcontroller's Analog-to-Digital Converter (ADC), the system will read a lower temperature. The energy lost was microscopic (microwatts), but the information was corrupted. According to National Instruments, maintaining signal integrity requires matching the source impedance, minimizing cable capacitance, and shielding against electromagnetic interference (EMI).

Worked Example: 4-20mA Current Loop Voltage Drop

Let's look at a real-world calculation that bridges the gap between signal theory and jobsite wiring. You need to read a 4-20mA pressure transducer located 500 feet away from your PLC (Programmable Logic Controller). You are using 22 AWG copper wire.

The Setup:
• Distance: 500 feet (requires 1000 feet of total wire for the out-and-back loop).
• Wire: 22 AWG Copper (Resistance = 16.14 Ω per 1000 ft at 20°C).
• Receiver: PLC analog input card with an internal 250 Ω shunt resistor (converts 4-20mA to 1-5V).
• Transducer minimum operating voltage: 12V DC.

Step 1: Calculate Total Loop Resistance
Wire Resistance = 16.14 Ω
Receiver Resistor = 250 Ω
Total Resistance (R) = 266.14 Ω

Step 2: Calculate Voltage Drop at Maximum Signal
The maximum signal is 20mA (0.020A). Using Ohm's Law (V = I × R):
V_drop = 0.020A × 266.14 Ω = 5.32V

Step 3: Determine Minimum Power Supply Voltage
The power supply must overcome the voltage drop across the wire and the receiver, plus provide the minimum operating voltage required by the transducer itself.
V_supply_min = V_drop + V_transducer_min
V_supply_min = 5.32V + 12V = 17.32V

The Verdict: If you attempt to power this loop with a standard 12V DC supply, the signal will clip and fail before it ever reaches 20mA. You must use a 24V DC power supply to ensure the signal maintains its integrity across the 500-foot run. This is why 24VDC is the universal standard for industrial 4-20mA current loops.

Where You Meet This in Practice

Understanding signal types dictates how you route wires, select components, and write firmware. Here is where these concepts physically manifest in common projects and installations:

  • Home HVAC Wiring: The 24VAC power from your furnace transformer is power, but the 24VAC signal sent back to the furnace via the thermostat's 'W' (heat) or 'Y' (cool) terminals is a signal. It carries virtually no current, acting only as a logic 'high' to close a relay on the control board.
  • ESP32 / Arduino Sensor Interfacing: When reading an analog soil moisture sensor, the 0-3.3V output is an analog voltage signal. Because the ESP32's ADC is notoriously non-linear at the extreme 0V and 3.3V rails, experienced builders use an op-amp (like the LM358) to buffer and scale the signal to the 0.5V–2.8V sweet spot before it hits the GPIO pin.
  • Solar Charge Controllers: An MPPT charge controller uses high-frequency PWM signals to rapidly switch MOSFETs, effectively 'chopping' the solar panel's voltage to match the battery's absorption voltage. The heavy gauge wires carrying 40A to the battery are power; the tiny traces driving the MOSFET gates are signals.
  • Automotive OBD-II: The CAN bus in your car uses a differential digital signal (CAN_H and CAN_L). By measuring the voltage difference between the two wires rather than referencing a single wire to ground, the signal completely rejects the massive electromagnetic noise generated by the alternator and ignition coils.

Frequently Asked Questions

Can a power line also carry a signal?

Yes. This is known as Power Line Communication (PLC) or ripple control. By superimposing a high-frequency, low-voltage signal (e.g., 100kHz at 2V) on top of a 120V/240V AC power line, utilities and smart home devices (like older X10 modules) can transmit data without running extra wires. The receiver uses a high-pass filter to block the 60Hz power and extract the high-frequency signal.

Why do digital signals use square waves instead of sine waves?

Square waves transition between 'low' and 'high' states almost instantaneously, providing a clear, unambiguous threshold for digital logic gates to read. Sine waves spend too much time in the intermediate voltage range, which can cause logic gates to oscillate or draw excessive shoot-through current. As noted in All About Circuits, the sharp edges of square waves are what allow modern microprocessors to clock billions of operations per second.

What is the difference between a signal ground and a chassis ground?

Signal ground is the reference point (0V) for your low-voltage information circuits. Chassis ground is the physical metal enclosure of the device, tied to earth ground for safety. In sensitive analog circuits (like audio amplifiers or precision ADCs), these two are kept physically separated and tied together at exactly one point (a 'star ground') to prevent heavy power return currents from flowing through the signal ground and corrupting the data.