Stufin
Home Quick Cart Profile

Kento G 12V 2A Adapter - DC Jack

Buy Now on Stufin

Component Name

Kento G 12V 2A Adapter - DC Jack

Overview

The Kento G 12V 2A Adapter - DC Jack is a compact and efficient power supply component designed for use in various IoT applications. This adapter provides a stable 12V DC output at a maximum current of 2A, making it suitable for powering small to medium-sized devices. The DC Jack connector allows for easy connection and disconnection of devices, ensuring convenient and reliable power supply.

Functionality

The primary function of the Kento G 12V 2A Adapter - DC Jack is to convert AC power from a wall outlet to a stable 12V DC output. This adapter is designed to power devices that require a 12V DC input, such as IoT modules, sensors, microcontrollers, and other small electronic devices.

Key Features

  • Output Specifications:

Output Voltage

12V DC

Output Current

2A (maximum)

Output Power

24W (maximum)

  • Input Specifications:

Input Voltage

100-240V AC (universal input)

Input Frequency

50-60Hz

  • DC Jack Connector:

Type

2.1mm DC Jack (center positive)

Diameter

5.5mm

  • Protection Features:
  • Certifications and Compliance:
  • Overcurrent Protection (OCP)Protects the device from excessive current draws
    Short Circuit Protection (SCP)Protects the device from short circuits
    Overvoltage Protection (OVP)Protects the device from voltage surges

    CE, FCC, and RoHS certified

    Meets safety standards for electromagnetic compatibility (EMC) and electromagnetic interference (EMI)

    • Physical Characteristics:

Dimensions

52mm x 30mm x 25mm (L x W x H)

Weight

60g

Material

Flame retardant ABS plastic

  • Operating Environment:

Operating Temperature

0C to 40C

Storage Temperature

-20C to 80C

Humidity

20% to 80% RH (non-condensing)

Applications

The Kento G 12V 2A Adapter - DC Jack is suitable for use in various IoT applications, including

IoT sensor modules

Microcontroller-based projects

Small robots and robotic systems

Automation and control systems

Security systems

LED lighting systems

Conclusion

The Kento G 12V 2A Adapter - DC Jack is a reliable and efficient power supply component designed for use in IoT applications. Its compact size, stable output, and protection features make it an ideal choice for powering small to medium-sized devices.

Pin Configuration

  • Kento G 12V 2A Adapter - DC Jack Documentation
  • Overview
  • The Kento G 12V 2A Adapter - DC Jack is a compact power adapter designed to provide a stable 12V DC output with a maximum current of 2A. The adapter features a standard DC jack connector, making it suitable for a wide range of applications, including IoT devices, robots, and other electronic projects.
  • DC Jack Connector Pinout
  • The DC jack connector on the Kento G 12V 2A Adapter has three pins, which are explained below:
  • Pin 1: Outer Sleeve (Ground)
  • Function: Ground connection
  • Description: The outer sleeve of the DC jack connector is connected to the ground (GND) of the power adapter.
  • Connection: Connect to the ground terminal of your device or project.
  • Pin 2: Center Pin (VCC)
  • Function: Positive power supply
  • Description: The center pin of the DC jack connector carries the positive 12V DC output from the power adapter.
  • Connection: Connect to the positive power input terminal of your device or project.
  • Pin 3: Not Connected (NC)
  • Function: Not connected
  • Description: This pin is not connected to any internal circuitry and is usually left unused.
  • Connection: Do not connect anything to this pin.
  • Connection Structure
  • When connecting the Kento G 12V 2A Adapter - DC Jack to your device or project, follow this structure:
  • Connect the outer sleeve (Pin 1) to the ground (GND) terminal of your device or project.
  • Connect the center pin (Pin 2) to the positive power input terminal of your device or project.
  • Leave Pin 3 (NC) unconnected.
  • Important Notes
  • Ensure the DC jack connector is securely connected to the power adapter to prevent loose connections and potential damage.
  • Verify the voltage and current ratings of your device or project match the 12V 2A output of the Kento G 12V 2A Adapter - DC Jack.
  • Always follow proper safety precautions when working with electrical components and power supplies.
  • By following this documentation, you should be able to safely and correctly connect the Kento G 12V 2A Adapter - DC Jack to your device or project, ensuring reliable power supply and operation.

