Embedded C programming - 7 Segment Interfacing with Microcontroller

Embedded C programming - 7 Segment Interfacing with Microcontroller

Embedded Systems - Bolla

4 года назад

34,069 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@alhasanKhaled
@alhasanKhaled - 02.12.2023 18:50

thx

Ответить
@anokhautomation4453
@anokhautomation4453 - 19.07.2022 12:15

Nice useful tutorial 👍👍 thanks for your detailed explanation 🙏

Ответить
@shivshanhu389
@shivshanhu389 - 25.01.2022 13:25

Thanks Bolla.
your video helped me
.

Ответить
@sssrkumar9861
@sssrkumar9861 - 05.06.2021 09:45

Good bro u remind my college days

Ответить
@madnichishti6997
@madnichishti6997 - 01.06.2021 23:21

getting Error
COUNT.C(16): error C202: 'P2': undefined identifier
COUNT.C(25): error C202: 'dis2_cc': undefined identifier
COUNT.C(1): warning C318: can't open file 'REGX51.H'

Ответить
@in9408
@in9408 - 05.05.2021 06:20

how to do 0 to 35?

Ответить
@mohitarora8754
@mohitarora8754 - 23.01.2021 13:17

Nice explanation Sir, thank you

Ответить
@starshiva7088
@starshiva7088 - 25.11.2020 17:06

A small change need to be done in the code. If not the result will be 00 after 09, 10 after 19, so on..(we will observe it in your video too if we watch it clearly)
so to get the result correctly write the for loop in the code like this (a little upside down in the for loop code part).
.
.
for(loop=0;loop<100;loop++)

{
loop2=loop/10;
disp1_cc=0;
disp2_cc=1;
segment=nums[loop2];

dely(20);

loop2=loop%10;
disp1_cc=1;
disp2_cc=0;
segment=nums[loop2];

dely(20);
}

.
.

Ответить