Industrial Training Report On Embedded System
Industrial Training Report On Embedded System
REPORT ON
EMBEDDED SYSTEMS
Submitted to
Training content
How to Design PCB
Designing of development board
Interfacing with Atmega 8A
LED Interfacing
Switch Interfacing
LM35
LCD Interfacing
DC motor
Stepper motor
IR Sensor
L293D
Resistor:-
Ratings:-
1. Resistance Page 2 of 2
2. Power dissipation
Low power resistor have maximum power rating less than 5 watts ,
cylindrical in shape
High power resistors are those with maximum power rating higher than
5 watts and always comes with a heat sink
P =Vrms2/R
4k9 means 4900ohm
If the supply voltage is 12 volts, then maximum possible power is
calculated using V 2/R - which [(12 * 12 )/330 ]= 0.435 watts.
RESISTOR SYMBOLS:-
Capacitor symbols:-
Page 3 of 3
Factors to be considered while selecting acapacitor
Type of construction
Tolerance
working voltage
Temperature coefficients
Types of capacitor:-
Non polarized
Mica, glass, Ceramic (disk), film, paper
Polarized
Electrolytic capacitor
Super
capacitor
Ceramic
Capacitor:-
1
pico-farad --- 0.01
Microfarad
Work up-to 50V
Always measured in
pico-farad
Most commonly used
(cheap, reliable and low
loss factor)
103=10,000 PF
Paper capacitor:-
Made up of paper (oil-impregnated paper and aluminum foil layers rolled
into a cylinder and
sealed with wax)
Major drawbacks:
Bulky, soaks
moisture
500pF to 50µF
<600 volts
Replaced by the plastic or polymer capacitor
s
Mica capacitor:-
Mica as the dielectric medium.
Since winding of mica is not possible therefore mica capacitor are always
flat in shape.
Electrolytic:-
Large amount of capacitance is required. Polarized.
0.1µF to 500,000µF
10V to 100V used for low frequency applications
positive pin -- anode , negative pin-- cathode
Have a wide tolerance range, usually ±20% or more.
This makes them poor in applications where precise values are needed.
1…Current rating:
Depends on current required for load to be driven
Page 5 of 5
2…Secondary voltage of the transformer:
Any transformer which gives secondary peak voltage up-to 35 V can be
used
Rectifying Circuit:-
Diode: IN4007
(Due to high Peak InverseVoltage ) current 1A
Capacitor:-
Electrolytic Capacitor
1000 mF or greater depending upon the current requirement of the load to be
driven
Regulator:-
The most popular type of voltage regulator IC is the 78XX series,
sometimes called
the LM78XX
series
LM 7805
Input voltage
7V-35V
Current rating 1A
Out-putVoltage V-max=5.2 V
V-min=4.8 v
Multi-meter:-
P ag e 6 of 6
Embedded System:-
• An Embedded System is one
that has
computer hardware with
software
embedded in it as one of its important
components.
Page 7 of 7
switch1=digitalRead(5);
if(switch1==0)
{
digitalWrite(8,LOW);
digitalWrite(9,LOW);
}
else
{
digitalWrite(8,HIGH);
digitalWrite(9,HIGH);
}
switch1=digitalRead(5);
if(switch1==0)
{
digitalWrite(8,LOW);
digitalWrite(9,LOW);
digitalWrite(10,LOW);
}
else
{
digitalWrite(8,HIGH);
digitalWrite(9,HIGH);
digitalWrite(10,HIGH);
}
switch1=digitalRead(5);
if(switch1==0)
{
digitalWrite(8,LOW);
digitalWrite(9,LOW);
digitalWrite(10,LOW);
digitalWrite(11,LOW);
}
else
{
digitalWrite(8,HIGH);
digitalWrite(9,HIGH);
digitalWrite(10,HIGH);
digitalWrite(11,HIGH);
}
switch1=digitalRead(5);
if(switch1==0)
{
digitalWrite(8,LOW);
digitalWrite(9,LOW);
digitalWrite(10,LOW);
digitalWrite(11,LOW);
digitalWrite(12,LOW);
}
}
else
{
digitalWrite(8,HIGH);
digitalWrite(9,HIGH);
digitalWrite(10,HIGH);
digitalWrite(11,HIGH);
digitalWrite(12,HIGH);
}
switch1=digitalRead(5);
if(switch1==0)
{
digitalWrite(8,LOW);
digitalWrite(9,LOW);
digitalWrite(10,LOW);
digitalWrite(11,LOW);
digitalWrite(12,LOW);
digitalWrite(13,LOW);
}
else
{
digitalWrite(8,HIGH);
digitalWrite(9,HIGH);
digitalWrite(10,HIGH);
digitalWrite(11,HIGH);
digitalWrite(12,HIGH);
digitalWrite(13,HIGH);
}
}
L239D interfacing dc motor using Atmega
8A #include <avr/io.h>
#include <util/delay.h> // for _delay_ms()
int main(void)
{
DDRC = 0x0F; // initialize port C // motors
connected across PC0...Pc3 while(1)
{
// clockwise rotation
PORTC = 0b00000101; // PC0 = High = Vcc
// PC1 = Low = 0
// PC2 = High = Vcc
// PC3 = Low = 0
_delay_ms(500); // wait 0.5s
// counter-clockwise rotation
PORTC = 0b00001010; // PC0 = Low = 0
// PC1 = High = Vcc
// PC2 = Low = 0
// PC3 = High = Vcc
FINISH
SCHOOL OF ENGINEERING AND EMERGING
TECHNOLOGY, BUEST, BADDI.
CANDIDATE'S DECLARATION
period from 5 JUNE To 14 JULY 2017 in partial fulfillment of requirements for the
BADDI. The work which is being presented in the training report submitted to
The software / industrial training Viva–Voce Examination of has been held on and accepted.
BOOKS:
1.Mazidi and mazidi
2.Ayala
3.Sanjeev Gupta
WEB RESOURCES:
1.www.atmelprojects.com
2.www.rickeysworld.com
3.www.electronics4u.com
4.www.efy.com
5.www.projectsguide.com
6.www.google.com