SlideShare a Scribd company logo
1 of 15
Download to read offline
www.researchdesignlab.com Page 1
8 channel DimmerREV1.0
Serial 8Channel AC 230VSSR and
Dimmer
www.researchdesignlab.com Page 2
8 channel DimmerREV1.0
Contents
OVERVIEW ................................................................................................................................... 3
SERIAL 8 CHANNEL AC 230V SSR AND DIMMER............................................................ 3
FEATURES ................................................................................................................................ 4
BTA12400 IC.............................................................................................................................. 4
MOC 3021 .................................................................................................................................. 5
FIRING ANGLE......................................................................................................................... 7
CONNECTING 230V AC 8 CHANNELDIMMER WITH ELECTRONIC GADGETS......... 8
BLOCK DIAGRAM................................................................................................................. 11
CONNECTION WITH ARDUINO BOARD........................................................................... 12
ARDUINO CODE .................................................................................................................... 13
www.researchdesignlab.com Page 3
8 channel DimmerREV1.0
OVERVIEW
SERIAL 8 CHANNEL AC 230VSSR AND DIMMER
The board can be used in application where dimming of 110-220v AC power is required like
dimming of bulb or fan.The board can be control with Serial data from any microcontroller 0-
100% dimming or ON/OFF control Main power(230v) completely isolated from
microcontroller.
www.researchdesignlab.com Page 4
8 channel DimmerREV1.0
FEATURES
 Works on AC power supply 230V.
 Load Capacity 12 Amp AC(Up to 2000 Watt)
 Isolated from mains power
 Works from any microcontroller.
 Serial Control (TTL).
 Simultaneous 8 load control with 0-100% dimming.
 Act as 8 channel solid state relay with ON/OFF and dimming.
 Optional input for Microcontroller or Bluetooth, XBEE, and USB inteface pin
TX,RX,5V,GND.
BTA12400 IC
BTA12 400
www.researchdesignlab.com Page 5
8 channel DimmerREV1.0
Electrical Characteristics
 Average Power Dissipation of 0.5W
 Operating Temperature +120 degC
 Holding Current (maximum)-30mA
 Latching Current(maximum)-60mA
MOC 3021
MOC 3021
www.researchdesignlab.com Page 6
8 channel DimmerREV1.0
It is a 6pin Random Phase optoisolatorsTRIAC driver output
TRIAC
from Triode for Alternating Current, is a genericizedtradename for an electronic component that
can conduct current in either direction when it is triggered (turned on), and is formally called a
bidirectional triode thyristor or bilateral triode thyristor.
Applications:
• Solenoid/Valve Controls
• Static ac Power Switch
• Lamp Ballasts
• Solid State Relays
• Interfacing Microprocessors to 115 Vac Peripherals
• Incandescent Lamp Dimmer
• Motor Controls
www.researchdesignlab.com Page 7
8 channel DimmerREV1.0
Electrical Characteristics
 Total Power Dissipation @ TA is 25°is4.4mW
 Storage Temperature Range is -40 to +150 degC
