3.3V, 5V, and 12V (adjustable)
3.3V, 5V, and 12V (adjustable)
3A (Max)
100-240V AC, 50-60Hz
High-efficiency switching regulator (>85%)
Overvoltage, undervoltage, and short-circuit protection
### Accessories
A compact, high-quality breadboard for prototyping and testing IoT circuits
A set of 20 AWG jumper wires (10 x Male-Male, 10 x Male-Female) for easy connections
3-pin and 4-pin power cables for connecting devices to the power supply unit
| Micro-USB Cable | For programming and debugging microcontrollers |
### Safety Equipment
Protective glasses with shatter-resistant lenses for protecting eyes from debris and particles
A tool for stripping and cutting wires safely and efficiently
A compact tester for verifying circuit breaker functionality
A basic digital multimeter for measuring voltage, current, and resistance
Safety Features
| Short-circuit protection | The power supply unit is designed to prevent damage from short circuits and overload conditions. |
The power supply unit is protected against overvoltage conditions, ensuring safe operation within specified limits.
The power supply unit and accessories are electrically insulated to prevent shock hazards.
Technical Specifications
200mm x 150mm x 50mm (L x W x H)
500g (approximately)
0C to 40C
-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.
Atal Tinkering Lab Package 4 (P4) Power Supply and Accessories and Safety Equipment DocumentationOverviewThe 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 DetailsPower 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
+ PliersCode Examples### Example 1: Using the Power Supply Unit with an Arduino BoardIn 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 13void 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 ModuleIn 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 wiresCode:
```c
#include <DallasTemperature.h>#define DS18B20_PIN 2 // DS18B20 pin connected to digital pin 2DallasTemperature 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 PrecautionsAlways 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.