Note

Welcome to the SunFounder Raspberry Pi, Arduino & ESP32 Community on Facebook!

  • Get technical support and troubleshooting help.

  • Learn and share projects, tips, and tutorials.

  • Access early product previews and updates.

  • Enjoy exclusive discounts and giveaways.

👉 Join us here: [here]

Set Up on Raspberry Pi/Ubuntu/Kali/Homebridge OS

../../_images/Pironman-5-Pro-Max.png

If you have installed Raspberry Pi OS, Ubuntu, Kali Linux or Homebridge on your Raspberry Pi, you will need to configure the Pironman 5 Pro MAX using the command line. Detailed tutorials can be found below:

Note

Before configuring, you need to boot up and log into your Raspberry Pi. If you’re unsure how to log in, you can visit the official Raspberry Pi website: Getting Started with Raspberry Pi.

Configuring Shutdown to Deactivate GPIO Power

To prevent the OLED screen and RGB fans, powered by the Raspberry Pi GPIO, from remaining active post-shutdown, it’s essential to configure the Raspberry Pi for GPIO power deactivation.

  1. Open the EEPROM configuration tool:

    sudo raspi-config
    
  2. Navigate to Advanced Options → A12 Shutdown Behaviour.

    ../../_images/shutdown_behaviour3.png
  3. Select B1 Full Power Off.

    ../../_images/run_power_off3.png
  4. Save the changes. You will be prompted to reboot for the new settings to take effect.

Downloading and Installing the pironman5 Module

Note

For lite systems, initially install tools like git, python3, pip3, setuptools, etc.

sudo apt-get install git -y
sudo apt-get install python3 python3-pip python3-setuptools -y
  1. Proceed to download code from GitHub and install the pironman5 module .

    cd ~
    git clone -b pro-max https://github.com/sunfounder/pironman5.git --depth 1
    cd ~/pironman5
    sudo python3 install.py
    

    After successful installation, a system reboot is required to activate the installation. Follow the on-screen reboot prompt.

    Upon reboot, the pironman5.service will start automatically. Here are the primary configurations for Pironman 5 Pro MAX:

    • The OLED screen displays CPU, RAM, Disk Usage, CPU Temperature, and the Raspberry Pi’s IP Address.

    • Four WS2812 RGB LEDs will light up in blue with a breathing mode.

  2. You can use the systemctl tool to start, stop, restart, or check the status of pironman5.service.

    sudo systemctl restart pironman5.service
    
    • restart: Use this command to apply any changes made to the settings of Pironman 5 Pro MAX.

    • start/stop: Enable or disable the pironman5.service.

    • status: Check the operational status of the pironman5 program using the systemctl tool.

Note

At this point, you have successfully set up the Pironman 5 Pro MAX, and it is ready to use.

For advanced control of its components, please refer to 5. Control with Commands or Dashboard.