SlideShare una empresa de Scribd logo
1 de 13
Descargar para leer sin conexión
www.researchdesignlab.com Page 1
Digital Dimmer
DIGITAL DIMMER
www.researchdesignlab.com Page 2
Digital Dimmer
Table of Contents
OVERVIEW ................................................................................................................................... 3
INTRODUCTION ...................................................................................................................... 3
FEATURES ................................................................................................................................ 3
SPECIFICATIONS..................................................................................................................... 4
PIN DETAILS ............................................................................................................................ 4
WORKING ................................................................................................................................. 5
SCREENSHOTS......................................................................................................................... 5
INPUT FOR DIMMER MODULE ............................................................................................ 6
RELATED PRODUCTS ............................................................................................................ 8
www.researchdesignlab.com Page 3
Digital Dimmer
OVERVIEW
INTRODUCTION
The board can be used in applications where dimming of 110-220V AC power is required like
dimming of bulb or fan. The input can be simple 4 bit high/low signal from microcontroller
working at 3V or 5V which is isolated with the use of opto-couplers. Total of 16 levels of power
control can be set from totally off(0%) to full on(100%) as per input control levels.
FEATURES
1. Works on AC power supply.
2. 16 levels of control.
3. Works from any microcontroller input.
www.researchdesignlab.com Page 4
Digital Dimmer
SPECIFICATIONS
PARAMETER VALUE
Operating Voltage 3-5v DC
Load Capacity 12A AC
PIN DETAILS
PIN NAME DETAILS
1 GND Power supply Ground
2 +5V Power Supply
3 D0 Data 0
4 D1 Data 1
www.researchdesignlab.com Page 5
Digital Dimmer
5 D2 Data 2
6 D3 Data 3
WORKING
A dimmer switch rapidly turns a light circuit on and off to reduce the energy flowing to a light
switch. The central element in this switching circuit is a triode alternating current switch, or
triac.A triac is a small semiconductor device, similar to a diode or transistor. Like a transistor, a
triac is made up of different layers of semiconductor material. This includes N-type material,
which has many free electrons, and P-type material,which has many "holes" where free electrons
can go.The triac has two terminals, which are wired into two ends of the circuit. There is always
a voltage difference between the two terminals, but it changes with the fluctuation of the
alternating current. That is, when current moves one way, the top terminal is positively charged
while the bottom terminal is negatively charged, and when the current moves the other way the
top terminal is negatively charged while the bottom terminal is positively charged.
SCREENSHOTS
www.researchdesignlab.com Page 6
Digital Dimmer
INPUT FOR DIMMER MODULE
It is of digital input of 4bit data.D0,D1,D2,D3 are the input pins of dimmer which can be
connected to I/O pins of microcontroller. 16 levels of dimmer controlling input of 0 to 100% is
shown below
INPUT
LEVEL
D3 D2 D1 D0 Dimmer
level
1 0 0 0 0 100%
2 0 0 0 1 86%
3 0 0 1 0 80%
4 0 0 1 1 75%
5 0 1 0 0 60%
6 0 1 0 1 65%
www.researchdesignlab.com Page 7
Digital Dimmer
7 0 1 1 0 60%
8 0 1 1 1 50%
9 1 0 0 0 40%
10 1 0 0 1 30%
11 1 0 1 0 25%
12 1 0 1 1 20%
13 1 1 0 0 15%
14 1 1 0 1 10%
15 1 1 1 0 5%
16 1 1 1 1 0%
www.researchdesignlab.com Page 8
Digital Dimmer
ARDUINO CODE AND SCHEMATIC
const int D3 = 3 ;
const int D2 = 2;
const int D1 = 1;
const int D0 = 0 ;
void setup() {
pinMode(D3, OUTPUT);
pinMode(D2, OUTPUT);
pinMode(D1, OUTPUT);
pinMode(D0, OUTPUT);
www.researchdesignlab.com Page 9
Digital Dimmer
}
void loop()
{
digitalWrite(D3, LOW);
digitalWrite(D2, LOW);
digitalWrite(D1, LOW);
digitalWrite(D0, LOW);
delay(1000);
digitalWrite(D3, LOW);
digitalWrite(D2, LOW);
digitalWrite(D1, LOW);
digitalWrite(D0, HIGH);
delay(1000);
digitalWrite(D3, LOW);
digitalWrite(D2, LOW);
digitalWrite(D1, HIGH);
digitalWrite(D0, LOW);
delay(1000);
digitalWrite(D3, LOW);
digitalWrite(D2, LOW);
digitalWrite(D1, HIGH);
digitalWrite(D0, HIGH);
delay(1000);
www.researchdesignlab.com Page 10
Digital Dimmer
digitalWrite(D3, LOW);
digitalWrite(D2, HIGH);
digitalWrite(D1, LOW);
digitalWrite(D0, LOW);
delay(1000);
digitalWrite(D3, LOW);
digitalWrite(D2, HIGH);
digitalWrite(D1, LOW);
digitalWrite(D0, HIGH);
delay(1000);
digitalWrite(D3, LOW);
digitalWrite(D2, HIGH);
digitalWrite(D1, HIGH);
digitalWrite(D0, LOW);
delay(1000);
digitalWrite(D3, LOW);
digitalWrite(D2, HIGH);
digitalWrite(D1, HIGH);
digitalWrite(D0, HIGH);
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, LOW);
digitalWrite(D1, LOW);
digitalWrite(D0, LOW);
www.researchdesignlab.com Page 11
Digital Dimmer
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, LOW);
digitalWrite(D1, LOW);
digitalWrite(D0, HIGH);
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, LOW);
digitalWrite(D1, HIGH);
digitalWrite(D0, LOW);
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, LOW);
digitalWrite(D1, HIGH);
digitalWrite(D0, HIGH);
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, HIGH);
digitalWrite(D1, LOW);
digitalWrite(D0, LOW);
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, HIGH);
digitalWrite(D1, LOW);
www.researchdesignlab.com Page 12
Digital Dimmer
digitalWrite(D0, HIGH);
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, HIGH);
digitalWrite(D1, HIGH);
digitalWrite(D0, LOW);
delay(1000);
digitalWrite(D3, HIGH);
digitalWrite(D2, HIGH);
digitalWrite(D1, HIGH);
digitalWrite(D0, HIGH);
delay(1000);
}
www.researchdesignlab.com Page 13
Digital Dimmer
RELATED PRODUCTS
Serial 3 Channel AC 230V SSR and Dimmer Serial 8 Channel AC 230V SSR and Dimmer
Serial 8 Channel AC 230V SSR and Dimmer with Bluetooth inteface

