0% found this document useful (0 votes)
55 views5 pages

Synopsis ON 1 HZ Frequency Generator: Cetpa Infotech Pvt. LTD

This document describes a 1 Hz frequency generator project using an 8051 microcontroller. It includes a list of components used, with quantities for each. The microcontroller's pin 20 is ground and pin 40 is power, with an LED connected to port P0.1. When the LED blinks continuously, it represents a 1 Hz frequency. The programming causes the microcontroller to clear and set the LED pin using a delay subroutine to generate the 1 Hz blinking frequency.

Uploaded by

SiddharthRawat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
55 views5 pages

Synopsis ON 1 HZ Frequency Generator: Cetpa Infotech Pvt. LTD

This document describes a 1 Hz frequency generator project using an 8051 microcontroller. It includes a list of components used, with quantities for each. The microcontroller's pin 20 is ground and pin 40 is power, with an LED connected to port P0.1. When the LED blinks continuously, it represents a 1 Hz frequency. The programming causes the microcontroller to clear and set the LED pin using a delay subroutine to generate the 1 Hz blinking frequency.

Uploaded by

SiddharthRawat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 5

SYNOPSIS

ON
1 Hz FREQUENCY GENERATOR

Department of Embedded System

CETPA INFOTECH PVT. LTD.

This project is design for generating 1 hz frequency.


In this project we have used 8051 microcontroller.20th pin of microcontroller is
ground whereas 40th pin is supply. And a led is connected to port p0.1.

When it is led blink continually represting 1 hz frequency.

Component used

Sr. no.

Quantity (no.s)

1.
2.
3.
4.
5.
6.
7.

89c51 microcontroller (base + IC)


Diode (4007, .7v)
10k resistance
4.7k resistance
470 ohms resistance
Crystal oscillator (12Mhz frequency)
Transformer (220v-909)

1
4
1
7
4
1
1

8.

L.E.D.s

9.

Ceramic Capacitor (30pf-33pf)

10.

Electrolytic capacitor (100 microfarad)

11.

Electrolytic capacitor (470 microfarad)

12.

Voltage regulator (7805)(+5v)

13.

2-Pin connector

14.

2- pin switches

15.

Cello tape (for electrical use)

16.

Supply wire

2 mts

Programming:

$mod51
org 0h
go:
clr p1.2
acall delay
setb p1.2
acall delay
sjmp go
delay:
mov r1,#08h
mov tmod,#10h
mov th1,#0f7h
mov tl1,#0e3h
setb tr1
go1: jnb tf1,go1
clr tf1
djnz r1,go1
clr tr1
ret
end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy