

The PYT PYB1Z-63 is an AC circuit breaker designed to protect electrical circuits from damage caused by overloads or short circuits. This device automatically interrupts the flow of current when it detects abnormal conditions, ensuring the safety of connected equipment and preventing potential hazards such as fires or equipment failure.








The PYB1Z-63 is a robust and reliable circuit breaker with the following key specifications:
| Parameter | Value |
|---|---|
| Manufacturer | PYT |
| Part ID | PYB1Z-63 |
| Rated Voltage | 230/400V AC |
| Rated Current | 1A to 63A (varies by model) |
| Breaking Capacity | 6kA |
| Frequency | 50/60 Hz |
| Number of Poles | 1P, 2P, 3P, or 4P |
| Trip Curve | B, C, or D (depending on model) |
| Operating Temperature | -5°C to +40°C |
| Mounting Type | DIN rail (35mm) |
| Compliance Standards | IEC/EN 60898-1 |
The PYB1Z-63 circuit breaker does not have traditional pins but instead features screw terminals for input and output connections. Below is a description of the terminal configuration:
| Terminal | Description |
|---|---|
| Line (Input) | Connects to the incoming AC power supply. |
| Load (Output) | Connects to the downstream circuit or load being protected. |
| Neutral (N)* | For multi-pole models, a neutral terminal may be present for balanced circuits. |
*Note: The neutral terminal is only applicable for 2P, 3P, or 4P models.
While the PYB1Z-63 is not directly compatible with Arduino, it can be used in conjunction with a current sensor (e.g., ACS712) to monitor the circuit's current. Below is an example Arduino code snippet to monitor current and trigger an alert if it exceeds a threshold:
// Include necessary libraries
const int currentSensorPin = A0; // Analog pin connected to the current sensor
const float currentThreshold = 10.0; // Set current threshold in Amperes
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(currentSensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
int sensorValue = analogRead(currentSensorPin); // Read sensor value
float current = (sensorValue / 1023.0) * 30.0; // Convert to current (example for ACS712-30A)
// Print current value to the serial monitor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
// Check if current exceeds threshold
if (current > currentThreshold) {
Serial.println("Warning: Current exceeds threshold!");
// Add additional actions here, such as triggering a relay or alarm
}
delay(1000); // Wait for 1 second before next reading
}
Note: Replace the current conversion formula with the appropriate one for your sensor model.
Breaker Trips Frequently:
Breaker Does Not Trip During Overload:
Loose Connections:
Breaker Does Not Reset:
By following this documentation, users can effectively integrate and maintain the PYB1Z-63 AC circuit breaker in their electrical systems.