Codey OnlineLibreria di componenti Arduino ed ESP32 › Adjustable Step-down Module 3-40VDC 1.5-35VDC LM2596
Adjustable Step-down Module 3-40VDC  1.5-35VDC LM2596
Altro

Adjustable Step-down Module 3-40VDC 1.5-35VDC LM2596

Questo convertitore buck regolabile basato su LM2596 riduce una tensione di ingresso DC più alta a una tensione di uscita DC più bassa con buona efficienza. Si usa comunemente per alimentare progetti Arduino e ESP32 da un'alimentazione a tensione più alta, e la tensione di uscita si regola con il trimmer potenziometrico sulla scheda.

Larghezza: 7 mm

Pinout — Adjustable Step-down Module 3-40VDC 1.5-35VDC LM2596

Pin Segnale Descrizione
OUT+ power Regulated positive DC output from the buck converter, set by the trimmer.
OUT- ground Output negative/ground return for the regulated DC load.
IN+ power Positive DC input supply to the buck converter, typically 3–40 VDC.
IN- ground Input negative/ground return for the DC supply.

Schema di cablaggio di esempio — Adjustable Step-down Module 3-40VDC 1.5-35VDC LM2596

Da A Filo
board:5V x1:IN+ red
board:GND x1:IN- black
x1:OUT+ board:5V red
x1:OUT- board:GND.1 black

Codice Arduino di esempio — Adjustable Step-down Module 3-40VDC 1.5-35VDC LM2596

Questo esempio è stato scritto e verificato in compilazione per arduino-uno. Codey Online lo adatta a qualsiasi altra scheda supportata.

// Canonical example for an LM2596 adjustable step-down module
// This sketch reads the Arduino's 5V rail as a simple voltage check.
// Wiring note: the LM2596 is connected to the Arduino power rails in this example.

void setup() {
  Serial.begin(9600);
  while (!Serial) {
    ;
  }
  Serial.println("LM2596 adjustable step-down module example");
  Serial.println("The module is wired to the Arduino power rails.");
}

void loop() {
  int raw = analogRead(A0);
  float volts = raw * (5.0 / 1023.0);

  Serial.print("A0 reading = ");
  Serial.print(raw);
  Serial.print("  approx volts = ");
  Serial.println(volts, 3);

  delay(1000);
}

Componenti correlati

4-Channel Optoisolator Board

4-Channel Optoisolator Board

AD9850 DDS Signal Generator Module

AD9850 DDS Signal Generator Module

Breadboard 400 pin

Breadboard 400 pin

DC 12V adjustable timer delay, time delay relay turn off switch module time relay time switch 0~25sec for smart home, automatic control

DC 12V adjustable timer delay, time delay relay turn off switch module time relay time switch 0~25sec for smart home, automatic control

Crea il tuo progetto Arduino o ESP32 con l'AI

Descrivi cosa vuoi realizzare. Codey Online scrive il codice, disegna lo schema di collegamento, lo compila e programma la tua scheda direttamente dal browser.

Inizia gratis