• How to Place an Order

  • Store Pick Up

  • Request for Quotation/ International Sourcing

  • Order Status

Reference: RBD-0351

MIFARE Classic 1K RFID NFC Smart Card 13.56MHz Printable

Contactless transmission of data and supply energy (no battery needed) Operating distance: Up to 100mm (depending on antenna geometry) RoboticsBD Operating frequency: 13.56MHz Data transfer: 106 kbit/s Data integrity: 16 Bit CRC, parity, bit coding bit counting Anticollision Typical ticketing transaction: <100 ms ( including backup management)...

Price BDT 32
More
In-Stock
All best sellers
74HC4067 16-Ch Analog / Digital Mux Module Robotics Bangladesh
  • 74HC4067 16-Ch Analog / Digital Mux Module Robotics Bangladesh

74HC4067 16-Ch Analog / Digital Mux Module

RBD-2734

Bi-directional mux  can handle analog and digital signals.

BDT 250
rating Read the 7 reviews
Average rating: 5/5 Number of reviews: 7
Quantity
In Stock

77 people have purchased this item recently
65 people added this item to the cart in last 10 days
58 items in stock in Uttara, Dhaka
  • Store Pickup Available! Store Pickup Available!
  • Free Ship Over 5000 BDT Free Ship Over 5000 BDT
  • Quality Product Quality Product
  • No Warranty No Warranty
  • No Replacement No Replacement

DESCRIPTION

The 16-Ch Analog / Digital Mux Module mounts a 74HC4067, a 16-channel multiplexer/demultiplexer IC that can route both analog and digital signals in both directions.

PACKAGE INCLUDES:

  • 16-Channel Analog / Digital Mux Module
  • 2x – Male header strips

KEY FEATURES OF 16-CH ANALOG / DIGITAL MUX MODULE:

  • 16 bi-directional channels
  • Can be used as multiplexer or demultiplexer
  • Channels can handle analog or digital signals
  • 3.3 and 5V logic compatible

1 of 16 input channels can be routed to 1 output or 1 input can be routed to 1 of 16 output channels.  It can handle analog signals such as from analog sensors or a bank of potentiometers or it can handle digital signals such as from switches, digital sensors or even serial communications.

The 74HC4067 can operate over the range of 2 to 6V, so it is compatible with both 3.3 and 5V logic.

Four address lines (S0-S3) select one of the 16 channels and connects it to the input/output pin (SIG).  It uses binary addressing, so address 0000 is Channel 0, address 1111 is Channel 15.  When a channel is ON, it has a resistance of about 70 ohms which allows signals to flow both ways.  With a 5V power supply, we measured about 60 ohms.   Maximum current is 25mA through any of the channels.

There is an enable pin (EN) that is active LOW and defaults to that value.  When LOW, the device enables the channel selected by the address lines.  If EN is pulled HIGH, all channels are disabled.

Module Connections

On the electronics module there are 2 rows of breakout points.  These can be used to connect wires or header pins can be soldered in depending on the application.

1×8 Header

  • SIG = Signal Input / Output.  This will usually connect to an analog input or digital I/O on the microcontroller
  • S3 = Binary Address Bit 3.  The address bits (3…0) connect to 4 digital output pins on the microcontroller to select channel.
  • S2 = Binary Address Bit 2
  • S1 = Binary Address Bit 1
  • S0 = Binary Address Bit 0
  • EN = Enable.  Internally pulled LOW to enable by default.  Can be pulled HIGH to disable all channels.
  • VCC = 2 to 6V.  Usually connected to 5V or 3.3V to match the microcontroller power.
  • GND = Ground, must be common with the microcontroller.

1×16 Header

  • C15 = Channel 15
  • C14 = Channel 14
  • ….
  • C1 = Channel 1
  • C0 = Channel 0

OUR EVALUATION RESULTS:

This is one of those devices that sounds complicated, but is actually easy to use.  When using this device, it is perhaps easiest to think of it as a bank of 16 mechanical switches with one side of all the switches tied together with a built-in  series resistor of 60-70 ohms that goes to a microcontroller analog or digital pin.   The other side of the switches connect to analog or digital signals that you want to monitor or control.  The main rule is that only one switch can be turned on at a time.

Since only one output can be active at a time these devices are generally most useful for sequentially reading multiple inputs rather than controlling outputs.

The board comes with male header pins.  Whenever soldering header pins of this type, it is always recommended to insert the pins into a solderless breadboard while the module is being soldered to ensure the pins stay aligned with the breadboard spacing.

The example program below demonstrates some of its capability.   It sets the device up on the A0 analog input pin and scans the 16 channels and prints out the analog value which will range from 0 to 1023.  If the inputs are left floating, the readings will be random.  If a pin is pulled low, it should read close to 0.  If it is pulled to Vcc, it should read close to 1023.

74HC4067 16-Channel Mux Program

