

The Modulo Dimmer by Persoal (Part ID: Modulo Dimmer) is an electronic device designed to control the brightness of lighting fixtures. It achieves this by varying the voltage or current supplied to the connected lights, enabling energy efficiency and customizable lighting environments. This component is widely used in residential, commercial, and industrial applications where adjustable lighting is required.








The following table outlines the key technical details of the Modulo Dimmer:
| Parameter | Value |
|---|---|
| Input Voltage | 110V - 240V AC |
| Output Voltage | 0V - 230V AC (adjustable) |
| Maximum Load Current | 2A |
| Power Rating | 400W |
| Control Signal | PWM (Pulse Width Modulation) |
| Operating Temperature | -10°C to 50°C |
| Dimensions | 50mm x 25mm x 20mm |
| Weight | 30g |
The Modulo Dimmer has the following pin configuration:
| Pin Name | Description |
|---|---|
| AC IN | Connects to the AC power source (110V - 240V AC). |
| AC OUT | Outputs the dimmed AC voltage to the connected load (e.g., light fixture). |
| GND | Ground connection for the circuit. |
| PWM IN | Accepts a PWM signal (3.3V or 5V logic) to control the dimming level. |
Connect the Power Source:
Connect the Load:
Control the Dimming:
Ground Connection:
Below is an example code to control the Modulo Dimmer using an Arduino UNO:
// Example: Controlling Modulo Dimmer with Arduino UNO
// This code generates a PWM signal to adjust the brightness of a light fixture.
const int pwmPin = 9; // PWM output pin connected to Modulo Dimmer's PWM IN
void setup() {
pinMode(pwmPin, OUTPUT); // Set the PWM pin as an output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(pwmPin, brightness); // Send PWM signal to dimmer
delay(10); // Small delay for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(pwmPin, brightness); // Send PWM signal to dimmer
delay(10); // Small delay for smooth transition
}
}
Lights Flicker During Dimming:
Dimmer Module Overheats:
No Response to PWM Signal:
Lights Do Not Turn On:
Q: Can the Modulo Dimmer be used with non-dimmable LEDs?
A: No, the Modulo Dimmer is designed for use with dimmable lighting fixtures only.
Q: What happens if I exceed the maximum load current?
A: Exceeding the 2A limit may damage the module or cause overheating. Always stay within the specified ratings.
Q: Can I use the Modulo Dimmer with a DC power source?
A: No, the Modulo Dimmer is designed for AC power sources only.
Q: What is the recommended PWM duty cycle range for dimming?
A: The duty cycle can range from 0% (off) to 100% (full brightness), depending on your desired brightness level.
By following this documentation, users can safely and effectively integrate the Modulo Dimmer into their projects for precise lighting control.