ICs & microcontrollers
An integrated circuit is a complete circuit, anywhere from a handful of transistors to many billions, fabricated on one silicon die and sealed in a package. Instead of building an amplifier or a logic block from loose parts, you drop in an IC that contains the whole function, pre-tested and matched. This abstraction is what makes modern boards possible. Most design work is choosing ICs and connecting them.
A microcontroller (MCU) is the IC that acts as the brain. It puts a processor, memory, and peripherals such as timers, ADCs, and serial ports on one chip, with general-purpose pins (GPIO) it can read and drive under program control. It runs your code directly, usually with no operating system. Reading a button and switching a light, once a job for relays, becomes a few lines of firmware.
The skill that unlocks ICs is reading datasheets. The pinout, the absolute maximum ratings, the recommended operating conditions, and the typical application circuit answer most “why doesn’t this work?” questions before they happen. A chip run outside its ratings may work on the bench and fail in the field. The datasheet is the contract.
Key points
- An IC packs an entire tested circuit into one package, whether logic, memory, radio, or amplifier.
- A microcontroller combines CPU, memory, and peripherals and runs your firmware directly.
- GPIO pins are the MCU’s hands, configurable as inputs or outputs from software.
- The datasheet is the definitive reference for any IC: pinout, ratings, and application circuit.
Practice
0 of 2 answered · Not startedWrong answers just let you try again, and hints are there if you want them. Answering every question first time, without hints, is what earns mastery.
- 1
What best distinguishes a microcontroller from a microprocessor?
- 2
Where in a datasheet do you look to confirm a part will survive your supply rail?
