Stufin
Home Quick Cart Profile

ZFX-13001 12V DC High Precision Capacitive Humidity Controller

Buy Now on Stufin

Component Description

ZFX-13001 12V DC High Precision Capacitive Humidity Controller

Overview

The ZFX-13001 is a high-precision capacitive humidity controller designed for accurate and reliable humidity control in various applications, including industrial, commercial, and residential environments. This 12V DC-powered device is specifically engineered to provide precise control over humidity levels, ensuring optimal conditions for equipment operation, product storage, and human comfort.

Functionality

The ZFX-13001 is a microcontroller-based humidity controller that utilizes advanced capacitive sensing technology to measure relative humidity (RH) and temperature. The device compares the measured values with a user-set target value and adjusts the output signal to control a connected relay, which in turn operates a humidifier, dehumidifier, or other climate control equipment.

Key Features

  • High-Precision Humidity Measurement:

Measurement range

0-100% RH

Accuracy

2% RH (typical)

Resolution

0.1% RH

  • Capacitive Sensing Technology:

Ensures accurate and reliable humidity measurement, unaffected by contaminants, dust, or aging

  • Multi-Output Control:

Supports up to 2 outputs (relay or analog) for controlling different devices or multiple stages of humidity control

  • Adjustable Hysteresis:

Allows for customizable hysteresis values to optimize system performance and reduce unnecessary switching

  • Highly Configurable:
  • User-settable parameters

    + Humidity setpoint

    + Hysteresis value

    + Output mode (on/off, analog, or pulse-width modulation)

    • Durable and Reliable:

    Built-in EMI filter and surge protection ensure robust operation in noisy environments

    IP65 rating for protection against dust and water ingress

    • Easy Integration:

    Compatible with various control systems and automation platforms

    Simple, intuitive configuration via dip switches or serial communication (optional)

Specifications

| Parameter | Value |

| --- | --- |

| Operating Voltage | 12V DC |

| Operating Temperature | -20C to 70C (-4F to 158F) |

| Humidity Measurement Range | 0-100% RH |

| Accuracy | 2% RH (typical) |

| Resolution | 0.1% RH |

| Output Type | Relay or analog |

| Output Current | 1A (max) |

| Response Time | < 1 second |

| Dimensions | 70 x 35 x 25 mm (2.76 x 1.38 x 0.98 in) |

| Certifications | CE, FCC, RoHS |

Applications

The ZFX-13001 high-precision capacitive humidity controller is suitable for various applications, including

Industrial process control and monitoring

Climate control in museums, archives, and data centers

HVAC systems in commercial and residential buildings

Agricultural greenhouses and livestock enclosures

Medical and pharmaceutical storage facilities

Note

This documentation provides a general overview of the ZFX-13001's features and specifications. Please consult the manufacturer's datasheet and product documentation for detailed information and specific use case requirements.