FIRING ANGLE
Phase angle of applied voltage at which the Thyristor conduct
www.researchdesignlab.com Page 8
8 channel DimmerREV1.0
CONNECTING 230V AC 8 CHANNELDIMMER WITH ELECTRONIC GADGETS
www.researchdesignlab.com Page 9
8 channel DimmerREV1.0
UART INPUT FOR LOADS
A=load1 E=load5
B=load2 F=load6
C=load3 G=load7
D=load4 H=load8
S=ALLOFF(LOAD1=OFF,LOAD2=OFF,LOAD3=OFF,LOAD4=OFF,LOAD5=OFFLOAD6=
OFF ,LOAD7=OFF, LOAD8=OFF)
N=ALL ON (LOAD1=100%, LOAD2=100%,
LOAD3=100%,LOAD4=100%,LOAD5=100%,LOAD6=100%,LOAD7=100%,LOAD8=100%)
Example
A100= load1 at 100% dimmer level.
A026=load1 at 26% dimmer level.
B065=load2 at 65% dimmer level.
C089=load3 at 89% dimmer level.
LOAD1
UART INPUT DIMMER LEVEL
1 A100 100%
2 A090 90%
3 A092 92%
4 A050 50%
5 A010 10%
www.researchdesignlab.com Page 10
8 channel DimmerREV1.0
LOAD2
UART INPUT DIMMER LEVEL
1 B100 100%
2 B090 90%
3 B092 92%
4 B050 50%
5 B010 10%
LOAD3
UART INPUT DIMMER LEVEL
1 C100 100%
2 C090 90%
3 C092 92%
4 C050 50%
5 C010 10%
All ON and All OFF
UART INPUT DIMMER LEVEL
LOAD 1,2,3
1 S 0%
2 N 100%
www.researchdesignlab.com Page 11
8 channel DimmerREV1.0
BLOCK DIAGRAM
www.researchdesignlab.com Page 12
8 channel DimmerREV1.0
CONNECTION WITH ARDUINO BOARD
 Connect TX of Arduino to RX of Dimmer
 Connect RX of Arduino to TX of Dimmer
www.researchdesignlab.com Page 13
8 channel DimmerREV1.0
ARDUINO CODE
ints1=8; //connect switch1 to pin 2 of arduino
ints2=9; //connect switch2 to pin 3 of arduino
ints3=10; //connect switch3 to pin 4 of arduino
ints4=11; //connect switch4 to pin 5 of arduino
ints5=12; //connect switch5 to pin 6 of arduino
ints6=13;
void setup()
{
Serial.begin(9600); // initialize the serial communications
pinMode(s1,INPUT);
pinMode(s2,INPUT);
pinMode(s3,INPUT);
pinMode(s4,INPUT);
pinMode(s5,INPUT);
pinMode(s6,INPUT);
}
void loop()
{
unsigned char LOAD1=0,LOAD2=0,LOAD3=0;
if(s1==LOW)
{
if(LOAD1<100)
LOAD1++;
Serial.write('A');
CONVERT_DISPLAY(LOAD1);
delay(500);
}
if(s2==LOW)
{
www.researchdesignlab.com Page 14
8 channel DimmerREV1.0
if(LOAD1>0)
LOAD1--;
Serial.write('A');
CONVERT_DISPLAY(LOAD1);
delay(500);
}
if(s3==LOW)
{
if(LOAD2<100)
LOAD2++;
Serial.write('B');
CONVERT_DISPLAY(LOAD2);
delay(500);
}
if(s4==LOW)
{
if(LOAD2>0)
LOAD2--;
Serial.write('B');
CONVERT_DISPLAY(LOAD2);
delay(500);
}
if(s5==LOW)
{
if(LOAD3<100)
LOAD3++;
Serial.write('C');
CONVERT_DISPLAY(LOAD3);
delay(500);
}
if(s6==LOW)
www.researchdesignlab.com Page 15
8 channel DimmerREV1.0
{
if(LOAD3>0)
LOAD3--;
Serial.write('C');
CONVERT_DISPLAY(LOAD3);
delay(500);
}
}
void CONVERT_DISPLAY(unsigned int d)
{
unsigned char dig1,dig2,dig3,dig[3];
unsigned char x;
unsigned char temp;
temp=d;
temp=temp/10;
dig1=d%10;
dig2=temp%10;
dig3=temp/10;
dig[0]=dig3;
dig[1]=dig2;
dig[2]=dig1;
for(x=0;x<3;x++)
{
temp=dig[x]|0x30;
Serial.write(temp);
}
}
NOTE: Since this module working with live 230V AC, while experimenting user has to take
proper safety precautions.

More Related Content

What's hot

Protection settings calculation
Protection settings calculationProtection settings calculation
Protection settings calculationLANOGWA RODGERS
 
Study on Excitation system in Power sector
Study on Excitation system in Power sectorStudy on Excitation system in Power sector
Study on Excitation system in Power sectorBoben Anto Chemmannoor
 
