Man he deserves more likes, this is the first time i'm enjoying doing 8051
@rajaramyadav75463 жыл бұрын
It is with c programing Or 8051 microprocessor...???? 🙄🙄🤔🤔🤔
@ajitsakri98883 жыл бұрын
@@rajaramyadav7546 8051
@83_pimpri_vignesh_arumugam134 жыл бұрын
Thankyou so much brother your video helped me to face 100 marks electronic practical s
@alearningroom4 жыл бұрын
Great 👍
@alllife9244 жыл бұрын
Brother please help me l need your help please please bro
@alllife9244 жыл бұрын
a learning room please help me brother l need your help
@naturilist5816 Жыл бұрын
Helping lecture appreciated 👍👍
@madesumathi1464Ай бұрын
Very nice and thank you sir
@royalboy8502 жыл бұрын
Microcontroller is hardest subject in cse all hardware subjects are complicated
@kaviyac89753 жыл бұрын
Thank you 🙏🙏🙏
@LearnForFreeWithPNG4 жыл бұрын
Hi sir I am getting this error -> 7segment.c(8): error C141: syntax error near 'while', expected ';' for prog line -> while(1) I have typed same program. Unable to create hex file as well. I am using latest version of keil uvision and proteus 8.6
@VV-BNamrathaDeepthi4 жыл бұрын
In keil programming you wrote i
@neilb58793 жыл бұрын
That is the buffer he gave. You can consider it as frequency as well. 1sec = 1000 milisec, so like that, or else the numbers will flash super fast.
@neilb58793 жыл бұрын
And bro remember f hz =1/t sec
@journeyelevatortechnology4 жыл бұрын
Very nice
@brijusingh8453 жыл бұрын
Hello sir.... Where I get seg[10]={0xc0,0xf9........} Data.... We have to remember this...???? Please reply?
@psraagul960110 ай бұрын
I can't able to find my (.hex) file.....How to find sir???Please help!
@bujjid40363 жыл бұрын
When we turn off the seven segment display what we write in program
@sahilbhambure58214 жыл бұрын
How to write the same program in ALP?
@taralmehta5934 жыл бұрын
Hi, I'm Taral Mehta, I am trying to make one small project for my knowledge. I want some help from your side, I want to use an 8051 microcontroller with 2x seven segment display. I want to add three modes in that display by coding ,please help me in this part , I am stuck in it.
@mayanksharma68492 жыл бұрын
Hlw sir, I am making a project of flexible transmission line using TSR, 8051 microcontroller is used in it but I can't understand its coding part , can you please provide the code for that??
@PallaviGangurde-gu4my5 жыл бұрын
I want to do for bidirectional seven segment object counter. How can i do that?
@ayeshalatif83294 жыл бұрын
Hi why we use 0xc0,0xf4 etc
@harshpatel14926 жыл бұрын
nice one
@hasanmehedi65346 жыл бұрын
Tnks sir
@Allariryan1237 жыл бұрын
Very very tqq you sir
@alearningroom7 жыл бұрын
Thanks Guguloth Rosy
@alllife9244 жыл бұрын
a learning room please sir l need your help to write the program that count only from 7 to 9
@onkarsugur16232 жыл бұрын
@@alllife924so in unsigned seg put only that two no.
@runankaroy26874 жыл бұрын
Who heard a baby crying in the background?
@krupalathapelluru48716 жыл бұрын
HI sir i am not able to install protues software.. could u please help me
@seshanandareddy60786 жыл бұрын
send me text mail to ysnanda45@gmail.com. i will send link. Tq
@praveennegalurmath7115 жыл бұрын
Sir I think it is int x not char x
@selveshwaranramesh32043 жыл бұрын
I want fron 99 to 00..how sir
@vinnu13227 жыл бұрын
Nice sir but we want to display 0 to 99 what we have to do
@alearningroom7 жыл бұрын
thanks Guriji
@seshanandareddy60787 жыл бұрын
Thank you Guriji....
@the-rising-avocado6 жыл бұрын
here is code for 0-99 /* Main.c file generated by New Project wizard *By Dolen Sharma * Created: Sun Sep 4 2016 * Processor: AT89C51 * Compiler: Keil for 8051 */ #include #include void delay_timer(); void count_number(); unsigned char arr[10] = {0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x67}; // HEX FOR COMMON CATHODE21 void main(void) { P2 = 0x00; // OFF WHEN START SIMULATE P3 = 0x00; // OF WHEN START SIMULATE while (1) { count_number(); } } void delay_timer() // this function to create delay timer to our eyes can see numbers are displays { int i; TMOD = 0x01; for(i=0;i