Курсовая работа: Устройство управления системой измерения веса

case 3: return Dig3;

case 4: return Dig4;

case 5: return Dig5;

case 6: return Dig6;

case 7: return Dig7;

case 8: return Dig8;

default: return Dig9;

}

}

//== Convert 4 digits from BinBuf[] into SegBuf[] ============

void Bin2Seg_4Digit (void)

{

unsigned char i;

for(i=0;i<4;i++)

{

BufSeg[3-i] = Bin2Seg(BufBCD[i]);

}

}

//== Convert int value into 4 Digits of SegBuf[] ==============

void Bin2BCD_4Digit (unsigned int data)

{

unsigned char i;

for(i=0;i<4;i++)

{

BufBCD[i] = data % 10;

data /= 10;

}

}

//== Show the next Digit ================

К-во Просмотров: 523
Бесплатно скачать Курсовая работа: Устройство управления системой измерения веса