Pin Configuration

  • ZFX-13001 12V DC High Precision Capacitive Humidity Controller
  • Pinout Description
  • The ZFX-13001 humidity controller has a total of 7 pins, which are used to connect the device to a power source, sensors, and other components. Below is a detailed description of each pin:
  • Pin 1: VCC (Power Supply Voltage)
  • Function: Provides power to the humidity controller
  • Voltage: 12V DC
  • Notes: Connect to a stable 12V DC power supply.
  • Pin 2: GND (Ground)
  • Function: Provides a ground connection for the controller
  • Notes: Connect to a common ground point in the system.
  • Pin 3: RH_OUT (Relative Humidity Output)
  • Function: Outputs the measured relative humidity value as an analog voltage signal
  • Signal: 0~3.3V analog output, proportional to the relative humidity (0-100% RH)
  • Notes: Connect to an ADC (Analog-to-Digital Converter) or a microcontroller for further processing.
  • Pin 4: TEMP_OUT (Temperature Output)
  • Function: Outputs the measured temperature value as an analog voltage signal
  • Signal: 0~3.3V analog output, proportional to the temperature (0-50C)
  • Notes: Connect to an ADC (Analog-to-Digital Converter) or a microcontroller for further processing.
  • Pin 5: SEN (Humidity Sensor Input)
  • Function: Connects to an external capacitive humidity sensor
  • Notes: Connect the humidity sensor output to this pin.
  • Pin 6: EN (Enable)
  • Function: Enables or disables the humidity controller
  • Logic: Active high (EN = 1, controller enabled; EN = 0, controller disabled)
  • Notes: Connect to a digital output of a microcontroller or a logic gate to control the humidity controller.
  • Pin 7: NC (Not Connected)
  • Function: No internal connection, reserved for future use
  • Notes: Leave this pin unconnected.
  • Connection Structure
  • Here is a suggested connection structure for the ZFX-13001 humidity controller:
  • Connect Pin 1 (VCC) to a 12V DC power supply.
  • Connect Pin 2 (GND) to a common ground point in the system.
  • Connect Pin 3 (RH_OUT) to an ADC or a microcontroller for processing the relative humidity value.
  • Connect Pin 4 (TEMP_OUT) to an ADC or a microcontroller for processing the temperature value.
  • Connect Pin 5 (SEN) to an external capacitive humidity sensor output.
  • Connect Pin 6 (EN) to a digital output of a microcontroller or a logic gate to control the humidity controller. Set EN = 1 to enable the controller and EN = 0 to disable it.
  • Leave Pin 7 (NC) unconnected.
  • Additional Notes
  • Ensure proper power supply decoupling and noise filtering to minimize electromagnetic interference (EMI) and radio-frequency interference (RFI) affecting the humidity controller's performance.
  • Use suitable connectors and cables to connect the pins, taking into account the operating environment and required durability.
  • For detailed information on sensor connections and calibration, refer to the datasheet of the external capacitive humidity sensor used.

Code Examples

ZFX-13001 12V DC High Precision Capacitive Humidity Controller Documentation
Overview
The ZFX-13001 is a high-precision capacitive humidity controller designed for accurate humidity monitoring and control applications. This device features a 12V DC operating voltage, high sensitivity, and fast response time, making it ideal for use in industrial, commercial, and residential settings.
Technical Specifications
Operating Voltage: 12V DC
 Humidity Range: 0-100% RH
 Accuracy: 2% RH
 Sensitivity: 0.5% RH
 Response Time: 10 seconds
 Interface: Analog output (0-10V)
Communication Protocol
The ZFX-13001 provides an analog output voltage that scales linearly with the measured humidity level. The output voltage range is 0-10V, corresponding to 0-100% RH.
Example Code
Example 1: Interfacing with Arduino
In this example, we'll demonstrate how to connect the ZFX-13001 to an Arduino board and read the humidity level using analog input.
Hardware Connection:
Connect VCC of ZFX-13001 to 12V DC power source
 Connect GND of ZFX-13001 to GND of Arduino
 Connect OUT of ZFX-13001 to A0 (analog input) of Arduino
Arduino Code:
```c
const int humidityPin = A0;  // Analog input pin
int humidityValue = 0;
float humidityLevel = 0.0;
void setup() {
  Serial.begin(9600);
}
void loop() {
  humidityValue = analogRead(humidityPin);
  humidityLevel = (humidityValue  100.0) / 1023.0;  // Convert analog value to humidity level (0-100% RH)
  Serial.print("Humidity: ");
  Serial.print(humidityLevel);
  Serial.println(" %RH");
  delay(1000);
}
```
Example 2: Interfacing with Raspberry Pi (Python)
In this example, we'll demonstrate how to connect the ZFX-13001 to a Raspberry Pi and read the humidity level using Python.
Hardware Connection:
Connect VCC of ZFX-13001 to 12V DC power source
 Connect GND of ZFX-13001 to GND of Raspberry Pi
 Connect OUT of ZFX-13001 to any available analog input pin (e.g., GPIO 18) of Raspberry Pi
Python Code:
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define analog input pin
humidity_pin = 18
# Read analog value from humidity sensor
def read_humidity():
  GPIO.setup(humidity_pin, GPIO.IN)
  humidity_value = GPIO.input(humidity_pin)
  return humidity_value
while True:
  humidity_value = read_humidity()
  humidity_level = (humidity_value  100.0) / 1023.0  # Convert analog value to humidity level (0-100% RH)
  print(f"Humidity: {humidity_level:.2f} %RH")
  time.sleep(1)
```
Note: In both examples, the output voltage from the ZFX-13001 is read as an analog value and then converted to a humidity level (0-100% RH) using the specified conversion formula.