

The Linky Tri is a versatile triac-based electronic switch designed for controlling AC loads. It is widely used in applications requiring smooth dimming or speed control, such as lighting systems, ceiling fans, and motorized devices. Its ability to handle high AC voltages and currents makes it a reliable choice for both residential and industrial applications.








| Parameter | Value |
|---|---|
| Operating Voltage | 110V AC to 240V AC |
| Maximum Load Current | 10A |
| Control Voltage | 3.3V to 5V DC |
| Triggering Method | Gate triggering (triac-based) |
| Dimming Range | 0% to 100% |
| Isolation | Opto-isolated input |
| Operating Temperature | -20°C to 85°C |
| Dimensions | 50mm x 30mm x 15mm |
The Linky Tri has a simple pinout for easy integration into circuits. Below is the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | AC Load 1 | Connect to one terminal of the AC load |
| 2 | AC Load 2 | Connect to the other terminal of the AC load |
| 3 | GND | Ground connection for the control circuit |
| 4 | VCC | Supply voltage for the control circuit (3.3V-5V) |
| 5 | Signal | Control signal input for triggering the triac |
Below is an example of how to use the Linky Tri to control the brightness of an AC light bulb using an Arduino UNO.
// Example code to control Linky Tri with Arduino UNO
// This code uses PWM to dim an AC light bulb connected to Linky Tri
#define TRIAC_PIN 9 // Define the PWM pin connected to the Signal pin of Linky Tri
void setup() {
pinMode(TRIAC_PIN, OUTPUT); // Set the TRIAC_PIN as an output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(TRIAC_PIN, brightness); // Send PWM signal to Linky Tri
delay(10); // Small delay for smooth dimming
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(TRIAC_PIN, brightness); // Send PWM signal to Linky Tri
delay(10); // Small delay for smooth dimming
}
}
| Issue | Possible Cause | Solution |
|---|---|---|
| AC load does not turn on | No control signal or incorrect wiring | Verify wiring and ensure proper signal |
| Flickering in dimmed state | Incorrect PWM frequency | Adjust the PWM frequency in the code |
| Overheating of the Linky Tri | Excessive load current | Use a heatsink or reduce the load current |
| No response to control signal | Signal voltage mismatch | Ensure the control signal matches VCC |
Can I use the Linky Tri with a 3.3V microcontroller? Yes, the Linky Tri is compatible with both 3.3V and 5V control signals.
What type of loads can the Linky Tri control? The Linky Tri can control resistive loads (e.g., incandescent bulbs) and some inductive loads (e.g., motors). However, ensure the load does not exceed the maximum current rating.
Is the Linky Tri suitable for DC loads? No, the Linky Tri is designed specifically for AC loads.
How do I prevent electrical noise in the circuit? Use proper grounding and consider adding a snubber circuit across the triac to suppress electrical noise.
By following this documentation, you can effectively integrate the Linky Tri into your projects for reliable AC load control.