Stufin
Home Quick Cart Profile

Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment

Buy Now on Stufin

Output Voltage

3.3V, 5V, and 12V (adjustable)

Output Current

3A (Max)

Input Voltage

100-240V AC, 50-60Hz

Efficiency

High-efficiency switching regulator (>85%)

Protection

Overvoltage, undervoltage, and short-circuit protection

### Accessories

Breadboard

A compact, high-quality breadboard for prototyping and testing IoT circuits

Jumper Wires

A set of 20 AWG jumper wires (10 x Male-Male, 10 x Male-Female) for easy connections

Power Cables

3-pin and 4-pin power cables for connecting devices to the power supply unit

Micro-USB CableFor programming and debugging microcontrollers

### Safety Equipment

Safety Glasses

Protective glasses with shatter-resistant lenses for protecting eyes from debris and particles

Insulated Wire Stripper

A tool for stripping and cutting wires safely and efficiently

Circuit Breaker Tester

A compact tester for verifying circuit breaker functionality

Multimeter

A basic digital multimeter for measuring voltage, current, and resistance

Safety Features

Short-circuit protectionThe power supply unit is designed to prevent damage from short circuits and overload conditions.

Overvoltage protection

The power supply unit is protected against overvoltage conditions, ensuring safe operation within specified limits.

Electrical insulation

The power supply unit and accessories are electrically insulated to prevent shock hazards.

Technical Specifications

Dimensions

200mm x 150mm x 50mm (L x W x H)

Weight

500g (approximately)

Operating Temperature

0C to 40C

Storage Temperature

-10C to 60C

Conclusion

The Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment is an essential kit for IoT enthusiasts, students, and professionals. It provides a reliable power supply, essential accessories, and safety equipment, ensuring a safe and efficient prototyping experience.

Pin Configuration

  • Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment Documentation
  • Power Supply Unit (PSU) Pinout Explanation
  • The Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment comes with a power supply unit (PSU) that has several pins, each with a specific function. Here is a detailed explanation of each pin:
  • Pin 1: Vin (Input Voltage)
  • Function: Input voltage for the power supply unit
  • Type: DC input
  • Voltage Range: 7V - 12V
  • Recommended Voltage: 9V
  • Current Rating: Up to 2A
  • Pin 2: 3.3V
  • Function: 3.3V regulated output
  • Type: DC output
  • Voltage Rating: 3.3V 0.1V
  • Current Rating: Up to 1A
  • Pin 3: 5V
  • Function: 5V regulated output
  • Type: DC output
  • Voltage Rating: 5V 0.1V
  • Current Rating: Up to 1A
  • Pin 4: GND (Ground)
  • Function: Ground connection for the power supply unit
  • Type: DC ground
  • Voltage Rating: 0V
  • Pin 5: EN (Enable)
  • Function: Enables or disables the power supply unit
  • Type: Active-high digital input
  • Logic Level: 3.3V or 5V
  • Default State: Disabled (low)
  • Pin 6: POV (Power-On Voltage sense)
  • Function: Sense voltage for power-on detection
  • Type: Analog input
  • Voltage Range: 2.5V - 5V
  • Pin 7: NC (Not Connected)
  • Function: Not connected
  • Type: N/A
  • Voltage Rating: N/A
  • Connecting the Pins
  • When connecting the pins, follow these guidelines:
  • Use a suitable wire gauge and insulation to ensure reliable connections.
  • Connect the Vin pin to a suitable power source (e.g., a wall adapter or battery) within the recommended voltage range.
  • Connect the 3.3V and 5V pins to the corresponding voltage rails on your project's circuit board or components.
  • Connect the GND pin to a solid ground point on your project's circuit board or components.
  • Connect the EN pin to a suitable digital output (e.g., a microcontroller or logic gate) to control the power supply unit's enable state.
  • Connect the POV pin to a suitable voltage sense input (e.g., a microcontroller or analog-to-digital converter) to monitor the power-on voltage.
  • Leave the NC pin unconnected.
  • Safety Precautions
  • Always ensure the power supply unit is properly connected and configured before powering on your project.
  • Use protective equipment, such as safety glasses and a soldering iron stand, when working with electrical components.
  • Follow proper soldering techniques and guidelines to avoid damaging the power supply unit or other components.
  • Keep the power supply unit away from water, moisture, and extreme temperatures.
  • Additional Resources
  • For more information on the Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment, please refer to the user manual or manufacturer's documentation.

