Der MT3608 ist ein kleiner DC-DC-Aufwärtswandler (Step-up-Konverter), der eine eingehende Gleichspannung in eine höhere, einstellbare Gleichspannung am Ausgang umwandelt. Er wird normalerweise an den DC-Eingang an den Eingangsklemmen angeschlossen und liefert an den Ausgangsklemmen die hochgesetzte Spannung; ein integriertes Einstellelement dient zum genauen Nachregeln der Spannung. Solche Module werden häufig in Arduino- und ESP32-Projekten verwendet, um Schaltungen aus Batterien oder anderen Niederspannungsquellen zu versorgen.
| Pin | Signal | Beschreibung |
|---|---|---|
VIN- |
ground | Input negative terminal; connect to source/battery ground. |
VIN+ |
power | Input positive terminal; connect the lower DC supply voltage to be boosted. |
VOUT- |
ground | Output negative terminal; common ground return for the boosted output. |
VOUT+ |
power | Boosted adjustable positive output voltage for powering the load. |
| Von | Nach | Kabel |
|---|---|---|
board:5V |
x1:VIN+ |
red |
board:GND |
x1:VIN- |
black |
x1:VOUT+ |
board:VIN |
red |
x1:VOUT- |
board:GND.1 |
black |
Dieses Beispiel wurde für das arduino-uno geschrieben und kompiliergeprüft. Codey Online passt es für jedes andere unterstützte Board an.
void setup() {
Serial.begin(9600);
while (!Serial) {
;
}
Serial.println("MT3608 boost converter canonical example");
Serial.println("Arduino Uno 5V -> MT3608 VIN+ / GND -> VIN-");
Serial.println("MT3608 VOUT+ is shown connected to Arduino VIN, and VOUT- to GND.");
Serial.println("This component is passive, so no control code is required.");
}
void loop() {
// The MT3608 module is a power converter with no digital interface.
// In a real project, it would simply provide a boosted supply voltage.
delay(1000);
}
Beschreib einfach, was du bauen willst. Codey Online schreibt den Code, zeichnet den Schaltplan, kompiliert alles und flasht dein Board direkt aus dem Browser.
Kostenlos starten