Per unit systems in power systems
Per unit systems in power systemsPer unit systems in power systems
Per unit systems in power systemsanoopeluvathingal
 
Power systems symmetrical components
Power systems symmetrical componentsPower systems symmetrical components
Power systems symmetrical componentsanoopeluvathingal
 
Electric power calculations
Electric power calculationsElectric power calculations
Electric power calculationsmichaeljmack
 
Alternatorexcitation
AlternatorexcitationAlternatorexcitation
AlternatorexcitationRanjan Naik
 
Short circuit (wic) testing and parameters.
Short circuit (wic) testing and parameters.Short circuit (wic) testing and parameters.
Short circuit (wic) testing and parameters.Mustafa Ismail
 
Symmetrical Components Fault Calculations
Symmetrical Components Fault CalculationsSymmetrical Components Fault Calculations
Symmetrical Components Fault Calculationsmichaeljmack
 
Automatic voltaer regulator and it's modelling
Automatic voltaer regulator and it's modellingAutomatic voltaer regulator and it's modelling
Automatic voltaer regulator and it's modellingrajani51
 
Estimation of Synchronous Generator Parameters from On-line Measurements
Estimation of Synchronous Generator Parameters from On-line MeasurementsEstimation of Synchronous Generator Parameters from On-line Measurements
Estimation of Synchronous Generator Parameters from On-line MeasurementsMohammadHasanmosadde
 
Generator Voltage control
Generator Voltage controlGenerator Voltage control
Generator Voltage controljamaju56
 
15 years of experience stator ground fault protection
15 years of experience stator ground fault protection15 years of experience stator ground fault protection
15 years of experience stator ground fault protectionmichaeljmack
 
Over-current-earth-fault-relay-MC-31
 Over-current-earth-fault-relay-MC-31 Over-current-earth-fault-relay-MC-31
Over-current-earth-fault-relay-MC-31Powerway Systems
 
Voltage Regulator Circuit with LM317
Voltage Regulator Circuit with LM317Voltage Regulator Circuit with LM317
Voltage Regulator Circuit with LM317Ricardo Portals
 

What's hot (20)

Protection settings calculation
Protection settings calculationProtection settings calculation
Protection settings calculation
 
Study on Excitation system in Power sector
Study on Excitation system in Power sectorStudy on Excitation system in Power sector
Study on Excitation system in Power sector
 
Generator protection
Generator protectionGenerator protection
Generator protection
 
Per unit systems in power systems
Per unit systems in power systemsPer unit systems in power systems
Per unit systems in power systems
 
Power systems symmetrical components
Power systems symmetrical componentsPower systems symmetrical components
Power systems symmetrical components
 
Electric power calculations
Electric power calculationsElectric power calculations
Electric power calculations
 
Alternatorexcitation
AlternatorexcitationAlternatorexcitation
Alternatorexcitation
 
Short circuit (wic) testing and parameters.
Short circuit (wic) testing and parameters.Short circuit (wic) testing and parameters.
Short circuit (wic) testing and parameters.
 
Symmetrical Components Fault Calculations
Symmetrical Components Fault CalculationsSymmetrical Components Fault Calculations
Symmetrical Components Fault Calculations
 
40 MVA TX
40 MVA TX40 MVA TX
40 MVA TX
 
Automatic voltaer regulator and it's modelling
Automatic voltaer regulator and it's modellingAutomatic voltaer regulator and it's modelling
Automatic voltaer regulator and it's modelling
 
Estimation of Synchronous Generator Parameters from On-line Measurements
Estimation of Synchronous Generator Parameters from On-line MeasurementsEstimation of Synchronous Generator Parameters from On-line Measurements
Estimation of Synchronous Generator Parameters from On-line Measurements
 
Electric motors
Electric motorsElectric motors
Electric motors
 
Generator Voltage control
Generator Voltage controlGenerator Voltage control
Generator Voltage control
 
