.. note:: Hello, welcome to the SunFounder Raspberry Pi & Arduino & ESP32 Enthusiasts Community on Facebook! Dive deeper into Raspberry Pi, Arduino, and ESP32 with fellow enthusiasts. **Why Join?** - **Expert Support**: Solve post-sale issues and technical challenges with help from our community and team. - **Learn & Share**: Exchange tips and tutorials to enhance your skills. - **Exclusive Previews**: Get early access to new product announcements and sneak peeks. - **Special Discounts**: Enjoy exclusive discounts on our newest products. - **Festive Promotions and Giveaways**: Take part in giveaways and holiday promotions. 👉 Ready to explore and create with us? Click [|link_sf_facebook|] and join today! Check the ``GPIO Zero`` ================================= If you are a Raspberry Pi 5 Python user, you can program GPIOs with API provided by ``GPIO Zero``. ``GPIO Zero`` is a module for controlling Raspberry Pi GPIO pins. This package provides a range of user-friendly classes and functions to control GPIO on a Raspberry Pi. For examples and documentation, visit: https://gpiozero.readthedocs.io/en/latest/. Test whether GPIO Zero is installed or not, type in python: .. raw:: html .. code-block:: python .. image:: ../python_pi5/img/zero_01.png :width: 100% In Python CLI, input ``import gpiozero``, If no error prompts, it means GPIO Zero is installed. .. raw:: html .. code-block:: import gpiozero .. image:: ../python_pi5/img/zero_02.png :width: 100% If you want to quit python CLI, type in: .. raw:: html .. code-block:: exit() .. image:: ../python_pi5/img/zero_03.png :width: 100%