The HALJIA T-Shape GPIO Extension Board (Part ID: 1909002C) is a versatile and user-friendly component designed to expand the number of General Purpose Input/Output (GPIO) pins available for microcontrollers and single-board computers. Its T-shaped layout facilitates easier connections and prototyping, making it an essential tool for hobbyists, students, and professionals working on electronic projects.
Parameter | Specification |
---|---|
Manufacturer | HALJIA |
Part ID | 1909002C |
Voltage Rating | 3.3V/5V (compatible with most MCUs) |
Current Rating | Up to 20mA per pin |
Pin Count | 40 pins (20 on each side) |
Dimensions | 60mm x 40mm x 10mm |
Connector Type | Male and Female Headers |
Pin Number | Description | Functionality |
---|---|---|
1 | 3.3V | Power Supply (3.3V) |
2 | 5V | Power Supply (5V) |
3 | GPIO2 | General Purpose I/O |
4 | GPIO3 | General Purpose I/O |
5 | GND | Ground |
6 | GPIO4 | General Purpose I/O |
7 | GPIO5 | General Purpose I/O |
8 | GPIO6 | General Purpose I/O |
9 | GPIO7 | General Purpose I/O |
10 | GPIO8 | General Purpose I/O |
11 | GPIO9 | General Purpose I/O |
12 | GPIO10 | General Purpose I/O |
13 | GPIO11 | General Purpose I/O |
14 | GPIO12 | General Purpose I/O |
15 | GPIO13 | General Purpose I/O |
16 | GPIO14 | General Purpose I/O |
17 | GPIO15 | General Purpose I/O |
18 | GPIO16 | General Purpose I/O |
19 | GPIO17 | General Purpose I/O |
20 | GPIO18 | General Purpose I/O |
Power Supply:
Connecting GPIO Pins:
Breadboarding:
// Example code to blink an LED connected to GPIO2 on the T-Shape GPIO Extension Board
const int ledPin = 2; // GPIO2 on the extension board
void setup() {
pinMode(ledPin, OUTPUT); // Set GPIO2 as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Power to the Board:
GPIO Pins Not Responding:
Intermittent Connections:
Q1: Can I use this extension board with a Raspberry Pi?
Q2: What is the maximum current I can draw from a single GPIO pin?
Q3: Can I use both 3.3V and 5V power supplies simultaneously?
Q4: How do I know which GPIO pin corresponds to which function?
By following this documentation, users can effectively utilize the HALJIA T-Shape GPIO Extension Board to expand their GPIO capabilities and enhance their electronic projects.