0.9V-5V to 5V DC-DC USB Step Up Power Boost Converter Module Documentation
The 0.9V-5V to 5V DC-DC USB Step Up Power Boost Converter Module is a compact and efficient power conversion module designed to step up input voltages between 0.9V and 5V to a stable 5V output, making it suitable for powering USB devices, microcontrollers, and other electronic projects. This module features a high-efficiency DC-DC conversion algorithm, low power consumption, and a compact design.
Input voltage range: 0.9V - 5V
Output voltage: 5V
Output current: Up to 1A
High-efficiency DC-DC conversion algorithm
Low power consumption
Compact design
The module has the following pinout:
VIN: Input voltage (0.9V - 5V)
GND: Ground
VOUT: Output voltage (5V)
EN: Enable pin (active high)
Operating Temperature: -20C to 85C
Storage Temperature: -40C to 125C
Humidity: 20% to 80% RH
Here are a few code examples demonstrating how to use the 0.9V-5V to 5V DC-DC USB Step Up Power Boost Converter Module in various contexts:
Example 1: Basic Powering of a USB Device
In this example, we will use the module to power a USB keyboard from a 3.7V lithium-ion battery.
Arduino Code
```arduino
const int Vin = A0; // Input voltage (3.7V)
const int GND = GND_PIN;
const int Vout = 5V_PIN; // Output voltage (5V)
const int EN = 2; // Enable pin
void setup() {
pinMode(EN, OUTPUT);
digitalWrite(EN, HIGH); // Enable the module
}
void loop() {
// Power the USB keyboard
digitalWrite(Vout, HIGH);
delay(1000);
}
```
Example 2: Powering a Microcontroller
In this example, we will use the module to power an ESP32 microcontroller from a 2.5V solar panel.
ESP32 Code
```c++
#include <WiFi.h>
#define VIN 12 // Input voltage (2.5V)
#define GND 13
#define VOUT 5 // Output voltage (5V)
#define EN 15 // Enable pin
void setup() {
pinMode(EN, OUTPUT);
digitalWrite(EN, HIGH); // Enable the module
Serial.begin(115200);
WiFi.begin("your_ssid", "your_password");
}
void loop() {
// Power the ESP32 microcontroller
digitalWrite(VOUT, HIGH);
delay(1000);
}
```
Note: In both examples, ensure that the input voltage and current ratings of the module are not exceeded, and that the output voltage and current ratings are within the specifications of the device being powered.
Ensure proper input voltage and current ratings to avoid damaging the module.
Avoid overheating or overloading the module, as it may cause permanent damage.
Follow proper soldering and assembly techniques to prevent damage to the module.
I hope this documentation and the provided code examples help you effectively use the 0.9V-5V to 5V DC-DC USB Step Up Power Boost Converter Module in your IoT projects!