

A stop kontak is an electrical outlet or socket designed to connect electrical devices to a power supply. It typically features multiple sockets, allowing users to power several devices simultaneously. Stop kontaks are widely used in residential, commercial, and industrial settings due to their convenience and versatility. They are essential for powering appliances, tools, and electronic devices.








Below are the general technical specifications for a standard stop kontak. Note that specifications may vary depending on the model and manufacturer.
The pin configuration of a stop kontak depends on the socket type. Below is an example for a Type C socket, commonly used in Europe and Asia.
| Pin Name | Description | Notes |
|---|---|---|
| Line (L) | Live wire carrying current | Connects to the power source |
| Neutral (N) | Returns current to the power source | Completes the circuit |
| Ground (G) | Safety ground connection | Optional in some socket designs |
For other socket types, refer to the specific regional standards.
Installation:
Connecting Devices:
Power On:
While a stop kontak is not directly connected to an Arduino UNO, it can be used in projects involving relays to control high-power devices. Below is an example of using an Arduino UNO to control a device connected to a stop kontak via a relay module.
/*
Example: Controlling a device connected to a stop kontak using a relay module.
This code turns the device ON for 5 seconds and then OFF for 5 seconds in a loop.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay ON (device ON)
delay(5000); // Wait for 5 seconds
digitalWrite(relayPin, LOW); // Turn the relay OFF (device OFF)
delay(5000); // Wait for 5 seconds
}
Note: Ensure proper isolation between the low-voltage Arduino circuit and the high-voltage stop kontak circuit when using a relay.
Loose Connections:
Overheating:
No Power Output:
Tripped Circuit Breaker:
By following this documentation, users can safely and effectively use a stop kontak in various applications.