

The NIBM (Non-Isolated Buck Module), manufactured by Flame with part ID fire, is a highly efficient DC-DC converter designed to step down voltage from a higher input to a lower output. Unlike isolated converters, the NIBM does not provide electrical isolation between the input and output, making it ideal for applications where isolation is not required but high efficiency and compact design are critical.








The following table outlines the key technical specifications of the NIBM:
| Parameter | Value |
|---|---|
| Input Voltage Range | 6V to 36V |
| Output Voltage Range | 1.2V to 24V (adjustable) |
| Maximum Output Current | 3A |
| Efficiency | Up to 95% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 6mm |
The NIBM module has the following pin configuration:
| Pin | Name | Description |
|---|---|---|
| 1 | VIN | Input voltage pin. Connect to the positive terminal of the input power source. |
| 2 | GND | Ground pin. Connect to the negative terminal of the input power source. |
| 3 | VOUT | Output voltage pin. Provides the regulated output voltage. |
| 4 | ADJ (optional) | Voltage adjustment pin. Connect a resistor or potentiometer to adjust output. |
The NIBM can be used to power an Arduino UNO by stepping down a 12V input to 5V. Below is an example circuit and code:
// Example code to blink an LED using Arduino UNO powered by NIBM module
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Overheating:
Unstable Output Voltage:
Output Voltage Not Adjustable:
Q: Can the NIBM power a Raspberry Pi?
A: Yes, the NIBM can power a Raspberry Pi if the input voltage is within range and the output is adjusted to 5V with sufficient current (at least 2.5A for most models).
Q: Is the NIBM suitable for battery-powered applications?
A: Yes, the NIBM is highly efficient and compact, making it ideal for battery-powered devices.
Q: Can I use the NIBM to step up voltage?
A: No, the NIBM is a buck converter and can only step down voltage. For stepping up voltage, use a boost converter.