

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 level to a lower output level. 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 stepped-down voltage to the load. |
| 4 | ADJ | Voltage adjustment pin. Use a potentiometer or resistor to set the output voltage. |
VIN pin.GND pin.ADJ pin to adjust the output voltage.VOUT pin and connect the load's ground to the GND pin.The NIBM can be used to power an Arduino UNO from a 12V source by stepping down the voltage to 5V. Below is an example circuit and Arduino code:
VIN and GND pins of the NIBM.ADJ pin to set the output voltage to 5V.VOUT pin of the NIBM to the 5V pin of the Arduino UNO.GND pin of the NIBM to the GND pin of the Arduino UNO.// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the NIBM module is providing a stable 5V to the Arduino UNO
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
ADJ pin is properly configured to set the output voltage.Overheating:
Output Voltage Fluctuations:
Cannot Adjust Output Voltage:
ADJ pin for proper operation.Q: Can the NIBM be used to power sensitive electronics?
A: Yes, but it is recommended to add capacitors to reduce noise and ensure stable operation.
Q: What happens if the input voltage exceeds 36V?
A: Exceeding the maximum input voltage may permanently damage the module. Always use a power source within the specified range.
Q: Can the NIBM be used in battery-powered systems?
A: Yes, the NIBM is ideal for battery-powered systems due to its high efficiency and compact size.
Q: Is the NIBM suitable for automotive applications?
A: Yes, as long as the input voltage remains within the specified range and proper heat dissipation is ensured.