/*  74HC4067 Analog / Digital Mux Example

   This is setup to read 1 of 16 analog inputs such as from analog sensors
   which is the most common use of this device.  The SIG pin can be connected to a 
   digital pin if it is desired to work with digital data instead of analog.
   
   Accessing the device uses a table and small function to translate from channel 0-15 to the binary 
   address to make life a little easier
*/
// Define pins used below
#define S0_PIN 4  // Use any 4 available digital pins for addressing the 74HC4067
#define S1_PIN 5
#define S2_PIN 6
#define S3_PIN 7
#define SIG_PIN A0  // Use any available analog pin.

// Table below is used to translate from 0-15 to binary address of device.
int channel_address_table[16][4] = {
  // s0, s1, s2, s3     channel
    {0,  0,  0,  0},    // 0
    {1,  0,  0,  0},    // 1
    {0,  1,  0,  0},    // 2
    {1,  1,  0,  0},    // 3
    {0,  0,  1,  0},    // 4
    {1,  0,  1,  0},    // 5
    {0,  1,  1,  0},    // 6
    {1,  1,  1,  0},    // 7
    {0,  0,  0,  1},    // 8
    {1,  0,  0,  1},    // 9
    {0,  1,  0,  1},    // 10
    {1,  1,  0,  1},    // 11
    {0,  0,  1,  1},    // 12
    {1,  0,  1,  1},    // 13
    {0,  1,  1,  1},    // 14
    {1,  1,  1,  1}     // 15
};
//===============================================================================
//  Initialization
//===============================================================================
void setup() {
  pinMode(S0_PIN, OUTPUT);  // Set addressing pins as outputs
  pinMode(S1_PIN, OUTPUT);
  pinMode(S2_PIN, OUTPUT);
  pinMode(S3_PIN, OUTPUT);

  Serial.begin(9600);          // Set Serial Monitor window comm speed
}
//===============================================================================
//  Main
//===============================================================================
void loop() {
  int mux_Value;
  // Step through each much channel and report what we are seeing
  for (int i=0; i<16; i++){
    Mux_Addr (i);
    delay(1000);  // Slow things down for readability and allow address to settle
    mux_Value = analogRead(SIG_PIN); // Read analog value from mux
    Serial.print("Ch");
    Serial.print(i);
    Serial.print(": ");
    Serial.println(mux_Value);
    //delay(1000);  // Delay 1 second to slow everything down for readability
  }
  Serial.println();
  delay(3000);  // Read the mux channels every 3 seconds
}

// Function to update the mux binary address bits given the channel number 0-15
void Mux_Addr (int ch_Addr)
{
    digitalWrite(S0_PIN, channel_address_table[ch_Addr][0]);
    digitalWrite(S1_PIN, channel_address_table[ch_Addr][1]);
    digitalWrite(S2_PIN, channel_address_table[ch_Addr][2]);
    digitalWrite(S3_PIN, channel_address_table[ch_Addr][3]);
}

What is the price of 74HC4067 16-Ch Analog / Digital Mux Module in Bangladesh?

The latest price of 74HC4067 16-Ch Analog / Digital Mux Module in Bangladesh is BDT 250 You can buy the 74HC4067 16-Ch Analog / Digital Mux Module at best price from our RoboticsBD or visit RoboticsBD Office.

Please note that the product information provided on our website may not be entirely accurate as it is collected from various sources on the web. While we strive to provide the most up-to-date information possible, we cannot guarantee its accuracy. We recommend that you always read the product labels, warnings, and directions before using any product.

Product Images are shown for illustrative purposes only and may differ from the actual product.

Product Details
RBD-2734
58 Items
Filter reviews
(6)
(1)
(0)
(0)
(0)
(0)
Reset

All product reviews are from verified purchases and are comply with DIRECTIVE (EU) 2019/2161
.
rating
This products quality is good
Ok
rating
Ok
Quality
rating
Good
good product
rating
working good
Digital Mux Module
rating
Good Quality.
MUX
rating
Good
Mux
rating
It’s good. No issue with the module, working fine at all
19 other products in the same category:

Reference: RBD-3206

Metal Motor Servo Tester ESC Checker Master for RC Drone, Car, Boat

The Metal Motor Servo Tester ESC Checker Master is a professional-grade tool designed to test and calibrate servos and electronic speed controllers (ESCs) for RC drones, cars, boats, and helicopters. With its durable aluminum alloy construction and versatile functionality, this tester allows you to adjust and synchronize multiple servos or ESCs with ease....

Price BDT 1,490
More
In Stock

Reference: RBD-3166

GY-SI5351 Clock Signal Generator Module

The GY-SI5351 Clock Signal Generator Module is a versatile and precise clock generation device, capable of producing multiple independent frequencies with minimal error. Controlled via I2C, this module is perfect for applications requiring precise frequency synthesis for audio, video, communication, and general electronic projects. With three independent...

Price BDT 490
More
In Stock

Reference: RBD-2676

PWM Signal Generator Stepper Motor Speed Controller Driver Board

Suitable for use with a wide range of stepper motors and drivers. Can be integrated into a simple control platform with a stepper motor and DC power supply. Offers three selectable low-frequency signal options: high (5.4k-160kHz), middle (540-16.6kHz), and low (80-2.4kHz), adjustable via jumper settings. Capable of producing both pulse and PWM signals,...

