A Guide to the Raspberry Pi 5 GPIO Header

rpi5 gpio header

The Raspberry Pi 5 is a popular choice for low cost self built astronomy and astrophotography applications, including projects like INDI-AllSky benefiting from its GPIO (General-Purpose Input/Output) capabilities. Understanding its pinout is crucial for developers looking to leverage its capabilities. This guide breaks down each pin’s function and usage.

GPIO Schematic

Raspberry Pi 5 GPIO header

The 40-pin header is arranged in two rows of 20 pins each. Below is a breakdown of these pins by function.

Power Pins on the Raspberry Pi 5

The power pins provide direct voltage outputs for powering external components:

  • Pin 2, Pin 4: 5V Power Output – Supplies a constant 5V, suitable for powering sensors, motors, and other components.
  • Pin 1, Pin 17: 3.3V Power Output – Provides a 3.3V output, useful for components operating at lower voltage.
  • Ground (GND) Pins: Located at Pins 6, 9, 14, 20, 25, 30, 34, 39, used for establishing a common reference voltage.

General-Purpose Input/Output (GPIO) Pins

GPIO pins can be configured as input or output, enabling interaction with various components such as LEDs, buttons, and sensors.

Pin NumberGPIO NumberFunction
3GPIO 2I2C SDA (Data Line)
5GPIO 3I2C SCL (Clock Line)
7GPIO 4General-purpose / PWM output
8GPIO 14UART TX (Transmit)
10GPIO 15UART RX (Receive)
11GPIO 17General-purpose input/output
12GPIO 18PWM (Pulse Width Modulation)
13GPIO 27General-purpose input/output
15GPIO 22General-purpose input/output
16GPIO 23General-purpose input/output
18GPIO 24General-purpose input/output
19GPIO 10SPI MOSI (Master Out Slave In)
21GPIO 9SPI MISO (Master In Slave Out)
22GPIO 25General-purpose input/output
23GPIO 11SPI SCLK (Clock)
24GPIO 8SPI CE0 (Chip Enable 0)
26GPIO 7SPI CE1 (Chip Enable 1)
27GPIO 0Reserved for ID EEPROM
28GPIO 1Reserved for ID EEPROM
29GPIO 5General-purpose input/output
31GPIO 6General-purpose input/output
32GPIO 12PWM output
33GPIO 13PWM output
35GPIO 19SPI or PWM output
36GPIO 16General-purpose input/output
37GPIO 26General-purpose input/output
38GPIO 20SPI output
40GPIO 21SPI output

Communication Protocols on GPIO Pins

I2C (Inter-Integrated Circuit)

I2C is a multi-drop bus, multiple devices can be connected to these same two pins. Used for sensors reading temperature, relative humidity, air pressure, and anything else you may want to sample. INDI-AllSky supports a good range of different compatible sensors.

  • Pin 3 (GPIO 2) – SDA: Data line for I2C communication.
  • Pin 5 (GPIO 3) – SCL: Clock line for I2C communication.

SPI (Serial Peripheral Interface)

SPI lets you attach multiple compatible devices to a single set of pins by assigning them different chip-select pins. Also used for sensors reading temperature, and relative humidity. Again, INDI-AllSky supports a good range of different compatible sensors.

  • Pin 19 (GPIO 10) – MOSI: Sends data from the Raspberry Pi.
  • Pin 21 (GPIO 9) – MISO: Receives data from SPI devices.
  • Pin 23 (GPIO 11) – SCLK: Clock signal for SPI communication.
  • Pin 24 (GPIO 8) – CE0: Chip Enable 0 for selecting SPI devices.
  • Pin 26 (GPIO 7) – CE1: Chip Enable 1 for selecting SPI devices.

UART (Universal Asynchronous Receiver/Transmitter)

Users commonly control the Pi 5 over the GPIO using UART or access kernel boot messages from the serial console, which the system enables by default.

  • Pin 8 (GPIO 14) – TXD: Transmit data.
  • Pin 10 (GPIO 15) – RXD: Receive data.

PWM (Pulse Width Modulation)

PWM is a method of creating an analog voltage by toggling a digital pin on and off. Used for dimming LEDs, controlling motor or fan speed, or regulating a dew heater.

  • Pins 12 (GPIO 18) and 32 (GPIO 12) – PWM0
  • Pins 33 (GPIO 13) and 35 (GPIO 19) – PWM1

PCM (Pulse-coed Modulation)

PCM is a digital representation of sampled analog. On the Raspberry Pi, a DAC interprets this form of digital audio output to produce high-quality sound.

  • Pin 38 (GPIO 20) – DIN
  • Pin 40 (GPIO 21) – DOUT
  • Pin 35 (GPIO 19) – FS
  • Pin 12 (GPIO 18) – CLK

    Astrophotography and Astronomy Applications for the Raspberry Pi 5

    Astronomy enthusiasts widely use the Raspberry Pi 5 for projects, especially astrophotography and all-sky camera setups.. Some notable projects include:

    1. AllSky Cameras with INDI-AllSky
      • INDI-AllSky allows users to set up an all-sky camera for night-sky imaging. You can use the GPIO pins to control focusers, sensors, dew heaters, and actuators for lens and dome covers.
      • The Raspberry Pi 5’s improved processing power makes it well-suited for capturing and processing night sky images.
    2. Automated Telescope Control
      • GPIO pins can interface with stepper motor drivers, enabling precise focusing and movement of telescopes for tracking celestial objects.
      • The Raspberry Pi can run Ekos and INDI software, controlling mounts, cameras, and focusing mechanisms.
    3. Meteor Detection Systems
      • DIY meteor detection setups use Raspberry Pi GPIOs to trigger recordings based on motion detection.
      • Sensors such as light sensors or radio antennas can interface via GPIO to detect meteors.
    4. Star Tracking and Deep-Sky Imaging
      • Many photographers use the Raspberry Pi to automate long-exposure deep-sky imaging.
      • PWM pins can control cooling fans for temperature regulation in astrophotography setups.
    5. Automated Observatory Control
      • Sensors connected directly or indirectly through API calls to weather sources can detect unsafe weather conditions, with relays and motors controlling the opening and closing of observatory covers.

    Important Considerations

    • The Raspberry Pi 5 operates at 3.3V logic levels; connecting components that use 5V logic directly to GPIOs may damage the board.
    • The software configuration can multiplex some pins to serve multiple functions.
    • Grounding is crucial for stable operation; ensure all external circuits share a common ground with the Pi.

    Conclusion

    The GPIO header on the Raspberry Pi 5 offers an array of functionalities, supporting multiple communication protocols and allowing for advanced project development. Whether you’re interfacing with sensors, controlling actuators, or communicating with other microcontrollers, understanding the pinout is essential for maximizing the potential of your Raspberry Pi 5.

    Leave a Comment

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

    Scroll to Top