Code Examples

Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment Documentation
Overview
The Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment is a comprehensive bundle designed for IoT and robotics projects. This package includes a power supply unit, jumper wires, breadboards, USB cables, and essential safety equipment. The package is ideal for students, hobbyists, and professionals working on innovative projects.
Component Details
Power Supply Unit:
	+ Input: 100-240V AC, 50-60Hz
	+ Output: 12V DC, 5A
	+ Efficiency: 85%
	+ Protection: Overvoltage, Overcurrent, and Short-circuit
 Jumper Wires:
	+ 20 AWG, 20cm length
	+ 10 pieces of male-to-male, male-to-female, and female-to-female wires
 Breadboards:
	+ 2 pieces of 830-point breadboards
	+ Size: 84x53mm
 USB Cables:
	+ 2 pieces of 1-meter USB-A to USB-B cables
 Safety Equipment:
	+ Safety glasses
	+ Wire strippers
	+ Pliers
Code Examples
### Example 1: Using the Power Supply Unit with an Arduino Board
In this example, we will demonstrate how to use the power supply unit to power an Arduino Uno board. We will connect an LED to the Arduino board and use the power supply unit to power the entire setup.
Hardware Requirements:
Arduino Uno board
 LED
 1k resistor
 Jumper wires
 Power supply unit (P4)
Code:
```c
const int ledPin = 13;  // LED connected to digital pin 13
void setup() {
  pinMode(ledPin, OUTPUT);
}
void loop() {
  digitalWrite(ledPin, HIGH);
  delay(1000);
  digitalWrite(ledPin, LOW);
  delay(1000);
}
```
Connections:
Connect the power supply unit to the Arduino Uno board using the USB cable.
 Connect the LED to digital pin 13 of the Arduino Uno board using a jumper wire.
 Connect the 1k resistor in series with the LED.
 Connect the jumper wire to the power supply unit's 12V output.
### Example 2: Using the Breadboard and Jumper Wires with a Sensor Module
In this example, we will demonstrate how to use the breadboard and jumper wires to connect a temperature sensor module (e.g., DS18B20) to an Arduino Uno board.
Hardware Requirements:
Arduino Uno board
 DS18B20 temperature sensor module
 Breadboard
 Jumper wires
Code:
```c
#include <DallasTemperature.h>
#define DS18B20_PIN 2  // DS18B20 pin connected to digital pin 2
DallasTemperature ds(DS18B20_PIN);
void setup() {
  Serial.begin(9600);
  ds.begin();
}
void loop() {
  ds.requestTemperatures();
  float tempC = ds.getTempCByIndex(0);
  Serial.print("Temperature: ");
  Serial.print(tempC);
  Serial.println("C");
  delay(1000);
}
```
Connections:
Connect the DS18B20 temperature sensor module to the breadboard.
 Connect the VCC pin of the DS18B20 to the 5V output of the Arduino Uno board using a jumper wire.
 Connect the GND pin of the DS18B20 to the GND pin of the Arduino Uno board using a jumper wire.
 Connect the data pin of the DS18B20 to digital pin 2 of the Arduino Uno board using a jumper wire.
Safety Precautions
Always use the safety glasses when working with electronics to protect your eyes from potential hazards.
 Use the wire strippers and pliers safely to avoid injury.
 Ensure the power supply unit is properly connected and switched off when not in use.
By following these examples and safety guidelines, you can effectively utilize the Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment in your IoT and robotics projects.