integrated circuits (ICs)

ICs (chips) are complete circuits etched onto tiny pieces of silicon and packaged so we can solder or plug them in. One chip can be a gate, a counter, an amplifier, a microcontroller… or an entire radio.

pins & orientation

Packages have a pin 1 mark (a dot) and/or a notch. Numbering goes counter-clockwise around the chip starting at pin 1.

holders (sockets)

static (ESD)

datasheets (what to read first)

source vs sink

Outputs can source current (provide it) or sink current (accept it to ground). Which one is stronger depends on the family—always check the sheet.

tip: many logic families can only source/sink a few mA per pin and have a package current limit too. Bright LEDs and motors need drivers.

combining outputs (safely)

logic ICs

Small logic chips are building blocks: gates (AND/OR/NOT), flip-flops, counters, shift registers, multiplexers. See the 4000 series (wide voltage, slower) and 74 series (faster, 3.3–5 V families like HC/HCT).

PICs (microcontrollers)

PIC is Microchip’s microcontroller line (e.g., PIC16F, PIC18F). One chip can read pins, time things, blink LEDs, and talk over UART/I²C/SPI. You’ll need:

Arduino-style boards hide setup, but learning from raw PIC/AVR/ARM teaches great habits.

caution
handle with ESD care; keep 0.1 µF at VCC/GND pins (plus bulk on the rail).
fact
datasheets list pinouts, abs-max ratings, timings, and typical circuits — worth a skim before wiring.