Stontronics T7725DV Power Supply for Raspberry Pi 4 Model B
Stontronics T7725DV Power Supply for Raspberry Pi 4 Model B
The Stontronics T7725DV is a high-quality, compact power supply specifically designed for the Raspberry Pi 4 Model B, a popular single-board computer. This power supply is engineered to provide a reliable and efficient power solution, ensuring optimal performance and stability for your Raspberry Pi projects.
The Stontronics T7725DV power supply is designed to convert AC power from a wall outlet to DC power, which is then supplied to the Raspberry Pi 4 Model B through a USB-C connector. The power supply provides a stable output voltage of 5V, with a maximum output current of 3A, making it suitable for powering the Raspberry Pi 4 Model B and peripherals.
5V
3A
100-240V AC
50-60 Hz
85%
60 x 40 x 25mm (2.36 x 1.57 x 0.98 inches)
120g (4.26 oz)
The Stontronics T7725DV power supply is specifically designed for use with the Raspberry Pi 4 Model B, but it can also be used with other devices that require a 5V, 3A power supply.
The Stontronics T7725DV power supply is a reliable, efficient, and compact power solution for the Raspberry Pi 4 Model B, providing a stable and safe power supply for your projects. Its high-quality design, combined with its numerous safety features and certifications, make it an excellent choice for a wide range of applications, from prototyping to production.
Stontronics T7725DV Power Supply For Raspberry Pi 4 Model BOverviewThe Stontronics T7725DV is a high-quality power supply designed specifically for the Raspberry Pi 4 Model B. It provides a stable and efficient power supply to the Raspberry Pi, ensuring reliable operation and minimizing the risk of damage from power-related issues.FeaturesOutput: 5V 3A
Input: 100-240V 50-60Hz
Compact design with USB-C connector
Overvoltage, overcurrent, and short-circuit protection
CE, FCC, and RoHS certifiedHardware ConnectionsTo connect the Stontronics T7725DV power supply to your Raspberry Pi 4 Model B, simply plug the USB-C connector into the Raspberry Pi's USB-C power port.Software ConfigurationNo special software configuration is required to use the Stontronics T7725DV power supply with your Raspberry Pi 4 Model B. The power supply is plug-and-play, and the Raspberry Pi will automatically detect and use the power supply.Code ExamplesHere are a few examples of how to use the Stontronics T7725DV power supply in different contexts:Example 1: Basic Raspberry Pi SetupIn this example, we will use the Stontronics T7725DV power supply to power a Raspberry Pi 4 Model B running Raspbian OS.
```python
# No code required - simply plug in the power supply and boot up your Raspberry Pi
```
Example 2: IoT Project with Python ScriptIn this example, we will use the Stontronics T7725DV power supply to power a Raspberry Pi 4 Model B running a Python script that reads temperature data from a DS18B20 sensor.
```python
import time
import os# Import the necessary libraries
import RPi.GPIO as GPIO
from gpiozero import CPUTemperature# Set up the GPIO library
GPIO.setmode(GPIO.BCM)# Set up the temperature sensor
temp_sensor = CPUTemperature()while True:
# Read the temperature data
temp = temp_sensor.temperature# Print the temperature data
print("Temperature: {:.2f}C".format(temp))# Wait 1 second before taking the next reading
time.sleep(1)
```
Example 3: Home Automation Project with Node.jsIn this example, we will use the Stontronics T7725DV power supply to power a Raspberry Pi 4 Model B running a Node.js script that controls a relay module to turn a light on and off.
```javascript
const Gpio = require('onoff').Gpio;
const relay = new Gpio(17, 'out');setInterval(() => {
// Turn the light on
relay.writeSync(1);// Wait 5 seconds
setTimeout(() => {
// Turn the light off
relay.writeSync(0);
}, 5000);
}, 10000);
```
In this example, the Stontronics T7725DV power supply provides a stable and efficient power source to the Raspberry Pi, ensuring reliable operation of the relay module and the Node.js script.