Announcement

Collapse
No announcement yet.

Is the outside temp field addressable

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

    Is the outside temp field addressable

    I have outside temperature being fed to HomeSeer through a serial port. Can I put this value in any sort of system variable that will have it display in the outside temp section of the RCS Serial plug-in?

    #2
    Here is a sample of how to set the outside temp display on your WDU.

    PHP Code:
    sub setoutside()
            
    dim RCS
            dim otemp
            set RCS
    =hs.plugin("RCS Serial Thermostats")
            
    otemp=cstr(hs.devicevalue("r2"))
     
            
    call RCS.cmdsendcustom(1,"OT=" otemp
    end sub 
    -Christopher
    PerfecTemp - the Most advanced HVAC system I've ever Built - and its in my House

    Comment

    Working...
    X