Code Examples

Kento G 12V 2A Adapter - DC Jack Documentation
Overview
The Kento G 12V 2A Adapter - DC Jack is a compact and reliable power adapter designed for various IoT applications. This adapter provides a stable 12V DC output with a maximum current rating of 2A, making it suitable for powering small to medium-sized devices. The DC Jack connector ensures secure and convenient connectivity.
Features
Input: 100-240V AC, 50-60Hz
 Output: 12V DC, 2A
 DC Jack connector
 Compact design
 Reliable and efficient power conversion
Code Examples
### Example 1: Powering an ESP32 Development Board
In this example, we will demonstrate how to use the Kento G 12V 2A Adapter to power an ESP32 development board. The ESP32 board will be used to connect to a Wi-Fi network and send data to a remote server.
Hardware Requirements
Kento G 12V 2A Adapter - DC Jack
 ESP32 Development Board
 Micro-USB cable
 Breadboard and jumper wires (optional)
Code
```c
#include <WiFi.h>
const char ssid = "your_wifi_ssid";
const char password = "your_wifi_password";
void setup() {
  Serial.begin(115200);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi...");
  }
  Serial.println("Connected to WiFi");
  Serial.println("Initializing board...");
  delay(2000);
}
void loop() {
  // Send data to remote server
  WiFiClient client;
  client.setServer("your_remote_server_ip", 80);
  client.println("GET /data HTTP/1.1");
  client.println("Host: your_remote_server_ip");
  client.println("Connection: close");
  client.println();
  while (client.available() == 0) {
    if (millis() - client.getLastRead() > 2000) {
      Serial.println("Timeout");
      break;
    }
  }
  client.stop();
  delay(5000);
}
```
Connect the Kento G 12V 2A Adapter to the ESP32 development board using a micro-USB cable. Power on the adapter and ensure the ESP32 board is properly connected to the Wi-Fi network.
### Example 2: Powering a Small Robot using an Arduino Board
In this example, we will demonstrate how to use the Kento G 12V 2A Adapter to power a small robot using an Arduino board. The robot will be equipped with DC motors and sensors to navigate through a maze.
Hardware Requirements
Kento G 12V 2A Adapter - DC Jack
 Arduino Board (e.g., Arduino Uno)
 DC Motor Driver (e.g., L298N)
 DC Motors
 Sensors (e.g., ultrasonic sensor, infrared sensor)
 Breadboard and jumper wires
Code
```c
#include <Arduino.h>
const int leftMotorForward = 2;
const int leftMotorBackward = 3;
const int rightMotorForward = 4;
const int rightMotorBackward = 5;
void setup() {
  pinMode(leftMotorForward, OUTPUT);
  pinMode(leftMotorBackward, OUTPUT);
  pinMode(rightMotorForward, OUTPUT);
  pinMode(rightMotorBackward, OUTPUT);
}
void loop() {
  // Read sensor data and control motor speeds
  int distance = readUltrasonicSensor();
  if (distance < 20) {
    // Obstacle detected, reverse and turn
    digitalWrite(leftMotorForward, LOW);
    digitalWrite(leftMotorBackward, HIGH);
    digitalWrite(rightMotorForward, LOW);
    digitalWrite(rightMotorBackward, HIGH);
    delay(500);
    digitalWrite(leftMotorForward, HIGH);
    digitalWrite(leftMotorBackward, LOW);
    digitalWrite(rightMotorForward, HIGH);
    digitalWrite(rightMotorBackward, LOW);
    delay(500);
  } else {
    // Move forward
    digitalWrite(leftMotorForward, HIGH);
    digitalWrite(leftMotorBackward, LOW);
    digitalWrite(rightMotorForward, HIGH);
    digitalWrite(rightMotorBackward, LOW);
  }
  delay(50);
}
int readUltrasonicSensor() {
  // Implement ultrasonic sensor reading function
  return 0; // Replace with actual sensor reading
}
```
Connect the Kento G 12V 2A Adapter to the Arduino board using a DC Jack connector. Power on the adapter and ensure the robot is properly assembled and configured.
Remember to adjust the code according to your specific IoT application and device requirements. Ensure proper voltage and current ratings are matched between the power adapter and your IoT device to avoid damage or safety hazards.