Más contenido relacionado

Similar a Digital Dimmer Module

summer training report (2)
summer training report (2)summer training report (2)
summer training report (2)
Kavya Gupta
 
MODULE TITLE PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docx
MODULE TITLE    PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docxMODULE TITLE    PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docx
MODULE TITLE PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docx
roushhsiu
 
Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2
DIPAN GHOSH
 

Similar a Digital Dimmer Module (20)

DIY UNO Play Breadboard ATMEGA328P with FT232 Breakout Board
DIY UNO Play Breadboard ATMEGA328P with FT232 Breakout BoardDIY UNO Play Breadboard ATMEGA328P with FT232 Breakout Board
DIY UNO Play Breadboard ATMEGA328P with FT232 Breakout Board
 
Coa presentation2
Coa presentation2Coa presentation2
Coa presentation2
 
Analog Heart Beat Sensor
Analog Heart Beat SensorAnalog Heart Beat Sensor
Analog Heart Beat Sensor
 
Notes arduino workshop_15
Notes arduino workshop_15Notes arduino workshop_15
Notes arduino workshop_15
 
DTMF Decoder Shield for Arduino
DTMF Decoder Shield for ArduinoDTMF Decoder Shield for Arduino
DTMF Decoder Shield for Arduino
 
Teltonika tbox20
Teltonika tbox20Teltonika tbox20
Teltonika tbox20
 
report
reportreport
report
 
DHT11 Digital Temperature and Humidity Sensor
DHT11 Digital Temperature and Humidity SensorDHT11 Digital Temperature and Humidity Sensor
DHT11 Digital Temperature and Humidity Sensor
 
Digital counter
Digital counterDigital counter
Digital counter
 
summer training report (2)
summer training report (2)summer training report (2)
summer training report (2)
 
PERFORMANCE ANALYSIS OF D-FLIP FLOP USING CMOS, GDI, DSTC TECHNIQUES
PERFORMANCE ANALYSIS OF D-FLIP FLOP USING CMOS, GDI, DSTC TECHNIQUESPERFORMANCE ANALYSIS OF D-FLIP FLOP USING CMOS, GDI, DSTC TECHNIQUES
PERFORMANCE ANALYSIS OF D-FLIP FLOP USING CMOS, GDI, DSTC TECHNIQUES
 
18cs33_module_1.pptx
18cs33_module_1.pptx18cs33_module_1.pptx
18cs33_module_1.pptx
 
Information sheet/Kertas Penerangan
Information sheet/Kertas PeneranganInformation sheet/Kertas Penerangan
Information sheet/Kertas Penerangan
 
MODULE TITLE PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docx
MODULE TITLE    PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docxMODULE TITLE    PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docx
MODULE TITLE PROGRAMMABLE LOGIC CONTROLLERSTOPIC TITLE.docx
 
