element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Maximum pins that can be used for i/o in RaspberryPi2 J8 header?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 5 replies
  • Subscribers 683 subscribers
  • Views 1058 views
  • Users 0 members are here
  • raspberry_pi
  • raspberrypi
Related

Maximum pins that can be used for i/o in RaspberryPi2 J8 header?

Former Member
Former Member over 10 years ago

Hi,

 

I am planning to use Raspberrypi2 for making a hardware. I am using Rpi2 as the processing part. I need 27 pins to be interfaced. I see that there are 17 gpio pins on the J8 header.

My question is can I use spi and i2c pins as input/output pins? Also the reserved pins can be used for i/o?

 

Regards,

Hidayat

  • Sign in to reply
  • Cancel
Parents
  • johnbeetem
    0 johnbeetem over 10 years ago

    According to the RasPi Hardware Wiki http://elinux.org/RPi_Low-level_peripherals#Model_A.2B.2C_B.2B_and_B2, there are 28 GPIO pins on the RasPi Model A+, B+, and 2.  I think you can configure all of them as GPIOs, or use alternate functions like SPI and I2C.  However, I haven't tried all the pins myself so YMMV.

     

    It doesn't look there there are any reserved pins any more -- they've all become GPIOs.

     

    RasPi GPIOs use 3.3V logic and are not safe for 5V signals.  There are other useful warnings at the Wiki.

     

    Update:  According to the RasPi Model B+ "reduced" schematic https://www.raspberrypi.org/documentation/hardware/raspberrypi/schematics/Raspberry-Pi-B-Plus-V1.2-Schematics.pdf, there are only 26 GPIOs.  GPIOs 0 and 1 are reserved for ID_SD and ID_SC, an I2C bus for talking to a HAT's EEPROM.  However, also according to that schematic RasPi only checks that I2C bus at boot time, so you might be able to switch them to GPIOs later.  However, whatever you attach must expect I2C signals at boot time and must not confuse the OS by responding to those signals.

     

    Some of the other signals may have default behavior that could confuse your add-on board.  For example, it may be that RXD0 and TXD0 look like a GNU/Linux terminal.  Also, some of the signals (such as I2C) may have pull-up resistors.  I think there's also a GPIO pin that used to select "safe mode".  You'll have to be careful with that one as well.

     

    There may be useful discussion of this at the official RasPi forum https://www.raspberrypi.org/forums/.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • johnbeetem
    0 johnbeetem over 10 years ago

    According to the RasPi Hardware Wiki http://elinux.org/RPi_Low-level_peripherals#Model_A.2B.2C_B.2B_and_B2, there are 28 GPIO pins on the RasPi Model A+, B+, and 2.  I think you can configure all of them as GPIOs, or use alternate functions like SPI and I2C.  However, I haven't tried all the pins myself so YMMV.

     

    It doesn't look there there are any reserved pins any more -- they've all become GPIOs.

     

    RasPi GPIOs use 3.3V logic and are not safe for 5V signals.  There are other useful warnings at the Wiki.

     

    Update:  According to the RasPi Model B+ "reduced" schematic https://www.raspberrypi.org/documentation/hardware/raspberrypi/schematics/Raspberry-Pi-B-Plus-V1.2-Schematics.pdf, there are only 26 GPIOs.  GPIOs 0 and 1 are reserved for ID_SD and ID_SC, an I2C bus for talking to a HAT's EEPROM.  However, also according to that schematic RasPi only checks that I2C bus at boot time, so you might be able to switch them to GPIOs later.  However, whatever you attach must expect I2C signals at boot time and must not confuse the OS by responding to those signals.

     

    Some of the other signals may have default behavior that could confuse your add-on board.  For example, it may be that RXD0 and TXD0 look like a GNU/Linux terminal.  Also, some of the signals (such as I2C) may have pull-up resistors.  I think there's also a GPIO pin that used to select "safe mode".  You'll have to be careful with that one as well.

     

    There may be useful discussion of this at the official RasPi forum https://www.raspberrypi.org/forums/.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube