Kento G 12V 1A Adapter - DC Jack
Kento G 12V 1A Adapter - DC Jack
The Kento G 12V 1A Adapter - DC Jack is a compact, high-quality power adapter designed to provide a stable and reliable power supply to various devices, including IoT projects, robotics, and other electronic systems. This adapter features a DC jack connector and is capable of delivering 12V DC output at a maximum current of 1A.
The primary function of the Kento G 12V 1A Adapter - DC Jack is to convert AC power from a wall outlet to DC power, which is then supplied to devices through the DC jack connector. This adapter is designed to provide a stable and regulated output voltage, ensuring that connected devices operate within their specified voltage ranges.
| The Kento G 12V 1A Adapter - DC Jack is suitable for a wide range of applications, including |
IoT projects
Robotics and automation systems
Industrial control systems
Medical devices
Audio and video equipment
Telecommunication systems
Provides a stable and regulated output voltage
Compact design makes it ideal for use in space-constrained applications
High-efficiency design reduces power loss and heat generation
Built-in overload and short-circuit protection ensure safe operation
Meets safety and regulatory standards for global use
| Parameter | Specification |
| --- | --- |
| Input Voltage | 100-240V AC, 50-60Hz |
| Output Voltage | 12V DC |
| Output Current | 1A (maximum) |
| DC Jack Connector | 5.5mm (outer diameter) x 2.1mm (inner diameter) |
| Efficiency | High-efficiency design with low power loss |
| Overload Protection | Built-in overload protection |
| Short-Circuit Protection | Built-in short-circuit protection |
| Compact Design | Small form factor design |
| Certifications | UL, CE, FCC, and other safety and regulatory standards |
| Operating Temperature | 0C to 40C (32F to 104F) |
By providing a reliable and stable power supply, the Kento G 12V 1A Adapter - DC Jack is an essential component for various applications, ensuring optimal performance and reliability of connected devices.
Kento G 12V 1A Adapter - DC Jack DocumentationOverviewThe Kento G 12V 1A Adapter is a compact DC power adapter with a 2.1mm DC jack, designed to provide a reliable and efficient power supply to various IoT devices, robotics, and automation projects. This adapter features a stable 12V output with a maximum current rating of 1A, making it suitable for powering small to medium-sized devices.SpecificationsInput Voltage: 100-240V AC
Output Voltage: 12V DC
Output Current: 1A
DC Jack Size: 2.1mm
Efficiency: >80%
Operating Temperature: -20C to 40C
Dimensions: 51mm x 30mm x 25mmPinoutThe Kento G 12V 1A Adapter features a standard 2.1mm DC jack with the following pinout:Center Positive ( Tip ): 12V DC
Outer Negative ( Sleeve ): GNDCode Examples### Example 1: Arduino Uno Power SupplyIn this example, we will use the Kento G 12V 1A Adapter to power an Arduino Uno board, which requires a 12V input.Hardware RequiredKento G 12V 1A Adapter
Arduino Uno board
Breadboard and jumper wiresCode
```c
void setup() {
// Initialize the Arduino board
Serial.begin(9600);
}void loop() {
// Blink the onboard LED to indicate power is working
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
```
ConnectionsConnect the 12V output from the Kento G adapter to the VIN pin on the Arduino Uno board.
Connect the GND output from the Kento G adapter to the GND pin on the Arduino Uno board.### Example 2: Raspberry Pi Power Supply with SensorsIn this example, we will use the Kento G 12V 1A Adapter to power a Raspberry Pi board, which will read data from a temperature and humidity sensor.Hardware RequiredKento G 12V 1A Adapter
Raspberry Pi board
Breadboard and jumper wires
DHT11 temperature and humidity sensorCode
```python
import RPi.GPIO as GPIO
import time# Set up GPIO library
GPIO.setmode(GPIO.BCM)# Set up sensor pins
dht_pin = 17# Function to read temperature and humidity data
def read_sensor():
# Read temperature and humidity data from DHT11 sensor
temp, hum = dht.read_dht11(dht_pin)
return temp, humwhile True:
# Read sensor data
temp, hum = read_sensor()
print("Temperature: {:.2f}C, Humidity: {:.2f}%".format(temp, hum))
time.sleep(1)
```
ConnectionsConnect the 12V output from the Kento G adapter to the power input on the Raspberry Pi board.
Connect the GND output from the Kento G adapter to the GND pin on the Raspberry Pi board.
Connect the DHT11 sensor to the Raspberry Pi board according to the datasheet.Remember to always follow proper safety precautions when working with electrical components, and ensure that the Kento G 12V 1A Adapter is used within its specified ratings to avoid overheating or damage.