J044037073
J044037073J044037073
J044037073
 
Bidirect visitor counter
Bidirect visitor counterBidirect visitor counter
Bidirect visitor counter
 
Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2
 
Serial 3 Channel AC 230V SSR and Dimmer
Serial 3 Channel AC 230V SSR and DimmerSerial 3 Channel AC 230V SSR and Dimmer
Serial 3 Channel AC 230V SSR and Dimmer
 
LCD Keypad Shield
LCD Keypad ShieldLCD Keypad Shield
LCD Keypad Shield
 
Arduino electronics cookbook
Arduino electronics cookbookArduino electronics cookbook
Arduino electronics cookbook
 

Más de Raghav Shetty

Más de Raghav Shetty (20)

8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth
 
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
 
4 Channel Relay Board 12V-Compatible for Arduino
4 Channel Relay Board 12V-Compatible for Arduino4 Channel Relay Board 12V-Compatible for Arduino
4 Channel Relay Board 12V-Compatible for Arduino
 
8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485 8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485
 
Xbee X-CTU Software
Xbee X-CTU SoftwareXbee X-CTU Software
Xbee X-CTU Software
 
Digitla Vibration Sensor
Digitla Vibration SensorDigitla Vibration Sensor
Digitla Vibration Sensor
 
Thermal Printer
Thermal PrinterThermal Printer
Thermal Printer
 
Digital Soil Moisture Sensor
Digital Soil Moisture SensorDigital Soil Moisture Sensor
Digital Soil Moisture Sensor
 
Micro SD Memory Card Interface for 5V MCU
Micro SD Memory Card Interface for 5V MCUMicro SD Memory Card Interface for 5V MCU
Micro SD Memory Card Interface for 5V MCU
 
Micro SD Memory Card Interface for 3.3V MCU
Micro SD Memory Card Interface for 3.3V MCUMicro SD Memory Card Interface for 3.3V MCU
Micro SD Memory Card Interface for 3.3V MCU
 
Regulated Power Supply
Regulated Power Supply Regulated Power Supply
Regulated Power Supply
 
PIC Project Board
PIC Project BoardPIC Project Board
PIC Project Board
 
8 Channel Bi Directional Logic Level Converter
8 Channel Bi Directional Logic Level Converter8 Channel Bi Directional Logic Level Converter
8 Channel Bi Directional Logic Level Converter
 
L298 Motor Driver
L298 Motor DriverL298 Motor Driver
L298 Motor Driver
 
Joystick Shield
Joystick ShieldJoystick Shield
Joystick Shield
 
Force Sensor
Force SensorForce Sensor
Force Sensor
 
Plastic REED Float Switch
Plastic REED Float SwitchPlastic REED Float Switch
Plastic REED Float Switch
 
Flex Sensor
Flex SensorFlex Sensor
Flex Sensor
 
Serial EEPROM
Serial EEPROMSerial EEPROM
Serial EEPROM
 
Bluetooth Module HC-06
Bluetooth Module HC-06Bluetooth Module HC-06
Bluetooth Module HC-06
 

Último

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 

