Okada
Banned
Hi Veketti
Can you post your MCP9808 code. I am making a code for the attached circuit. I will post the code after I complete it.
R10 should be 56 Ohms.
Try this code with my LCD Library. See if degree symbol prints on display.
Can you post your MCP9808 code. I am making a code for the attached circuit. I will post the code after I complete it.
R10 should be 56 Ohms.
Try this code with my LCD Library. See if degree symbol prints on display.
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 const char character[] = {6,9,9,6,0,0,0,0}; void CustomChar(char pos_row, char pos_char) { char j; I2C_LCD_Cmd(64); for (j = 0; j <= 7; j++) LCD_Chr_CP(character[i]); LCD_Cmd(_LCD_RETURN_HOME); LCD_Chr(pos_row, pos_char, 0); } CustomChar(1,1);