DS18B20-PAR Temperature Sensor With PIC16F18326 and SSD1306 GLCD
2017-05-21
2017-05-26
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Use the method. Break the string handler into no more than two concats.
GLCDPrint(46, 30, str(Whole) + "." + str(dig) + "'C " )
to
OutString = str(Whole) + "."
OutString = OutString + str(dig) 'however OutString = OutString + str(dig)+"C " may work
OutString = OutString + "C "
str(val)+" "+str(val2).
to
OutString = str(val)+" "
OutString = OutString+str(val2)
My offerings thus far: