2

I am new to electronics and Raspberry Pi 2. I am able to use GPIO PINS for sample operations, but I am not able to understand what's the use of the below pins and any example for them:

  • PIN 3 GPIO02(SDA1,i2c)
  • PIN 5 GPIO03(SCL1,i2c)
  • PIN 7 GPIO04(GPIO_GCLK)
  • PIN 8 GPIO14(TXD0)
  • PIN 10 GPIO15(RXD0)
  • PIN 19 GPIO10(SPL_MOSI)
  • PIN 21 GPIO09(SPL_MISO)
  • PIN 23 GPIO11(SPL_CLK)
  • PIN 27 ID_SD(I2C IDEEPROM)
  • PIN 28 ID_SC(I2C IDEEPROM)

If anyone has sample programs to share for using these pins, it will be really a great help.

Greenonline
2,9725 gold badges27 silver badges38 bronze badges
asked Feb 18, 2016 at 17:36
1
  • 1
    This is a problematic question to answer. This site discourages 'link only' answers because links rot over time, leaving those answers unusable. I don't think it's likely that you'll get a single answer big enough to incorporate all of the pins without resorting to large external pages. I'd recommend starting with adafruit's learning system resources, which should give you plenty to work on. If you get stuck with something in particular, here is a good place to ask for help. Commented Feb 18, 2016 at 18:05

1 Answer 1

7

All the pins you mention are GPIO which means they can be configured as inputs and outputs as well as into the more specialised modes you have listed.

SDA1/SCL1 are the two GPIO needed for I2C bus 1. Look at any code to talk to an I2C sensor for example usage.

GPIO_GCLK may be configured as a general clock, which just means it can transmit a square wave. I can't imagine many people use the GPIO in that mode.

TXD0/RXD0 are the two GPIO needed for a serial link. Look at any serial link code for example usage.

SPI MOSI, MISO, CLK, and CEx are the GPIO needed for the main SPI bus. Look at any code to talk to a SPI sensor (e.g. ADC) for example usage.

ID_SD/ID_SC are the two GPIO needed for I2C bus 0. These GPIO are reserved for HAT usage, although you can use them as I2C bus 0 if you don't use a HAT.

answered Feb 18, 2016 at 18:36
1
  • Bookmark https::/pinout.xyz Commented May 20, 2023 at 21:36

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.