Stufin
Home Quick Cart Profile

XK-W2001 Adjustable Temperature Controller Socket with 1M Probe and AU Plug

Buy Now on Stufin

Operating Voltage

100-240V AC, 50-60Hz

Operating Current

1A

Temperature Range

-20C to 80C (-4F to 176F)

Temperature Accuracy

0.5C or 0.9F

Probe Length

1 meter

Socket Type

AU Plug

Communication Protocol

[Specify the communication protocol, e.g., Wi-Fi, Bluetooth, Zigbee, etc.]

Certification

[Specify the relevant certifications, e.g., CE, FCC, RoHS, etc.]

Conclusion

The XK-W2001 Adjustable Temperature Controller Socket with 1M Probe and AU Plug is a versatile and feature-rich IoT device designed to provide precise temperature control and monitoring. Its compact design, wide operating temperature range, and low power consumption make it an ideal solution for various industrial, commercial, and residential applications.

Pin Configuration

  • XK-W2001 Adjustable Temperature Controller Socket with 1M Probe and AU Plug
  • Pinout Description:
  • The XK-W2001 Adjustable Temperature Controller Socket comes with a set of pins that enable connection to various components for temperature control and monitoring. Below is a detailed description of each pin and their functions:
  • Pin 1: VCC (Red Wire)
  • Function: Power supply input ( typically 5V to 24V DC)
  • Description: This pin provides power to the temperature controller module.
  • Pin 2: GND (Black Wire)
  • Function: Ground connection
  • Description: This pin serves as the ground reference point for the module.
  • Pin 3: OUT (Yellow Wire)
  • Function: Output control signal
  • Description: This pin outputs a control signal to switch on/off the connected load (e.g., relay, heater, or cooler) based on the set temperature and hysteresis.
  • Pin 4: Probe+ (White Wire)
  • Function: Temperature probe positive connection
  • Description: This pin connects to the positive leg of the thermistor or temperature probe.
  • Pin 5: Probe- (Gray Wire)
  • Function: Temperature probe negative connection
  • Description: This pin connects to the negative leg of the thermistor or temperature probe.
  • Pin 6: NO ( Normally Open) (Green Wire)
  • Function: Normally Open contact of the relay
  • Description: This pin connects to the normally open contact of the relay, which is typically connected to the load.
  • Pin 7: COM (Common) (Blue Wire)
  • Function: Common contact of the relay
  • Description: This pin connects to the common contact of the relay, which is typically connected to the power supply.
  • Connection Structure:
  • To connect the XK-W2001 Adjustable Temperature Controller Socket, follow this structure:
  • 1. Power Connection:
  • Connect VCC (Red Wire) to a suitable power supply (5V to 24V DC).
  • Connect GND (Black Wire) to the ground of the power supply or a common ground point.
  • 2. Temperature Probe Connection:
  • Connect Probe+ (White Wire) to the positive leg of the thermistor or temperature probe.
  • Connect Probe- (Gray Wire) to the negative leg of the thermistor or temperature probe.
  • 3. Load Connection:
  • Connect OUT (Yellow Wire) to the control input of the load (e.g., relay, heater, or cooler).
  • Connect NO (Green Wire) to the normally open contact of the relay.
  • Connect COM (Blue Wire) to the common contact of the relay.
  • 4. Relay Connection (if using an external relay):
  • Connect the output of the relay to the load (e.g., heater, cooler, or fan).
  • Important Notes:
  • Ensure proper insulation and secure connections to prevent electrical shock or short circuits.
  • Consult the datasheet and user manual for specific temperature controller settings, calibration, and operation guidelines.
  • The XK-W2001 Adjustable Temperature Controller Socket is designed for use with a thermistor or temperature probe with a specific resistance-temperature characteristic curve. Use a compatible temperature probe to ensure accurate temperature measurements.

Code Examples

Component Documentation: XK-W2001 Adjustable Temperature Controller Socket with 1M Probe and AU Plug
Overview
The XK-W2001 is an adjustable temperature controller socket with a 1M probe and an AU plug, designed for precise temperature control in various IoT applications. This component allows users to monitor and regulate temperature levels in a wide range of environments, from industrial processes to home automation systems.
Technical Specifications
Temperature measuring range: -50C to 300C
 Temperature control range: -20C to 120C
 Accuracy: 1C
 Resolution: 0.1C
 Power supply: 220V, 50Hz
 AU plug type: 3-pin
 Probe length: 1 meter
 Communication protocol: Analog output (0-5V)
Hardware Connection
To use the XK-W2001, connect the AU plug to a power source and insert the 1M probe into the environment where temperature measurement is required. The analog output (0-5V) can be connected to a microcontroller or other compatible devices for reading and controlling the temperature data.
Code Examples
### Example 1: Arduino Temperature Monitoring and Control
This example demonstrates how to use the XK-W2001 with an Arduino board to monitor and control temperature levels.
Hardware Requirements
Arduino Uno or compatible board
 XK-W2001 Adjustable Temperature Controller Socket with 1M Probe and AU Plug
 Breadboard and jumper wires
Software Requirements
Arduino IDE (version 1.8.x or later)
Code
```cpp
const int tempSensorPin = A0;  // Analog input pin for temperature sensor
const int relayPin = 2;  // Digital output pin for relay control
void setup() {
  pinMode(tempSensorPin, INPUT);
  pinMode(relayPin, OUTPUT);
}
void loop() {
  int sensorValue = analogRead(tempSensorPin);
  float temperature = (sensorValue  5.0 / 1023.0 - 0.5)  100.0;  // Convert analog value to temperature
  Serial.print("Temperature: ");
  Serial.print(temperature);
  Serial.println(" C");
if (temperature > 25.0) {
    digitalWrite(relayPin, HIGH);  // Turn on relay to activate cooling system
  } else {
    digitalWrite(relayPin, LOW);  // Turn off relay to deactivate cooling system
  }
delay(1000);  // Update every 1 second
}
```
### Example 2: Raspberry Pi Temperature Monitoring with Python
This example demonstrates how to use the XK-W2001 with a Raspberry Pi to monitor temperature levels using Python.
Hardware Requirements
Raspberry Pi (any version)
 XK-W2001 Adjustable Temperature Controller Socket with 1M Probe and AU Plug
 Breadboard and jumper wires
Software Requirements
Raspbian OS (version 10 or later)
 Python 3.x
Code
```python
import Adafruit_ADS1x15  # Import ADS1x15 library for analog-to-digital conversion
# Initialize ADC and set gain to 1x
adc = Adafruit_ADS1x15.ADS1115()
adc.set_gain(1)
while True:
    # Read temperature sensor value from ADC
    sensor_value = adc.read_adc(0)
    temperature = (sensor_value  5.0 / 32767.0 - 0.5)  100.0
print("Temperature: {:.1f} C".format(temperature))
# Add logic for temperature-based control or notifications
time.sleep(1)  # Update every 1 second
```
These code examples demonstrate how to use the XK-W2001 Adjustable Temperature Controller Socket with 1M Probe and AU Plug in various IoT applications. By integrating this component with microcontrollers or single-board computers, users can create robust and precise temperature monitoring and control systems.