Showing posts with label pulse generator. Show all posts
pulse generator software
Pulse generator:
org 00h
mov p2,#00h
again: setb p2.0
acall delay
clr p2.0
acall delay
sjmp again
delay: mov r0,#0ffh
here1: mov r1,#0ffh
here: djnz r1,here
djnz r0,here1
ret
Tag :
pulse generator
Clock pulse generator circuit using microcontroller 8051
It is very important circuit used in electronics. It can be used in various digital devices. I have completed this circuit using microcontroller. We just have to write program either in assembly language or in C. Then after generating hex file, it is loaded into microcontroller.
I have simulated this circuit on proteus. We can also control the rate of pulse. It is very simple and easy to implement. After implementing we can check the generated pulse on CRO.
We can generate pulse through complete port or through a single pin. It is very simple to generate. It can be generated just by setting or resseting a single pin after a time interval simultaneously.
Tag :
pulse generator