Introduction to Electronic Systems

Welcome to the world of Electronic Systems! Have you ever wondered how a night-light knows to turn on when it gets dark, or how a microwave counts down the seconds? That’s all thanks to electronics. In this chapter, we will explore the "brains" behind modern engineering. We will look at how systems take in information, make decisions, and then do something useful.

Don't worry if this seems a bit technical at first. Think of an electronic system like a human body: your eyes see light (Input), your brain decides to blink (Process), and your eyelid moves (Output). It’s that simple! Let’s dive in.


1. The Three Building Blocks: Input, Process, and Output

Every electronic system can be broken down into three main parts. Engineers often use block diagrams to show this flow of information.

Input Devices

These are the "senses" of the system. they detect changes in the environment. Examples include:

  • Light Sensors (LDRs): Change their resistance based on how bright it is.
  • Temperature Sensors (Thermistors): Change their resistance based on heat.

Process Devices

This is where the "thinking" happens. The system looks at the input and decides what to do based on rules. Examples include:

  • Timers: Create a delay (like waiting 30 seconds for a hand dryer).
  • Counters: Count how many times something happens.
  • Logic Gates: Make simple "Yes/No" decisions.

Output Devices

These are the "actions." They turn electricity into light, sound, or movement. Examples include:

  • LEDs: Small, efficient lights.
  • Buzzers and Piezo Sounders: Create noise or alarms.
  • 7-Segment Displays: The numbers you see on a digital clock.

Quick Review: Input = Sense, Process = Think, Output = Do.


2. Analogue vs. Digital Signals

Electronic systems use two types of signals to send information. Understanding the difference is key!

Analogue Signals

These are continuous and can be any value. Analogy: A dimmer switch for a light. You can have it slightly on, halfway, or full brightness. It's like a smooth ramp.

Digital Signals

These only have two states: on or off (usually represented as 1 or 0). Analogy: A standard light switch. It is either on or it is off. There is no in-between. It's like a set of stairs.

Analogue to Digital Conversion (ADC)

Computers and microcontrollers only speak "Digital." If we use an analogue sensor (like a thermometer), the system must use an ADC to turn that "ramp" of information into "steps" the computer can understand.


3. Logic Gates: The Rules of the Game

Logic gates are the simplest form of "processing." They follow strict rules to decide if an output should be ON or OFF.

1. AND Gate: The output is only ON if Input A AND Input B are both ON. Think of a safety machine where you must press two buttons at the same time to start it.

2. OR Gate: The output is ON if Input A OR Input B (or both) are ON. Think of a doorbell that can be pressed at the front door or the back door.

3. NOT Gate: This is an inverter. If the input is ON, the output is OFF. It does the opposite of what it's told!

Memory Aid: AND is picky (needs both), OR is easy-going (needs either), NOT is stubborn (does the opposite).


4. Discrete Components: The Parts in the Box

To build a circuit, engineers use individual parts called discrete components. Here are the ones you need to know:

Resistors

These "resist" the flow of electricity. They are used to protect sensitive parts like LEDs from getting too much power. Variable Resistors allow you to change the resistance (like a volume knob).

Diodes

These act like one-way valves. They only let electricity flow in one direction. Rectifying diodes are used to turn Alternating Current (AC) into Direct Current (DC).

Capacitors

These are like tiny temporary batteries. They store a small amount of charge and release it when needed. They can be polarised (must be put in the right way round) or non-polarised (can go in any way).


5. Programmable Devices and Microcontrollers

Modern engineering uses Microcontrollers (like a PIC - Peripheral Interface Controller). These are tiny computers on a single chip.

Why use them?

  • They can replace many separate components, making the circuit smaller.
  • They can be reprogrammed if you want to change how the system works without building a new one.
  • They can handle complex tasks like timing, counting, and logic all at once.

Interfacing: Transistors and FETs

Microcontrollers are smart, but they aren't very strong. They can't provide enough power to run a big motor or a loud siren directly. To solve this, we use Drivers like Transistors or FETs (Field-Effect Transistors). Think of a transistor as a small switch that uses a tiny current from the microcontroller to turn on a much larger current for the output.


6. Programming with Flowcharts

When engineers program a system, they often use flowcharts to plan the logic. For your exam, you should be familiar with systems using up to three inputs and three outputs.

Common Flowchart Symbols:

  • Oval: Start or Stop.
  • Rectangle: An action (e.g., "Turn on LED").
  • Diamond: A decision or question (e.g., "Is it dark?"). These always have "Yes" and "No" branches.
  • Parallelogram: Input or Output data.

Example: A simple heater system.
Start -> Is temperature low? -> (Yes) Turn on Heater -> (No) Turn off Heater -> Loop back to Start.


7. Key Calculations and Formulas

In electronics, we often need to calculate how much a component is resisting the flow of electricity. This is Resistance.

For resistors in a series (one after the other), you simply add them up:
\( R_{total} = R_1 + R_2 + R_3 ... \)

Common Mistake to Avoid: Don't mix up Series and Parallel circuits! In a series circuit, there is only one path for the electricity. If one component breaks, the whole circuit stops working.


Summary: Key Takeaways

1. Every system has an Input, Process, and Output.

2. Analogue is a continuous wave; Digital is on/off (1 and 0).

3. Logic Gates (AND, OR, NOT) make basic decisions.

4. Microcontrollers are the flexible, programmable "brains" of modern devices.

5. Transistors act as switches to help low-power brains control high-power muscles.