Digital Thermometer
Digital Thermometer
Dallas 18B20
MikroC Code
/******************************************************\
*
www.electronicworkspace.com
*
Electronics for Everyone
*
Date: 06/09/2011
*
LED Blink with 16F877A
\******************************************************/
*
*
*
*
text[0] = '0';
text[1] = (temp_whole/10)%10 + 48; // Extract tens digit
text[2] = temp_whole%10 + 48;
// Extract ones digit
// Extract temp_fraction and convert it to unsigned int
temp_fraction = temp2write << (4-RES_SHIFT);
temp_fraction &= 0x000F;
temp_fraction *= 625;
// Convert temp_fraction to characters
text[4] = temp_fraction/1000 + 48; // Extract thousands digit
text[5] = (temp_fraction/100)%10 + 48;//Extract hundreds digit
text[6] = (temp_fraction/10)%10 + 48; / Extract tens digit
text[7] = temp_fraction%10 + 48; // Extract ones digit
// Print temperature on LCD
Lcd_Out(2, 5, text);
}
void main() {
ADCON1=0x06;
Lcd_Init();
// Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear LCD
Lcd_Cmd(_LCD_CURSOR_OFF);// Turn cursor off
Lcd_Out(1, 1, " Temperature: ");
// Print degree character, 'C' for Centigrades
Lcd_Chr(2,13,223);// Different LCD displays have different char code for degree
// If you see greek alpha letter try typing 178 instead of 223
Lcd_Chr(2,14,'C');
//Main loop
do {
//--- Perform temperature reading
Ow_Reset(&PORTE, 2);// Onewire reset signal
Ow_Write(&PORTE, 2, 0xCC);// Issue command SKIP_ROM
Ow_Write(&PORTE, 2, 0x44);// Issue command CONVERT_T
Delay_us(120);
Ow_Reset(&PORTE, 2);
Ow_Write(&PORTE, 2, 0xCC);// Issue command SKIP_ROM
Ow_Write(&PORTE, 2, 0xBE);// Issue command READ_SCRATCHPAD
temp = Ow_Read(&PORTE, 2);
temp = (Ow_Read(&PORTE, 2) << 8) + temp;
//--- Format and display result on Lcd
Display_Temperature(temp);
Delay_ms(500);
} while (1);
}