The PIC Microcontroller

PIC is a family of 8-bit microcontrollers with origins in the 1970s at General Instrument, where the name referred to a Peripheral Interface Controller. The line passed to Microchip Technology, which grew out of General Instrument’s microelectronics division, and Microchip turned PIC into one of the most widely shipped microcontroller families in the industry. Decades after its introduction, PIC parts remain in production and in countless embedded designs.

Microchip’s PIC16F87XA datasheet documents the architecture firsthand. It describes an 8-bit microcontroller built on a Harvard architecture with a small RISC-style instruction set: the PIC16F877A, for example, uses just 35 single-word instructions and a reduced, regular instruction format. Harvard architecture means separate paths for program memory and data memory, which lets the chip fetch the next instruction while operating on data and helps it keep predictable, fast timing.

The datasheet also shows how complete these chips are as self-contained controllers. A typical part integrates Flash program memory, RAM, and EEPROM for nonvolatile data, along with timers, an analog-to-digital converter, capture and compare and PWM modules, comparators, and serial interfaces such as SPI, I2C, and a UART. The configurable general-purpose I/O pins let a single chip sense sensors and drive outputs directly, which is exactly what an embedded product needs.

PIC’s longevity is part of its story. A consistent core architecture, an enormous range of pin counts and peripheral mixes, low cost, and a stable development toolchain made it a default choice for engineers building everything from appliances and automotive modules to industrial controls and hobby projects. Together with the 8051 and the later AVR, PIC defined what an 8-bit microcontroller looked like for a generation of embedded developers, and it remains a reference point even as 32-bit cores like the ARM Cortex-M have taken over the higher end of the market.

Sources

Last verified June 8, 2026