Menu

DS18B20-PAR Temperature Sensor With PIC16F18326 and SSD1306 GLCD

Help
Keith
2017-05-21
2017-05-26
<< < 1 2 (Page 2 of 2)
  • Anobium

    Anobium - 2017-05-26

    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)

     
<< < 1 2 (Page 2 of 2)

Log in to post a comment.

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.