Digital Dimmer Module

  • 2. www.researchdesignlab.com Page 2 Digital Dimmer Table of Contents OVERVIEW ................................................................................................................................... 3 INTRODUCTION ...................................................................................................................... 3 FEATURES ................................................................................................................................ 3 SPECIFICATIONS..................................................................................................................... 4 PIN DETAILS ............................................................................................................................ 4 WORKING ................................................................................................................................. 5 SCREENSHOTS......................................................................................................................... 5 INPUT FOR DIMMER MODULE ............................................................................................ 6 RELATED PRODUCTS ............................................................................................................ 8
  • 3. www.researchdesignlab.com Page 3 Digital Dimmer OVERVIEW INTRODUCTION The board can be used in applications where dimming of 110-220V AC power is required like dimming of bulb or fan. The input can be simple 4 bit high/low signal from microcontroller working at 3V or 5V which is isolated with the use of opto-couplers. Total of 16 levels of power control can be set from totally off(0%) to full on(100%) as per input control levels. FEATURES 1. Works on AC power supply. 2. 16 levels of control. 3. Works from any microcontroller input.
  • 4. www.researchdesignlab.com Page 4 Digital Dimmer SPECIFICATIONS PARAMETER VALUE Operating Voltage 3-5v DC Load Capacity 12A AC PIN DETAILS PIN NAME DETAILS 1 GND Power supply Ground 2 +5V Power Supply 3 D0 Data 0 4 D1 Data 1
  • 5. www.researchdesignlab.com Page 5 Digital Dimmer 5 D2 Data 2 6 D3 Data 3 WORKING A dimmer switch rapidly turns a light circuit on and off to reduce the energy flowing to a light switch. The central element in this switching circuit is a triode alternating current switch, or triac.A triac is a small semiconductor device, similar to a diode or transistor. Like a transistor, a triac is made up of different layers of semiconductor material. This includes N-type material, which has many free electrons, and P-type material,which has many "holes" where free electrons can go.The triac has two terminals, which are wired into two ends of the circuit. There is always a voltage difference between the two terminals, but it changes with the fluctuation of the alternating current. That is, when current moves one way, the top terminal is positively charged while the bottom terminal is negatively charged, and when the current moves the other way the top terminal is negatively charged while the bottom terminal is positively charged. SCREENSHOTS
  • 6. www.researchdesignlab.com Page 6 Digital Dimmer INPUT FOR DIMMER MODULE It is of digital input of 4bit data.D0,D1,D2,D3 are the input pins of dimmer which can be connected to I/O pins of microcontroller. 16 levels of dimmer controlling input of 0 to 100% is shown below INPUT LEVEL D3 D2 D1 D0 Dimmer level 1 0 0 0 0 100% 2 0 0 0 1 86% 3 0 0 1 0 80% 4 0 0 1 1 75% 5 0 1 0 0 60% 6 0 1 0 1 65%
  • 7. www.researchdesignlab.com Page 7 Digital Dimmer 7 0 1 1 0 60% 8 0 1 1 1 50% 9 1 0 0 0 40% 10 1 0 0 1 30% 11 1 0 1 0 25% 12 1 0 1 1 20% 13 1 1 0 0 15% 14 1 1 0 1 10% 15 1 1 1 0 5% 16 1 1 1 1 0%
  • 8. www.researchdesignlab.com Page 8 Digital Dimmer ARDUINO CODE AND SCHEMATIC const int D3 = 3 ; const int D2 = 2; const int D1 = 1; const int D0 = 0 ; void setup() { pinMode(D3, OUTPUT); pinMode(D2, OUTPUT); pinMode(D1, OUTPUT); pinMode(D0, OUTPUT);
  • 9. www.researchdesignlab.com Page 9 Digital Dimmer } void loop() { digitalWrite(D3, LOW); digitalWrite(D2, LOW); digitalWrite(D1, LOW); digitalWrite(D0, LOW); delay(1000); digitalWrite(D3, LOW); digitalWrite(D2, LOW); digitalWrite(D1, LOW); digitalWrite(D0, HIGH); delay(1000); digitalWrite(D3, LOW); digitalWrite(D2, LOW); digitalWrite(D1, HIGH); digitalWrite(D0, LOW); delay(1000); digitalWrite(D3, LOW); digitalWrite(D2, LOW); digitalWrite(D1, HIGH); digitalWrite(D0, HIGH); delay(1000);
  • 10. www.researchdesignlab.com Page 10 Digital Dimmer digitalWrite(D3, LOW); digitalWrite(D2, HIGH); digitalWrite(D1, LOW); digitalWrite(D0, LOW); delay(1000); digitalWrite(D3, LOW); digitalWrite(D2, HIGH); digitalWrite(D1, LOW); digitalWrite(D0, HIGH); delay(1000); digitalWrite(D3, LOW); digitalWrite(D2, HIGH); digitalWrite(D1, HIGH); digitalWrite(D0, LOW); delay(1000); digitalWrite(D3, LOW); digitalWrite(D2, HIGH); digitalWrite(D1, HIGH); digitalWrite(D0, HIGH); delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, LOW); digitalWrite(D1, LOW); digitalWrite(D0, LOW);
  • 11. www.researchdesignlab.com Page 11 Digital Dimmer delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, LOW); digitalWrite(D1, LOW); digitalWrite(D0, HIGH); delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, LOW); digitalWrite(D1, HIGH); digitalWrite(D0, LOW); delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, LOW); digitalWrite(D1, HIGH); digitalWrite(D0, HIGH); delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, HIGH); digitalWrite(D1, LOW); digitalWrite(D0, LOW); delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, HIGH); digitalWrite(D1, LOW);
  • 12. www.researchdesignlab.com Page 12 Digital Dimmer digitalWrite(D0, HIGH); delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, HIGH); digitalWrite(D1, HIGH); digitalWrite(D0, LOW); delay(1000); digitalWrite(D3, HIGH); digitalWrite(D2, HIGH); digitalWrite(D1, HIGH); digitalWrite(D0, HIGH); delay(1000); }
  • 13. www.researchdesignlab.com Page 13 Digital Dimmer RELATED PRODUCTS Serial 3 Channel AC 230V SSR and Dimmer Serial 8 Channel AC 230V SSR and Dimmer Serial 8 Channel AC 230V SSR and Dimmer with Bluetooth inteface