Codey OnlineBibliothèque de composants Arduino & ESP32 › DC-DC High Power Adjustable Step-up Module 3.0~35V to 3.5~35V 100W with Digital Display Voltmeter
DC-DC High Power Adjustable Step-up Module 3.0~35V to 3.5~35V 100W with Digital Display Voltmeter
Autres

DC-DC High Power Adjustable Step-up Module 3.0~35V to 3.5~35V 100W with Digital Display Voltmeter

Ce module élévateur DC-DC réglable convertit une tension d’entrée en une plage de tension de sortie plus élevée et inclut un voltmètre numérique. Il est prévu pour une puissance de sortie élevée (jusqu’à environ 100 W) et utilise un câblage par bornes à vis, avec un réglage pour ajuster la tension de sortie.

Largeur: 45.9 mm

Brochage — DC-DC High Power Adjustable Step-up Module 3.0~35V to 3.5~35V 100W with Digital Display Voltmeter

Broche Signal Description
IN+ power Positive DC input supply for the boost converter, typically 3.0–35 V.
IN- ground Negative input return for the DC supply; common ground reference.
OUT+ power Boosted positive DC output set by the adjustment control.
OUT- ground Negative output return; common with input negative on this module.

Exemple de schéma de câblage — DC-DC High Power Adjustable Step-up Module 3.0~35V to 3.5~35V 100W with Digital Display Voltmeter

De Vers Fil
board:5V x1:IN+ red
board:GND x1:IN- black
x1:OUT+ board:A0 green
x1:OUT- board:GND.1 black

Exemple de code Arduino — DC-DC High Power Adjustable Step-up Module 3.0~35V to 3.5~35V 100W with Digital Display Voltmeter

Cet exemple a été écrit et vérifié à la compilation pour le arduino-uno. Codey Online l'adapte pour vous à toute autre carte prise en charge.

// Canonical beginner example for a DC-DC boost module with voltmeter
// Measures the module output voltage on A0 using the Arduino's 5V analog reference.

const int voltagePin = A0;

void setup() {
  Serial.begin(9600);
  while (!Serial) {
    ;
  }
  Serial.println("DC-DC boost module voltage monitor");
}

void loop() {
  int raw = analogRead(voltagePin);
  float voltage = raw * (5.0 / 1023.0);

  Serial.print("A0 raw = ");
  Serial.print(raw);
  Serial.print("  |  module output voltage = ");
  Serial.print(voltage, 2);
  Serial.println(" V");

  delay(1000);
}

Composants similaires

4-Channel Optoisolator Board

4-Channel Optoisolator Board

AD9850 DDS Signal Generator Module

AD9850 DDS Signal Generator Module

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

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

Breadboard 400 pin

Breadboard 400 pin

Construisez votre projet Arduino ou ESP32 avec l'IA

Décrivez ce que vous voulez créer. Codey Online écrit le code, dessine le schéma de câblage, le compile et flashe votre carte directement depuis le navigateur.

Commencez gratuitement