Embedded C program to display 0 to 9 on 7 segment display with Keil and Proteus combination

  Рет қаралды 101,065

a learning room

a learning room

Күн бұрын

Пікірлер: 44
@ajitsakri9888
@ajitsakri9888 3 жыл бұрын
Man he deserves more likes, this is the first time i'm enjoying doing 8051
@rajaramyadav7546
@rajaramyadav7546 3 жыл бұрын
It is with c programing Or 8051 microprocessor...???? 🙄🙄🤔🤔🤔
@ajitsakri9888
@ajitsakri9888 3 жыл бұрын
@@rajaramyadav7546 8051
@83_pimpri_vignesh_arumugam13
@83_pimpri_vignesh_arumugam13 4 жыл бұрын
Thankyou so much brother your video helped me to face 100 marks electronic practical s
@alearningroom
@alearningroom 4 жыл бұрын
Great 👍
@alllife924
@alllife924 4 жыл бұрын
Brother please help me l need your help please please bro
@alllife924
@alllife924 4 жыл бұрын
a learning room please help me brother l need your help
@naturilist5816
@naturilist5816 Жыл бұрын
Helping lecture appreciated 👍👍
@madesumathi1464
@madesumathi1464 Ай бұрын
Very nice and thank you sir
@royalboy850
@royalboy850 2 жыл бұрын
Microcontroller is hardest subject in cse all hardware subjects are complicated
@kaviyac8975
@kaviyac8975 3 жыл бұрын
Thank you 🙏🙏🙏
@LearnForFreeWithPNG
@LearnForFreeWithPNG 4 жыл бұрын
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-BNamrathaDeepthi
@VV-BNamrathaDeepthi 4 жыл бұрын
In keil programming you wrote i
@neilb5879
@neilb5879 3 жыл бұрын
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.
@neilb5879
@neilb5879 3 жыл бұрын
And bro remember f hz =1/t sec
@journeyelevatortechnology
@journeyelevatortechnology 4 жыл бұрын
Very nice
@brijusingh845
@brijusingh845 3 жыл бұрын
Hello sir.... Where I get seg[10]={0xc0,0xf9........} Data.... We have to remember this...???? Please reply?
@psraagul9601
@psraagul9601 10 ай бұрын
I can't able to find my (.hex) file.....How to find sir???Please help!
@bujjid4036
@bujjid4036 3 жыл бұрын
When we turn off the seven segment display what we write in program
@sahilbhambure5821
@sahilbhambure5821 4 жыл бұрын
How to write the same program in ALP?
@taralmehta593
@taralmehta593 4 жыл бұрын
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.
@mayanksharma6849
@mayanksharma6849 2 жыл бұрын
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-gu4my
@PallaviGangurde-gu4my 5 жыл бұрын
I want to do for bidirectional seven segment object counter. How can i do that?
@ayeshalatif8329
@ayeshalatif8329 4 жыл бұрын
Hi why we use 0xc0,0xf4 etc
@harshpatel1492
@harshpatel1492 6 жыл бұрын
nice one
@hasanmehedi6534
@hasanmehedi6534 6 жыл бұрын
Tnks sir
@Allariryan123
@Allariryan123 7 жыл бұрын
Very very tqq you sir
@alearningroom
@alearningroom 7 жыл бұрын
Thanks Guguloth Rosy
@alllife924
@alllife924 4 жыл бұрын
a learning room please sir l need your help to write the program that count only from 7 to 9
@onkarsugur1623
@onkarsugur1623 2 жыл бұрын
​@@alllife924so in unsigned seg put only that two no.
@runankaroy2687
@runankaroy2687 4 жыл бұрын
Who heard a baby crying in the background?
@krupalathapelluru4871
@krupalathapelluru4871 6 жыл бұрын
HI sir i am not able to install protues software.. could u please help me
@seshanandareddy6078
@seshanandareddy6078 6 жыл бұрын
send me text mail to ysnanda45@gmail.com. i will send link. Tq
@praveennegalurmath711
@praveennegalurmath711 5 жыл бұрын
Sir I think it is int x not char x
@selveshwaranramesh3204
@selveshwaranramesh3204 3 жыл бұрын
I want fron 99 to 00..how sir
@vinnu1322
@vinnu1322 7 жыл бұрын
Nice sir but we want to display 0 to 99 what we have to do
@alearningroom
@alearningroom 7 жыл бұрын
thanks Guriji
@seshanandareddy6078
@seshanandareddy6078 7 жыл бұрын
Thank you Guriji....
@the-rising-avocado
@the-rising-avocado 6 жыл бұрын
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
@pakpcbhouse
@pakpcbhouse 2 жыл бұрын
bhai dakhlay koi bachi rorahe ya raha hay
@bappibappi5882
@bappibappi5882 Жыл бұрын
Hi I contact u
16x2 LCD Embedded C program for 8051 with Keil and Proteus simulation
20:18
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 11 МЛН
8051 Interfacing with 7 Segment Display| LED Interfacing
6:33
Sonali deo
Рет қаралды 63 М.
LED blinking using Keil- 8051 Microcontroller Embedded C program
5:13
CircuitSimulations
Рет қаралды 52 М.
I Made The Ultimate Cheating Device
9:39
ChromaLock
Рет қаралды 1,9 МЛН
A Beginner's Guide to Microcontrollers
15:18
Electronic Wizard
Рет қаралды 52 М.
Datasheets: 16x2 LCD By Hand (No microcontroller)
26:35
Mitch Davis
Рет қаралды 112 М.
Lecture 41: Proteus Simulation  LED Blinking for 8051 microcontroller
12:24
Study Microcontrollers
Рет қаралды 45 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.