algo no funciona correctamente

Post Reply
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: algo no funciona correctamente

Post by rimai »

I think you forgot to modify the file to celsius:

Code: Select all

    InternalMemory.HeaterTempOn_write(770);
    InternalMemory.HeaterTempOff_write(779);
    InternalMemory.ChillerTempOn_write(780);
    InternalMemory.ChillerTempOff_write(771);
Roberto.
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: algo no funciona correctamente

Post by rimai »

No. You can't use the decimal point.
Use this:

Code: Select all

    InternalMemory.HeaterTempOn_write(250);
    InternalMemory.HeaterTempOff_write(255);
    InternalMemory.ChillerTempOn_write(256);
    InternalMemory.ChillerTempOff_write(251);
Roberto.
Post Reply