CJMCU TCA9548A I2C 8 Channel Multiple Extensions Development Board
- Product SKU: R1528
- Category: Arduino Ecosystem, Beginner Friendly, Development Boards & Accessories, ESP32 & NodeMCU Ecosystem, Motor Drivers, Motor Shield, Motors, Drivers & Pumps, Other Modules, Robotics, Robotics & Cars Projects, Under ₹100
You just found the perfect I2C sensor, and you want to wire up two, three, or more of them to your Arduino. When you realize “Oh no, this chip has a fixed I2C address, and from what I know about I2C; you cannot have two devices with the same address on the same SDA/SCL pins”. Are you out of luck? You would be if you don’t have this cool CJMCU TCA9548A I2C 8 Channel Multiple Extensions Development Board.
The TCA9548A 8 Channel I2C Multiplexer extensions board is interesting in that it has an I2C address (0x70 by default) – and you basically send it a command to tell it which I2C multiplexed output you want to talk to, then you can address the board you want to address.
Features :
- 1-to-8 Bidirectional Translating Switches.
- Supports Hot Insertion.
- Low Standby Current.
- 1-to-8 Bidirectional Translating Switches.
- Active-Low Reset Input.
- Power Up With All Switch Channels Deselected.
- I2C Bus and SMBus Compatible.
- 5-V Tolerant Inputs.
- Latch-Up Performance Exceeds 100 mA Per JESD 78, Class II.
Specifications:
- Input Voltage (Volt): 1.65 – 5.5
- Clock Frequency (kHz): 0 – 400
- Dimensions (mm): 22 x 32 x 2.7
- Weight (gm): 4
Pin Description :
Power Pins:
- Vin – this is the power pin. Since the sensor chip uses 3-5 VDC. To power, the board, give it the same power as the logic level of your microcontroller – e.g. for a 5V micro like Arduino, use 5V.
- GND – common ground for power and logic.
- I2C Control-Side pins :
- SCL – this is the I2C clock pin for the chip itself, connect to your microcontrollers I2C clock line.
- SDA – this is the I2C data pin for the chip itself, connect to your microcontrollers I2C data line.
- RST – this is the reset pin, for resetting the multiplexer chip. Pulled high by default, connect to ground to reset
- A0 A1 A2 – these are the address selection pins for the multiplexer. By default, the multiplexer is at address 0x70 and these three pins are pulled low. Connect them to Vin to set the address to 0x71 – 0x77.
- A0 is the lowest-significant bit (if it is pulled high, it will increase the address by 1).
- A1 is the 2nd-lowest-significant bit (if it is pulled high, it will increase the address by 2).
- A2 is the 3rd-lowest-significant bit (if it is pulled high, it will increase the address by 4).
I2C Multiplexed-Side pins:
- SDx and SCx: There are 8 sets of SDx and SCx pins, from SD0/SC0 to SD7/SC7. These are the multiplexed pins. Each one is a completely separate I2C bus set. So you have 8 I2C devices with identical addresses, as long as they are on one I2C bus each.
- These pins do not have any pullups installed, so if you are using a chip or breakout without I2C pull-ups be sure to add them! Nicely, you can have Vin be 3.3V and have these pins pulled up to 5V (that is, they are 5V compliant).
Program :
We suggest using this little helper to help you select the port
#define TCAADDR 0x70
void tcaselect(uint8_t i) {
if (i > 7) return;
Wire.beginTransmission(TCAADDR);
Wire.write(1 << i);
Wire.endTransmission();
}
You can then call tcaselect(0) thru tcaselect(7) to set up the multiplexer.
Note that you if you happen to have I2C devices with I2C address 0x70, you will need to short one of the Addr pins on the TCA9548 breakout to Vin in order to make it not conflict. Given that you can have 0x70 thru 0x77, just find one that’s free and you’re good to go.
Package Includes :
- 1 x CJMCU TCA 9548 I2C 8 Channel Multiple extensions development board.
- 2 x Header set ( Without Soldered).
You just found the perfect I2C sensor, and you want to wire up two, three, or more of them to your Arduino. When you realize “Oh no, this chip has a fixed I2C address, and from what I know about I2C; you cannot have two devices with the same address on the same SDA/SCL pins”. Are you out of luck? You would be if you don’t have this cool CJMCU TCA9548A I2C 8 Channel Multiple Extensions Development Board.
The TCA9548A 8 Channel I2C Multiplexer extensions board is interesting in that it has an I2C address (0x70 by default) – and you basically send it a command to tell it which I2C multiplexed output you want to talk to, then you can address the board you want to address.
Features :
- 1-to-8 Bidirectional Translating Switches.
- Supports Hot Insertion.
- Low Standby Current.
- 1-to-8 Bidirectional Translating Switches.
- Active-Low Reset Input.
- Power Up With All Switch Channels Deselected.
- I2C Bus and SMBus Compatible.
- 5-V Tolerant Inputs.
- Latch-Up Performance Exceeds 100 mA Per JESD 78, Class II.
Specifications:
- Input Voltage (Volt): 1.65 – 5.5
- Clock Frequency (kHz): 0 – 400
- Dimensions (mm): 22 x 32 x 2.7
- Weight (gm): 4
Pin Description :
Power Pins:
- Vin – this is the power pin. Since the sensor chip uses 3-5 VDC. To power, the board, give it the same power as the logic level of your microcontroller – e.g. for a 5V micro like Arduino, use 5V.
- GND – common ground for power and logic.
- I2C Control-Side pins :
- SCL – this is the I2C clock pin for the chip itself, connect to your microcontrollers I2C clock line.
- SDA – this is the I2C data pin for the chip itself, connect to your microcontrollers I2C data line.
- RST – this is the reset pin, for resetting the multiplexer chip. Pulled high by default, connect to ground to reset
- A0 A1 A2 – these are the address selection pins for the multiplexer. By default, the multiplexer is at address 0x70 and these three pins are pulled low. Connect them to Vin to set the address to 0x71 – 0x77.
- A0 is the lowest-significant bit (if it is pulled high, it will increase the address by 1).
- A1 is the 2nd-lowest-significant bit (if it is pulled high, it will increase the address by 2).
- A2 is the 3rd-lowest-significant bit (if it is pulled high, it will increase the address by 4).
I2C Multiplexed-Side pins:
- SDx and SCx: There are 8 sets of SDx and SCx pins, from SD0/SC0 to SD7/SC7. These are the multiplexed pins. Each one is a completely separate I2C bus set. So you have 8 I2C devices with identical addresses, as long as they are on one I2C bus each.
- These pins do not have any pullups installed, so if you are using a chip or breakout without I2C pull-ups be sure to add them! Nicely, you can have Vin be 3.3V and have these pins pulled up to 5V (that is, they are 5V compliant).
Program :
We suggest using this little helper to help you select the port
#define TCAADDR 0x70
void tcaselect(uint8_t i) {
if (i > 7) return;
Wire.beginTransmission(TCAADDR);
Wire.write(1 << i);
Wire.endTransmission();
}
You can then call tcaselect(0) thru tcaselect(7) to set up the multiplexer.
Note that you if you happen to have I2C devices with I2C address 0x70, you will need to short one of the Addr pins on the TCA9548 breakout to Vin in order to make it not conflict. Given that you can have 0x70 thru 0x77, just find one that’s free and you’re good to go.
Package Includes :
- 1 x CJMCU TCA 9548 I2C 8 Channel Multiple extensions development board.
- 2 x Header set ( Without Soldered).
Return Policy Overview
At ROBODIUM™, we want you to be completely satisfied with your purchase. You may return most items within 7 days of delivery for a full refund or exchange.
Return Window
- Standard Returns: 7 days from delivery date for any reason, including if you simply changed your mind.
- Defective/Damaged Items: 7 days from delivery date for items received damaged or defective.
- Manufacturing Defects (Warranty): 15 days from delivery for manufacturing defects, unless a different warranty period is specified on the product page.
What Can Be Returned
Most items sold on ROBODIUM™ can be returned within the return window, including:
- Items you no longer need or changed your mind about
- Products received in damaged condition
- Items with manufacturing defects
- Wrong items received (item mismatch)
- Missing components inside the package
Return Conditions
To be eligible for a return, items must be:
- In their original, unused condition
- In the original packaging with all accessories, manuals, and free gifts (if any)
- Accompanied by proof of purchase
Note: Products damaged due to misuse, modification, static discharge, soldering, or improper handling may not be eligible for return.
How to Initiate a Return
- Contact us via email at support@robodium.com or call +91 8123109966
- Provide your order number and reason for return
- Submit photos/videos of the item (especially for damaged/defective products)
- Our team will review and approve your return request within 1-2 business days
Return Pickup Process
We arrange the return pickup for you - hassle-free returns similar to major e-commerce platforms.
- Once your return is approved, we will coordinate pickup from your location.
- Pack the product securely in its original packaging.
- Include a copy of the order confirmation or packing list.
- Keep the package ready - our logistics partner will collect it at the scheduled time.
Return Shipping Costs
- Defective, damaged, or wrong items: ROBODIUM™ covers all return shipping costs. No charges to you.
- Change of mind returns: A flat return shipping fee of ₹100 will be deducted from your refund amount.
Refund Process
- Refund Method: Refunds are processed to your original payment method.
- Processing Time: 5-7 business days after we receive and inspect the returned item.
- Refund Amount: Full purchase price minus any applicable return shipping fees.
- Orders canceled before shipping receive a full refund (minus up to 5% payment gateway charges, if applicable).
Replacements
- Once the returned item is inspected and approved, we ship the replacement at no additional cost.
- Replacement items are dispatched within 2 business days of receiving your return.
- If replacement is unavailable, we provide a full refund.
Warranty Terms
All products include a minimum 15-day warranty against manufacturing defects unless otherwise specified on the product page.
Warranty does not cover: misuse, soldering damage, modifications, physical damage, or incorrect electrical connections.
Order Cancellations
- Orders in Pending or Payment Verification status can be canceled for a full refund.
- Contact us immediately at support@robodium.com to cancel before shipping.
- Once an order is shipped, it cannot be canceled but can be returned after delivery.
Customer Service Commitment
- Email Response Time: Within 24 hours on business days
- Phone Support: Monday-Saturday, 10:00 AM - 6:00 PM IST
- Return Request Review: 1-2 business days
- Issue Resolution: Within 48 hours of verification
Need Help?
For any return, refund, or warranty questions, contact us:
📞 +91 8123109966 (Mon-Sat, 10 AM - 6 PM IST)
✉️ support@robodium.com
Last updated: January 2026
This return policy is accessible to all visitors without requiring login or registration.