Stufin
Home Quick Cart Profile

ERD 5V 2.4A adapter with MicroUSB cable

Buy Now

Component Name

ERD 5V 2.4A Adapter with MicroUSB Cable

Overview

The ERD 5V 2.4A adapter with MicroUSB cable is a compact, high-efficiency power adapter designed to provide reliable and efficient power supply to a wide range of devices, including IoT devices, smartphones, tablets, and other portable electronics. This adapter is an essential component for powering devices that require a stable 5V DC power source.

Functionality

  • Convert AC power (100-240V, 50-60Hz) from a wall outlet to DC power (5V, 2.4A).
  • Provide a stable and regulated 5V DC output to ensure reliable operation of connected devices.
  • Offer overcurrent protection to prevent damage to connected devices in case of excessive current draw.
The ERD 5V 2.4A adapter with MicroUSB cable serves as a power adapter that converts AC (Alternating Current) power from a wall outlet to DC (Direct Current) power for devices that require a stable 5V power supply. The adapter's primary function is to

Key Features

  • High-Efficiency Power Conversion: The ERD 5V 2.4A adapter features high-efficiency power conversion, minimizing heat generation and ensuring reliable operation.
  • Compact Design: The adapter's compact design makes it easy to carry and convenient for use in various applications.
  • Universal Input: The adapter supports a wide input voltage range of 100-240V, 50-60Hz, making it compatible with power outlets worldwide.
  • Stable 5V Output: The adapter provides a regulated 5V DC output, ensuring a stable power supply to connected devices.
  • High-Current Capacity: The adapter can deliver up to 2.4A of current, making it suitable for powering devices that require high current.
  • MicroUSB Cable: The adapter comes with a standard MicroUSB cable (1.5m length) for convenient connection to devices.
  • Overcurrent Protection: The adapter features built-in overcurrent protection to prevent damage to connected devices in case of excessive current draw.
  • Certifications: The adapter meets international safety standards, including UL, CE, and FCC certifications, ensuring safe and reliable operation.
  • RoHS Compliance: The adapter is RoHS (Restriction of Hazardous Substances) compliant, making it an environmentally friendly choice.

Input Voltage

100-240V, 50-60Hz

Output Voltage

5V 5%

Output Current

Up to 2.4A

Power Conversion Efficiency

80%

Dimensions

40mm x 25mm x 15mm (L x W x H)

Weight

Approximately 40g

Operating Temperature

0C to 40C

Storage Temperature

-20C to 85C

Humidity

5% to 95% RH (non-condensing)

Applications

The ERD 5V 2.4A adapter with MicroUSB cable is suitable for powering a wide range of devices, including

IoT devices (sensors, actuators, and gateways)

Smartphones and tablets

Wearable devices (smartwatches, fitness trackers, and headphones)

Portable electronics (e-readers, handheld games, and portable chargers)

Other devices requiring a stable 5V DC power supply.

Pin Configuration

  • ERD 5V 2.4A Adapter with MicroUSB Cable Pinout Documentation
  • The ERD 5V 2.4A adapter with MicroUSB cable is a common power adapter used to charge and power small devices, such as smartphones, tablets, and IoT devices. The MicroUSB connector has five pins, which are explained below:
  • Pinout Structure:
  • 1. VCC (Pin 1)
  • Function: Power supply (5V)
  • Description: This pin provides a 5V DC power output from the adapter.
  • 2. Data- (Pin 2)
  • Function: Data transmission (USB Data-)
  • Description: This pin is used for data transmission between the device and the host.
  • 3. Data+ (Pin 3)
  • Function: Data transmission (USB Data+)
  • Description: This pin is used for data transmission between the device and the host.
  • 4. GND (Pin 4)
  • Function: Ground
  • Description: This pin provides a ground connection for the device.
  • 5. ID (Pin 5)
  • Function: USB ID (Optional)
  • Description: This pin is not connected in a standard MicroUSB cable. It's used for USB OTG (On-The-Go) devices to determine the device's role (host or peripheral).
  • Connection Structure:
  • When connecting the MicroUSB cable to a device, ensure the correct pinout is observed:
  • VCC (Pin 1): Connect to the device's power input (5V)
  • Data- (Pin 2): Connect to the device's USB Data- input
  • Data+ (Pin 3): Connect to the device's USB Data+ input
  • GND (Pin 4): Connect to the device's ground
  • ID (Pin 5): Leave unconnected (unless using USB OTG)
  • Important Notes:
  • The ERD 5V 2.4A adapter provides a maximum current output of 2.4A.
  • Ensure the device being powered can handle the 5V, 2.4A output.
  • Always check the device's specifications before connecting the power adapter.
  • Use a certified MicroUSB cable to ensure compatibility and safety.
  • By following this pinout and connection structure, you can properly connect the ERD 5V 2.4A adapter with MicroUSB cable to your device, ensuring safe and reliable power supply and data transmission.