Price BDT 550
More
In Stock

Reference: RBD-3122

CJMCU-608 ATECC608A Cryptographic Key Memory Random Number Generator Module

The CJMCU-608 ATECC608A module is a high-security cryptographic memory module designed to store and manage cryptographic keys. Equipped with a random number generator (RNG), this module supports various security functions, including signature generation, encryption, and decryption. It is ideal for applications that require secure key management and data...

Price BDT 2,250
More
In Stock

Reference: RBD-2354

3.3V-30V 1Ch 1Hz-150KHz Dual Mode Signal Generator Square Wave LCD PWM Pulse Frequency Duty Cycle Module

Versatile Signal Generator: Supports dual modes (PWM and PULSE) for enhanced flexibility. Wide Frequency Range: Operates from 1Hz to 150KHz with ±2% frequency accuracy. Customizable Outputs: Adjust duty cycle, pulse width, delay, and number of pulses. User-Friendly Interface: LCD display for real-time monitoring and precise adjustments. Compact &amp;...

Price BDT 690
More
In-Stock

Reference: RBD-2761

ICL8038 12V to 15V 10Hz-450KHz Triangular/Rectangular/Sine Wave Signal Generator Module

ICL8038 12V to 15V, Signal Generator, Medium/Low Signal, Frequency 10Hz-450KHz, Triangular/Rectangular/Sine Wave Generator, Module Working voltage: 12V ~ 15V Output: Triangular wave, Square wave and sine wave. Frequency range: 10HZ ~ 450kHz Low distortion sine wave: 1% Duty cycle range: 2% to 98% Low temperature drift: 50ppm / ℃ Triangular wave output...

Price BDT 580
More
In Stock

Reference: RBD-2207

AD9850 DDS Signal Generator Module

2 sine wave and 2 square wave output. AD9850: 0-40MHz. After the 20-30MHz frequency harmonics increases, the waveform will be less and less clean. Low-pass filter with 70MHz, so the waveform better than SN. Parallel and serial data input can be selected via a jumper.

Price BDT 2,250
More
In-Stock

Reference: RBD-2554

Operational Single/Dual Amplifier OP AMP Tester Single/Dual Op Amp Test Board

Type: Operational Amplifier Test Board Material: PCB Size: Approx. 92 x 57 x 17mm / 3.62 x 2.24 x 0.67in Working Voltage: DC 12V Working Current: &gt;100mACompatible Op-Amp Models: Single Op-Amp: LM741, LF356, NE5534, TL071, TL081, OP07, and other standard package single op-amps. Dual Operational: LM358, NE5532, TL072, TL082, MC1458, RC4558, OP275, AD827,...

Price BDT 1,950
More
In Stock

Reference: RBD-3305

TL494 PWM Adjustable Pulse Generator Module

The TL494 PWM Adjustable Pulse Generator Module is a versatile and efficient pulse width modulation (PWM) signal generator, capable of producing a 5V PWM signal ranging from 500Hz to 100kHz. With its adjustable frequency and duty cycle, this module provides precise control over pulse generation, making it ideal for various applications including power...

Price BDT 350
More
In Stock

Reference: RBD-3320

LM358 Duty And Frequency Adjustable Square Wave Signal Generator

The LM358 Duty and Frequency Adjustable Square Wave Signal Generator is a compact and versatile module designed for pulse signal generation, motor control, microcontroller triggering, and circuit testing. Featuring an adjustable duty cycle and frequency, this module provides users with a fine-tuned square wave output for various applications.

Price BDT 350
More
In Stock

Reference: RBD-2340

2 Channel PWM Pulse Frequency Adjustable Duty Cycle Square Wave Rectangular Wave Signal Generator Module

2-channel PWM pulse frequency and duty cycle adjustable signal generator module Generates square and rectangular waveforms for experiment and development Frequency range: 1Hz to 150KHz, adjustable in three precision levels Features serial port control with customizable PWM settings via commands Compact design (44x30x11mm) with 5–30V DC operating voltage

Price BDT 350
More
In-Stock

Reference: RBD-2357

Servo Signal Monitor Pulse Frequency PWM Tester with Cable

Compact PWM signal monitor for accurate pulse width and frequency measurement. Wide range detection: Supports pulse widths from 50-9950us. Ideal for testing receivers, flight controllers, and servos. Displays clear signal status with anti-reverse connection protection. Upgraded design: Smaller, better performance, and quick display updates. Lightweight...

Price BDT 690
More
In-Stock
Customers who bought this product also bought:

Reference: RBD-0756

IR receiver Diode

Very low supply current Photo-detector and preamplifier in one package Internal filter for PCM frequency Improved shielding against EMI Supply voltage: 2.5 V to 5.5 V Improved immunity against ambient light

Price BDT 15
More
In-Stock

Reference: RBD-1010

NE-555 Timer

Timing from microseconds to hours A stable or monostable operation Adjustable duty cycle TTL compatible output can sink or source up to 200mA

Price BDT 14
More
In-Stock

Follow us on Facebook