15 years of experience stator ground fault protection
15 years of experience stator ground fault protection15 years of experience stator ground fault protection
15 years of experience stator ground fault protection
 
Emii
EmiiEmii
Emii
 
Over-current-earth-fault-relay-MC-31
 Over-current-earth-fault-relay-MC-31 Over-current-earth-fault-relay-MC-31
Over-current-earth-fault-relay-MC-31
 
Inverter
InverterInverter
Inverter
 
Mag ch of dc shunt generator
Mag ch of dc shunt generatorMag ch of dc shunt generator
Mag ch of dc shunt generator
 
Voltage Regulator Circuit with LM317
Voltage Regulator Circuit with LM317Voltage Regulator Circuit with LM317
Voltage Regulator Circuit with LM317
 

Viewers also liked

Huertocaseroa 150613142209-lva1-app6892
Huertocaseroa 150613142209-lva1-app6892Huertocaseroa 150613142209-lva1-app6892
Huertocaseroa 150613142209-lva1-app6892Escuela Manuel Febres
 
Rapport rps-stcyr-prévention-risques-psychosociaux-partie1
Rapport rps-stcyr-prévention-risques-psychosociaux-partie1Rapport rps-stcyr-prévention-risques-psychosociaux-partie1
Rapport rps-stcyr-prévention-risques-psychosociaux-partie1Jean-Charles Faivre-Pierret
 
ääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohje
ääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohjeääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohje
ääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohjeHanne Koli
 
Epätaloudellista taloutta torjumaan
Epätaloudellista taloutta torjumaanEpätaloudellista taloutta torjumaan
Epätaloudellista taloutta torjumaanArto O Salonen
 
latest news
latest newslatest news
latest newshuligute
 
Palvelumuotoilulla kohti kukoistavaa elämää
Palvelumuotoilulla kohti kukoistavaa elämääPalvelumuotoilulla kohti kukoistavaa elämää
Palvelumuotoilulla kohti kukoistavaa elämääArto O Salonen
 
Stayin g ed up html-files.doc
Stayin g ed up html-files.docStayin g ed up html-files.doc
Stayin g ed up html-files.docAztanahmian
 
Snap.svg.jsチュートリアル
Snap.svg.jsチュートリアルSnap.svg.jsチュートリアル
Snap.svg.jsチュートリアル誠人 堀口
 
Thirsty for more html files.doc
Thirsty for more html files.docThirsty for more html files.doc
Thirsty for more html files.docAztanahmian
 
Ekososiaalisen sivistyksen idea
Ekososiaalisen sivistyksen ideaEkososiaalisen sivistyksen idea
Ekososiaalisen sivistyksen ideaArto O Salonen
 
Supreme creator pitch powerpoint
Supreme creator  pitch powerpointSupreme creator  pitch powerpoint
Supreme creator pitch powerpointSolCollier
 
Median ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestä
Median ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestäMedian ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestä
Median ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestäIlkka O. Lavas
 
Tulevaisuuden trendejä 2015
Tulevaisuuden trendejä 2015Tulevaisuuden trendejä 2015
Tulevaisuuden trendejä 2015Maiju Akkanen
 
Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...
Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...
Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...Suomen Pankki
 
Horror Film Conventions
Horror Film ConventionsHorror Film Conventions
Horror Film ConventionsOwen Lockwood
 

Viewers also liked (17)

Huertocaseroa 150613142209-lva1-app6892
Huertocaseroa 150613142209-lva1-app6892Huertocaseroa 150613142209-lva1-app6892
Huertocaseroa 150613142209-lva1-app6892
 
Rapport rps-stcyr-prévention-risques-psychosociaux-partie1
Rapport rps-stcyr-prévention-risques-psychosociaux-partie1Rapport rps-stcyr-prévention-risques-psychosociaux-partie1
Rapport rps-stcyr-prévention-risques-psychosociaux-partie1
 
ääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohje
ääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohjeääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohje
ääNen nauhoittaminen ohjeeksi powerpoint esityksen opiskeluun ohje
 
