

The Raspberry Pi 4B, manufactured by Raspberry Pi, is a compact and affordable single-board computer designed for a wide range of applications. It features a powerful quad-core processor, up to 8GB of RAM, multiple USB ports, dual micro-HDMI outputs, and built-in Wi-Fi and Bluetooth connectivity. This versatile device is ideal for projects such as programming, robotics, IoT systems, media centers, and more. Its small form factor and robust capabilities make it a popular choice for both hobbyists and professionals.








| Specification | Details |
|---|---|
| Processor | Broadcom BCM2711, Quad-core Cortex-A72 (ARM v8) 64-bit SoC @ 1.5GHz |
| RAM Options | 2GB, 4GB, or 8GB LPDDR4-3200 SDRAM |
| Storage | MicroSD card slot for storage and operating system |
| USB Ports | 2 × USB 3.0, 2 × USB 2.0 |
| HDMI Output | 2 × micro-HDMI ports (supports up to 4K resolution) |
| Networking | Gigabit Ethernet, 802.11ac Wi-Fi, Bluetooth 5.0 |
| GPIO Pins | 40-pin GPIO header |
| Power Supply | 5V/3A via USB-C or GPIO header |
| Dimensions | 85.6mm × 56.5mm × 17mm |
The Raspberry Pi 4B features a 40-pin GPIO (General Purpose Input/Output) header. Below is the pinout:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | 3.3V Power | 3.3V power supply |
| 2 | 5V Power | 5V power supply |
| 3 | GPIO2 (SDA1) | I2C Data |
| 4 | 5V Power | 5V power supply |
| 5 | GPIO3 (SCL1) | I2C Clock |
| 6 | Ground | Ground |
| 7 | GPIO4 | General-purpose I/O |
| 8 | GPIO14 (TXD0) | UART Transmit |
| 9 | Ground | Ground |
| 10 | GPIO15 (RXD0) | UART Receive |
| ... | ... | ... |
| 39 | Ground | Ground |
| 40 | GPIO21 | General-purpose I/O |
For the full GPIO pinout, refer to the official Raspberry Pi documentation.
The following example demonstrates how to blink an LED connected to GPIO pin 17 using Python.
import RPi.GPIO as GPIO import time
GPIO.setmode(GPIO.BCM) # Use Broadcom pin numbering GPIO.setup(17, GPIO.OUT) # Set GPIO 17 as an output pin
try: while True: GPIO.output(17, GPIO.HIGH) # Turn on the LED time.sleep(1) # Wait for 1 second GPIO.output(17, GPIO.LOW) # Turn off the LED time.sleep(1) # Wait for 1 second except KeyboardInterrupt: # Clean up GPIO settings on exit GPIO.cleanup()
The Raspberry Pi does not boot:
Overheating:
GPIO pins not working:
Wi-Fi connectivity issues:
Q: Can I power the Raspberry Pi 4B via the GPIO header?
A: Yes, you can supply 5V directly to the 5V and GND pins on the GPIO header, but ensure the power source is stable.
Q: What operating systems are compatible with the Raspberry Pi 4B?
A: The Raspberry Pi 4B supports Raspberry Pi OS, Ubuntu, and other Linux-based distributions. It can also run lightweight versions of Windows 10 IoT Core.
Q: Can I connect two monitors to the Raspberry Pi 4B?
A: Yes, the dual micro-HDMI ports support two monitors with resolutions up to 4K.
Q: How do I reset the Raspberry Pi 4B?
A: Disconnect and reconnect the power supply to perform a hard reset. Alternatively, use a software reboot command (sudo reboot).
This documentation provides a comprehensive guide to using the Raspberry Pi 4B effectively. For further details, refer to the official Raspberry Pi website.