Stufin
Home Quick Cart Profile

Hi-Link 3.3V 1.5A Power Module

Buy Now on Stufin

Input Voltage

4.5V to 24V

Output Voltage

3.3V

Maximum Output Current

1.5A

Efficiency

Up to 95%

Dropout Voltage

1.2V

Operating Temperature

-40C to 85C

Storage Temperature

-40C to 125C

Dimensions

25.5mm x 17.5mm x 10mm

Weight

6g

Certifications and Compliance

The Hi-Link 3.3V 1.5A Power Module complies with relevant safety and regulatory standards, including

RoHS (Restriction of Hazardous Substances) compliant

CE (Conformit Europene) certified

FCC (Federal Communications Commission) compliant

Warranty and Support

The Hi-Link 3.3V 1.5A Power Module comes with a standard warranty and support package, including

1-year limited warranty against manufacturing defects

Dedicated technical support team for assistance with design and integration

By providing a stable and efficient power supply, the Hi-Link 3.3V 1.5A Power Module is an ideal choice for a wide range of applications that require a reliable and compact power solution.

Pin Configuration

  • Hi-Link 3.3V 1.5A Power Module Pinout Guide
  • The Hi-Link 3.3V 1.5A Power Module is a compact, high-efficiency DC-DC power module designed for a wide range of IoT applications. This documentation provides a detailed explanation of the module's pinouts, helping you connect and utilize the module effectively.
  • Pinout Structure:
  • The Hi-Link 3.3V 1.5A Power Module has a total of 4 pins, arranged in a single row. The pins are labeled as follows:
  • Pin 1: VIN (Input Voltage)
  • --------------------------------
  • Function: Input voltage pin for the power module
  • Voltage Range: 4V to 24V DC
  • Recommended Operating Voltage: 5V to 12V DC
  • Current Rating: Up to 1.5A
  • This pin is used to connect the input power source to the module. The input voltage range is from 4V to 24V DC, but it's recommended to operate within 5V to 12V DC for optimal performance.
  • Pin 2: GND (Ground)
  • -------------------------
  • Function: Ground pin for the power module
  • Purpose: Provides a common ground connection for the module
  • This pin is the ground connection for the power module and should be connected to the ground of your circuit or system.
  • Pin 3: VOUT (Output Voltage)
  • ------------------------------
  • Function: Regulated output voltage pin
  • Output Voltage: 3.3V DC
  • Current Rating: Up to 1.5A
  • This pin provides a regulated 3.3V DC output, which can be used to power your IoT devices or circuits. The maximum current rating is 1.5A.
  • Pin 4: EN (Enable)
  • ---------------------
  • Function: Enable pin for the power module
  • Logic Level: Active High (EN = High: Module Enabled, EN = Low: Module Disabled)
  • This pin is used to enable or disable the power module. When the EN pin is pulled high (connected to VIN or a logic high level), the module is enabled, and the output voltage is regulated to 3.3V DC. When the EN pin is pulled low (connected to GND or a logic low level), the module is disabled, and the output voltage is shut down.
  • Connection Guidelines:
  • 1. Connect the input power source (4V to 24V DC) to Pin 1 (VIN).
  • 2. Connect the ground of your circuit or system to Pin 2 (GND).
  • 3. Connect the load or IoT device to Pin 3 (VOUT) to receive the regulated 3.3V DC output.
  • 4. Connect the enable signal (logic high or low) to Pin 4 (EN) to control the power module's operation.
  • Remember to follow proper safety precautions and handling guidelines when working with electrical components. Ensure that your circuit or system is designed to operate within the recommended specifications of the Hi-Link 3.3V 1.5A Power Module.

Code Examples

Hi-Link 3.3V 1.5A Power Module Documentation
Overview
The Hi-Link 3.3V 1.5A Power Module is a switching DC power supply module designed for a wide range of IoT applications. It provides a regulated 3.3V output voltage and can supply up to 1.5A of current. The module features a high efficiency of up to 92% and low ripple noise, making it suitable for powering sensitive electronic devices.
Pinout
The Hi-Link 3.3V 1.5A Power Module has the following pinout:
VIN: Input voltage (4.5-12V)
 VOUT: Regulated output voltage (3.3V)
 GND: Ground
Code Examples
### Example 1: Arduino Uno Power Supply
In this example, we'll use the Hi-Link 3.3V 1.5A Power Module to power an Arduino Uno board.
```c
// No code required, simply connect the module to the Arduino Uno
// VIN to Arduino Uno's Vin pin
// GND to Arduino Uno's GND pin
// VOUT to Arduino Uno's 3.3V pin
```
### Example 2: ESP8266 Wi-Fi Module Power Supply
In this example, we'll use the Hi-Link 3.3V 1.5A Power Module to power an ESP8266 Wi-Fi module.
```c
// Connect the module to the ESP8266 Wi-Fi module
// VIN to ESP8266's VCC pin
// GND to ESP8266's GND pin
// VOUT to ESP8266's 3.3V pin
#include <WiFi.h>
void setup() {
  Serial.begin(115200);
  WiFi.begin("your_wifi_ssid", "your_wifi_password");
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi...");
  }
  Serial.println("Connected to WiFi");
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
}
void loop() {
  // Your code here
}
```
### Example 3: Raspberry Pi Pico Microcontroller Power Supply
In this example, we'll use the Hi-Link 3.3V 1.5A Power Module to power a Raspberry Pi Pico microcontroller.
```python
# Connect the module to the Raspberry Pi Pico
# VIN to Raspberry Pi Pico's VSYS pin
# GND to Raspberry Pi Pico's GND pin
# VOUT to Raspberry Pi Pico's 3.3V pin
import machine
# Initialize the board
machine.init()
print("Raspberry Pi Pico powered by Hi-Link 3.3V 1.5A Power Module")
```
Notes and Precautions
Make sure to connect the input voltage (VIN) within the recommended range of 4.5-12V to avoid damage to the module.
 The module has a built-in overcurrent protection (OCP) and short-circuit protection (SCP) to prevent damage from excessive current or short circuits.
 Ensure proper heat dissipation for the module, especially when operating at high loads.
 Always follow proper safety precautions when working with electronic components.