Announcement

Collapse
No announcement yet.

LCD bug in beta 1.0.0.141

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    LCD bug in beta 1.0.0.141

    Found that after updating to the beta, my LCD was truncating at 19 characters. Comparing the old sketch against the new, I found that the following had changed:

    Code:
    #if ISIP == 1
            Udp.read();
            Available  = (Available - 9);
            for  (count = 1; count < Available  ; count++) {
              lcd.write(Udp.read());
            }
    to this in the beta:
    Code:
    #if ISIP == 1
            Udp.read();
            Available  = (Available - 10);
            for  (count = 1; count < Available  ; count++) {
              lcd.write(Udp.read());
            }
    Changing the -10 back to -9 resolved this for me.

    #2
    Good homework. Greig will appreciate that.

    There likely was a good reason for it to change. He's been doing work in the sketch for the nodeMCU board (which I really appreciate!). He will know the context and can adjust for what he was wanting to accomplish.

    Comment


      #3
      Yep this must have been left over from a test I was running. I will update it in the next build.

      Sent from my SM-G925F using Tapatalk
      Zwave = Z-Stick, 3xHSM100� 7xACT ZDM230, 1xEverspring SM103, 2xACT HomePro ZRP210.
      X10 = CM12U, 2xAM12, 1xAW10, 1 x TM13U, 1xMS13, 2xHR10, 2xSS13
      Other Hardware = ADI Ocelot + secu16, Global Cache GC100, RFXtrx433, 3 x Foscams.
      Plugings = RFXcom, ActiveBackup, Applied Digital Ocelot, BLDeviceMatrix, BLGarbage, BLLAN, Current Cost, Global Cache GC100,HSTouch Android, HSTouch Server, HSTouch Server Unlimited, NetCAM, PowerTrigger, SageWebcamXP, SqueezeBox, X10 CM11A/CM12U.
      Scripts =
      Various

      Comment


        #4
        This should be fixed in .142

        Greig.
        Zwave = Z-Stick, 3xHSM100� 7xACT ZDM230, 1xEverspring SM103, 2xACT HomePro ZRP210.
        X10 = CM12U, 2xAM12, 1xAW10, 1 x TM13U, 1xMS13, 2xHR10, 2xSS13
        Other Hardware = ADI Ocelot + secu16, Global Cache GC100, RFXtrx433, 3 x Foscams.
        Plugings = RFXcom, ActiveBackup, Applied Digital Ocelot, BLDeviceMatrix, BLGarbage, BLLAN, Current Cost, Global Cache GC100,HSTouch Android, HSTouch Server, HSTouch Server Unlimited, NetCAM, PowerTrigger, SageWebcamXP, SqueezeBox, X10 CM11A/CM12U.
        Scripts =
        Various

        Comment


          #5
          Confirmed, this is fixed in .142 release. Thank you!

          Comment

          Working...
          X