Epätaloudellista taloutta torjumaan
Epätaloudellista taloutta torjumaanEpätaloudellista taloutta torjumaan
Epätaloudellista taloutta torjumaan
 
latest news
latest newslatest news
latest news
 
1:11:16 school board meeting
1:11:16 school board meeting1:11:16 school board meeting
1:11:16 school board meeting
 
Palvelumuotoilulla kohti kukoistavaa elämää
Palvelumuotoilulla kohti kukoistavaa elämääPalvelumuotoilulla kohti kukoistavaa elämää
Palvelumuotoilulla kohti kukoistavaa elämää
 
Stayin g ed up html-files.doc
Stayin g ed up html-files.docStayin g ed up html-files.doc
Stayin g ed up html-files.doc
 
Snap.svg.jsチュートリアル
Snap.svg.jsチュートリアルSnap.svg.jsチュートリアル
Snap.svg.jsチュートリアル
 
Thirsty for more html files.doc
Thirsty for more html files.docThirsty for more html files.doc
Thirsty for more html files.doc
 
Ekososiaalisen sivistyksen idea
Ekososiaalisen sivistyksen ideaEkososiaalisen sivistyksen idea
Ekososiaalisen sivistyksen idea
 
Supreme creator pitch powerpoint
Supreme creator  pitch powerpointSupreme creator  pitch powerpoint
Supreme creator pitch powerpoint
 
Median ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestä
Median ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestäMedian ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestä
Median ansaintamallit ja journalismi: sisällön ja ansaintamallin yhteydestä
 
Copia de trabajo 1
Copia de trabajo 1Copia de trabajo 1
Copia de trabajo 1
 
Tulevaisuuden trendejä 2015
Tulevaisuuden trendejä 2015Tulevaisuuden trendejä 2015
Tulevaisuuden trendejä 2015
 
Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...
Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...
Rahoitusmarkkinoiden digitalisaatio ja liiketoimintamallien muutos. Vanhempi ...
 
Horror Film Conventions
Horror Film ConventionsHorror Film Conventions
Horror Film Conventions
 

Similar to Serial 8 Channel AC 230V SSR and Dimmer

Original Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST Microelectronics
Original Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST MicroelectronicsOriginal Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST Microelectronics
Original Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST MicroelectronicsAUTHELECTRONIC
 
Serial 8 Channel AC 230V SSR and Dimmer Bluetooth Interface
Serial 8 Channel AC 230V SSR and Dimmer  Bluetooth InterfaceSerial 8 Channel AC 230V SSR and Dimmer  Bluetooth Interface
Serial 8 Channel AC 230V SSR and Dimmer Bluetooth InterfaceRaghav Shetty
 
Thyristors,Commutayion of Thyristor, Power Electronics
Thyristors,Commutayion of Thyristor, Power ElectronicsThyristors,Commutayion of Thyristor, Power Electronics
Thyristors,Commutayion of Thyristor, Power ElectronicsDurgesh Singh
 
SCR_Firing_commutation
SCR_Firing_commutationSCR_Firing_commutation
SCR_Firing_commutationjayantmane
 
testing purpose for ic testing and othettastinng
testing purpose for ic testing and othettastinngtesting purpose for ic testing and othettastinng
testing purpose for ic testing and othettastinngPvaveen
 
M a 723 datasheet
M a 723 datasheetM a 723 datasheet
M a 723 datasheetAndy Medina
 
Unit 1 thyristors protection
Unit 1 thyristors protectionUnit 1 thyristors protection
Unit 1 thyristors protectionEr.Meraj Akhtar
 
Advanced motion controls s60a40ac
Advanced motion controls s60a40acAdvanced motion controls s60a40ac
Advanced motion controls s60a40acElectromate
 
Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...
Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...
Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...AUTHELECTRONIC
 
Original Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F New
Original Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F NewOriginal Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F New
Original Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F NewAUTHELECTRONIC
 
Signal conditioning piezoelectric sensors
Signal conditioning piezoelectric sensorsSignal conditioning piezoelectric sensors
Signal conditioning piezoelectric sensorsWind Xu
 
59948408 ee-2304-pe-lab-manual-final2011
59948408 ee-2304-pe-lab-manual-final201159948408 ee-2304-pe-lab-manual-final2011
59948408 ee-2304-pe-lab-manual-final2011homeworkping4
 
Advanced motion controls s30a40ac
Advanced motion controls s30a40acAdvanced motion controls s30a40ac
Advanced motion controls s30a40acElectromate
 

Similar to Serial 8 Channel AC 230V SSR and Dimmer (20)

Original Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST Microelectronics
Original Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST MicroelectronicsOriginal Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST Microelectronics
Original Advanced IGBT/Mosfet Driver TD350E 350E SOP-14 New ST Microelectronics
 
Serial 8 Channel AC 230V SSR and Dimmer Bluetooth Interface
Serial 8 Channel AC 230V SSR and Dimmer  Bluetooth InterfaceSerial 8 Channel AC 230V SSR and Dimmer  Bluetooth Interface
Serial 8 Channel AC 230V SSR and Dimmer Bluetooth Interface
 
Lm555
Lm555Lm555
Lm555
 
Thyristors,Commutayion of Thyristor, Power Electronics
Thyristors,Commutayion of Thyristor, Power ElectronicsThyristors,Commutayion of Thyristor, Power Electronics
Thyristors,Commutayion of Thyristor, Power Electronics
 
SCR_Firing_commutation
SCR_Firing_commutationSCR_Firing_commutation
SCR_Firing_commutation
 
testing purpose for ic testing and othettastinng
testing purpose for ic testing and othettastinngtesting purpose for ic testing and othettastinng
testing purpose for ic testing and othettastinng
 
Cd00003612
Cd00003612Cd00003612
Cd00003612
 
Adxl335
Adxl335Adxl335
Adxl335
 
Max 232
Max 232Max 232
Max 232
 
75176
7517675176
75176
 
M a 723 datasheet
M a 723 datasheetM a 723 datasheet
M a 723 datasheet
 
Unit 1 thyristors protection
Unit 1 thyristors protectionUnit 1 thyristors protection
Unit 1 thyristors protection
 
A110x
A110xA110x
A110x
 
L293d
L293dL293d
L293d
 
Advanced motion controls s60a40ac
Advanced motion controls s60a40acAdvanced motion controls s60a40ac
Advanced motion controls s60a40ac
 
Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...
Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...
Original Power Factor Correction IC UCC28061DR 28061 SOP-16 New Texas Instrum...
 
Original Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F New
Original Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F NewOriginal Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F New
Original Mosfet N-channel IPAW60R600 60S600CE 600V 6A TO-220F New
 
Signal conditioning piezoelectric sensors
Signal conditioning piezoelectric sensorsSignal conditioning piezoelectric sensors
Signal conditioning piezoelectric sensors
 
59948408 ee-2304-pe-lab-manual-final2011
59948408 ee-2304-pe-lab-manual-final201159948408 ee-2304-pe-lab-manual-final2011
59948408 ee-2304-pe-lab-manual-final2011
 
Advanced motion controls s30a40ac
Advanced motion controls s30a40acAdvanced motion controls s30a40ac
Advanced motion controls s30a40ac
 

More from Raghav Shetty

8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth8 Channel Relay Board-Bluetooth
8 Channel Relay Board-BluetoothRaghav Shetty
 
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 ArduinoRaghav Shetty
 
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 ArduinoRaghav Shetty
 
8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485 8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485 Raghav Shetty
 
Digitla Vibration Sensor
Digitla Vibration SensorDigitla Vibration Sensor
Digitla Vibration SensorRaghav Shetty
 
Digital Soil Moisture Sensor
Digital Soil Moisture SensorDigital Soil Moisture Sensor
Digital Soil Moisture SensorRaghav Shetty
 
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 MCURaghav Shetty
 
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 MCURaghav Shetty
 
