SlideShare ist ein Scribd-Unternehmen logo
1 von 13
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Ähnlich wie 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
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptx
HebaEng
 

Ähnlich wie 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)
 
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
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptx
 

Mehr von Raghav Shetty

Mehr von 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
 

Kürzlich hochgeladen

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
 

Kürzlich hochgeladen (20)

Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
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)
 
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?
 
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?
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
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
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
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...
 

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