Code Examples

ERD 5V 2.4A Adapter with MicroUSB Cable Documentation
Overview
The ERD 5V 2.4A adapter with MicroUSB cable is a compact and efficient power supply component designed for various Internet of Things (IoT) projects. It provides a stable 5V output with a maximum current of 2.4A, making it suitable for powering microcontrollers, single-board computers, and other devices that require a reliable power source.
Technical Specifications
Input Voltage: 100-240V AC, 50-60Hz
 Output Voltage: 5V DC
 Output Current: 2.4A
 Cable Type: MicroUSB
 Cable Length: 1.5m
 Efficiency: >80%
 Operating Temperature: 0C to 40C
Code Examples
### Example 1: Powering a Raspberry Pi with Python
In this example, we will demonstrate how to power a Raspberry Pi using the ERD 5V 2.4A adapter and use Python to control an LED connected to one of the GPIO pins.
Hardware Requirements
Raspberry Pi (any model)
 ERD 5V 2.4A adapter with MicroUSB cable
 LED
 1k resistor
 Breadboard and jumper wires
Software Requirements
Raspbian OS (or any other OS compatible with Raspberry Pi)
 Python 3.x
Code
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define the LED pin
LED_PIN = 17
# Set up the LED pin as an output
GPIO.setup(LED_PIN, GPIO.OUT)
try:
    while True:
        # Turn the LED on
        GPIO.output(LED_PIN, GPIO.HIGH)
        time.sleep(1)
        
        # Turn the LED off
        GPIO.output(LED_PIN, GPIO.LOW)
        time.sleep(1)
        
except KeyboardInterrupt:
    # Clean up GPIO on exit
    GPIO.cleanup()
```
Explanation
In this example, we use the ERD 5V 2.4A adapter to power the Raspberry Pi. We then use Python to control an LED connected to GPIO pin 17. The code sets up the GPIO mode, defines the LED pin, and sets it up as an output. The program then enters an infinite loop, turning the LED on and off with a 1-second delay between each state.
### Example 2: Powering an ESP8266 NodeMCU Board with MicroPython
In this example, we will demonstrate how to power an ESP8266 NodeMCU board using the ERD 5V 2.4A adapter and use MicroPython to blink an onboard LED.
Hardware Requirements
ESP8266 NodeMCU board
 ERD 5V 2.4A adapter with MicroUSB cable
Software Requirements
MicroPython firmware ( flashed on the ESP8266 board)
Code
```python
import machine
import time
# Define the onboard LED pin
LED_PIN = 2
# Set up the LED pin as an output
machine.Pin(LED_PIN, machine.Pin.OUT)
while True:
    # Turn the LED on
    machine.Pin(LED_PIN, machine.Pin.HIGH)
    time.sleep(0.5)
    
    # Turn the LED off
    machine.Pin(LED_PIN, machine.Pin.LOW)
    time.sleep(0.5)
```
Explanation
In this example, we use the ERD 5V 2.4A adapter to power the ESP8266 NodeMCU board. We then use MicroPython to control the onboard LED. The code defines the LED pin, sets it up as an output, and enters an infinite loop, turning the LED on and off with a 0.5-second delay between each state.