Hey guys
My DS18B20 sensor is blurring the 3 digits on the SSD1306 display
can anybody help me
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
			
			My DS18B20 sensor is blurring the 3 digits on the SSD1306 display
can anybody help me
			
				SSD1306:
			
		
		
		Log("Temperature = ", NumberFormat(celsius,0,2),"°C")
    'ssd.ClearDisplay
    ssd.GFX.SetCursor(15,18)
    ssd.GFX.ConfigureText(2,ssd.WHITE,False)
    'ssd.GFX.DrawText(NumberFormat(celsius,0,1))
    ssd.GFX.DrawText("T:").DrawText(NumberFormat(celsius,0,1))
    ssd.GFX.DrawText(" oC")
    ssd.Display