자세히 해주시면 진짜 감사하곘습니다 . (함수의 기능 부가설명등)
void lcd_decimal(unsigned char b, unsigned int hex)
void LCD_4hex(unsigned int number)
void LCD_2hex(unsigned char number)
void LCD_decf2(float number)
void LCD_decf1(float number)
unsigned char BCD_increment(unsigned char number)
unsigned char BCD_decrement(unsigned char number)
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
ADMUX = 0x40;
ADCSRA = 0x85;
ADCSRA |= 0x40;
sum = sum >> 4;
소스를 봐야 자세히 알수있습니다만... (추정하겠습니다. 약간의 힌트정도로만 참고하세요)
void lcd_decimal(unsigned char b, unsigned int hex)
LCD에 16진데이타를 10진수로 출력하는데 ( b가 자리를 지정하는것으로 추정 )
void LCD_4hex(unsigned int number)
LCD에 16진수 4자리 출력
void LCD_2hex(unsigned char number)
LCD에 16진수 2자리 출력
void LCD_decf2(float number)
LCD에 10진수 소숫점포함 출력 ?
void LCD_decf1(float number)
LCD에 10진수 소숫점포함 출력 ?
unsigned char BCD_increment(unsigned char number)
LCD에 BCD데이타 증가 출력
unsigned char BCD_decrement(unsigned char number)
LCD에 BCD데이타 감소 출력