Regulated Power Supply
Regulated Power Supply Regulated Power Supply
Regulated Power Supply Raghav Shetty
 
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 ConverterRaghav Shetty
 
Plastic REED Float Switch
Plastic REED Float SwitchPlastic REED Float Switch
Plastic REED Float SwitchRaghav Shetty
 

More from 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
 
LCD Keypad Shield
LCD Keypad ShieldLCD Keypad Shield
LCD Keypad Shield
 
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
 

Recently uploaded

Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 

Recently uploaded (20)

Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 

Serial 8 Channel AC 230V SSR and Dimmer

  • 1. www.researchdesignlab.com Page 1 8 channel DimmerREV1.0 Serial 8Channel AC 230VSSR and Dimmer
  • 2. www.researchdesignlab.com Page 2 8 channel DimmerREV1.0 Contents OVERVIEW ................................................................................................................................... 3 SERIAL 8 CHANNEL AC 230V SSR AND DIMMER............................................................ 3 FEATURES ................................................................................................................................ 4 BTA12400 IC.............................................................................................................................. 4 MOC 3021 .................................................................................................................................. 5 FIRING ANGLE......................................................................................................................... 7 CONNECTING 230V AC 8 CHANNELDIMMER WITH ELECTRONIC GADGETS......... 8 BLOCK DIAGRAM................................................................................................................. 11 CONNECTION WITH ARDUINO BOARD........................................................................... 12 ARDUINO CODE .................................................................................................................... 13
  • 3. www.researchdesignlab.com Page 3 8 channel DimmerREV1.0 OVERVIEW SERIAL 8 CHANNEL AC 230VSSR AND DIMMER The board can be used in application where dimming of 110-220v AC power is required like dimming of bulb or fan.The board can be control with Serial data from any microcontroller 0- 100% dimming or ON/OFF control Main power(230v) completely isolated from microcontroller.
  • 4. www.researchdesignlab.com Page 4 8 channel DimmerREV1.0 FEATURES  Works on AC power supply 230V.  Load Capacity 12 Amp AC(Up to 2000 Watt)  Isolated from mains power  Works from any microcontroller.  Serial Control (TTL).  Simultaneous 8 load control with 0-100% dimming.  Act as 8 channel solid state relay with ON/OFF and dimming.  Optional input for Microcontroller or Bluetooth, XBEE, and USB inteface pin TX,RX,5V,GND. BTA12400 IC BTA12 400
  • 5. www.researchdesignlab.com Page 5 8 channel DimmerREV1.0 Electrical Characteristics  Average Power Dissipation of 0.5W  Operating Temperature +120 degC  Holding Current (maximum)-30mA  Latching Current(maximum)-60mA MOC 3021 MOC 3021
  • 6. www.researchdesignlab.com Page 6 8 channel DimmerREV1.0 It is a 6pin Random Phase optoisolatorsTRIAC driver output TRIAC from Triode for Alternating Current, is a genericizedtradename for an electronic component that can conduct current in either direction when it is triggered (turned on), and is formally called a bidirectional triode thyristor or bilateral triode thyristor. Applications: • Solenoid/Valve Controls • Static ac Power Switch • Lamp Ballasts • Solid State Relays • Interfacing Microprocessors to 115 Vac Peripherals • Incandescent Lamp Dimmer • Motor Controls
  • 7. www.researchdesignlab.com Page 7 8 channel DimmerREV1.0 Electrical Characteristics  Total Power Dissipation @ TA is 25°is4.4mW  Storage Temperature Range is -40 to +150 degC FIRING ANGLE Phase angle of applied voltage at which the Thyristor conduct
  • 8. www.researchdesignlab.com Page 8 8 channel DimmerREV1.0 CONNECTING 230V AC 8 CHANNELDIMMER WITH ELECTRONIC GADGETS
  • 9. www.researchdesignlab.com Page 9 8 channel DimmerREV1.0 UART INPUT FOR LOADS A=load1 E=load5 B=load2 F=load6 C=load3 G=load7 D=load4 H=load8 S=ALLOFF(LOAD1=OFF,LOAD2=OFF,LOAD3=OFF,LOAD4=OFF,LOAD5=OFFLOAD6= OFF ,LOAD7=OFF, LOAD8=OFF) N=ALL ON (LOAD1=100%, LOAD2=100%, LOAD3=100%,LOAD4=100%,LOAD5=100%,LOAD6=100%,LOAD7=100%,LOAD8=100%) Example A100= load1 at 100% dimmer level. A026=load1 at 26% dimmer level. B065=load2 at 65% dimmer level. C089=load3 at 89% dimmer level. LOAD1 UART INPUT DIMMER LEVEL 1 A100 100% 2 A090 90% 3 A092 92% 4 A050 50% 5 A010 10%
  • 10. www.researchdesignlab.com Page 10 8 channel DimmerREV1.0 LOAD2 UART INPUT DIMMER LEVEL 1 B100 100% 2 B090 90% 3 B092 92% 4 B050 50% 5 B010 10% LOAD3 UART INPUT DIMMER LEVEL 1 C100 100% 2 C090 90% 3 C092 92% 4 C050 50% 5 C010 10% All ON and All OFF UART INPUT DIMMER LEVEL LOAD 1,2,3 1 S 0% 2 N 100%
  • 11. www.researchdesignlab.com Page 11 8 channel DimmerREV1.0 BLOCK DIAGRAM
  • 12. www.researchdesignlab.com Page 12 8 channel DimmerREV1.0 CONNECTION WITH ARDUINO BOARD  Connect TX of Arduino to RX of Dimmer  Connect RX of Arduino to TX of Dimmer
  • 13. www.researchdesignlab.com Page 13 8 channel DimmerREV1.0 ARDUINO CODE ints1=8; //connect switch1 to pin 2 of arduino ints2=9; //connect switch2 to pin 3 of arduino ints3=10; //connect switch3 to pin 4 of arduino ints4=11; //connect switch4 to pin 5 of arduino ints5=12; //connect switch5 to pin 6 of arduino ints6=13; void setup() { Serial.begin(9600); // initialize the serial communications pinMode(s1,INPUT); pinMode(s2,INPUT); pinMode(s3,INPUT); pinMode(s4,INPUT); pinMode(s5,INPUT); pinMode(s6,INPUT); } void loop() { unsigned char LOAD1=0,LOAD2=0,LOAD3=0; if(s1==LOW) { if(LOAD1<100) LOAD1++; Serial.write('A'); CONVERT_DISPLAY(LOAD1); delay(500); } if(s2==LOW) {
  • 14. www.researchdesignlab.com Page 14 8 channel DimmerREV1.0 if(LOAD1>0) LOAD1--; Serial.write('A'); CONVERT_DISPLAY(LOAD1); delay(500); } if(s3==LOW) { if(LOAD2<100) LOAD2++; Serial.write('B'); CONVERT_DISPLAY(LOAD2); delay(500); } if(s4==LOW) { if(LOAD2>0) LOAD2--; Serial.write('B'); CONVERT_DISPLAY(LOAD2); delay(500); } if(s5==LOW) { if(LOAD3<100) LOAD3++; Serial.write('C'); CONVERT_DISPLAY(LOAD3); delay(500); } if(s6==LOW)
  • 15. www.researchdesignlab.com Page 15 8 channel DimmerREV1.0 { if(LOAD3>0) LOAD3--; Serial.write('C'); CONVERT_DISPLAY(LOAD3); delay(500); } } void CONVERT_DISPLAY(unsigned int d) { unsigned char dig1,dig2,dig3,dig[3]; unsigned char x; unsigned char temp; temp=d; temp=temp/10; dig1=d%10; dig2=temp%10; dig3=temp/10; dig[0]=dig3; dig[1]=dig2; dig[2]=dig1; for(x=0;x<3;x++) { temp=dig[x]|0x30; Serial.write(temp); } } NOTE: Since this module working with live 230V AC, while experimenting user has to take proper safety precautions.