Announcement

Collapse
No announcement yet.

ST813 Temp/Hum graphing

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

    ST813 Temp/Hum graphing

    Hi all

    Playing abit with graphing and wondered if anybody has some solution on creating a temperature graph and humidity graph from the Everspring ST813

    Currently it wakes up and sends data to HS but is there any way to feed it into virtual graphs and does anybody has a solution to do it ?

    Or is there other thermostats that is more suitable for this.

    Cheers!

    #2
    How is it currently showing in Homeseer?
    Jon

    Comment


      #3
      It gives a device update to the system log at least. This is for the humidity.

      2/12/2012 10:40:06 PM Device Update Device: 1 Etasje Bassengrom Luft Fuktighet Bassengrom value set to 41 (4100/%)

      can a event trigger on device update and pass it on to you graphing script ?

      Comment


        #4
        No, it cannot get information from the log, only from devices or via scripting.

        When you say device update, how is that done and what are you doing with the event trigger?
        Jon

        Comment


          #5
          THis scripting is new to me, but a minor little thing, how to get things divided by /100

          This here graphs it, but it outputs values as 1880 for 18.8 degrees celsius.

          Code:
          Sub Main
          Dim Parameters
          Dim MyData1
          MyData1 = hs.devicevalue("Q6")
          Parameters="1," & MyData1
          hs.runex "jon00vdGraphing.vben","Main",Parameters
          End Sub

          Comment


            #6
            If you have the device value stored in q6, all you need to do is add the following to your jon00vdgraphing.ini under the relevant graph entry:

            Data=$DV:q6

            To get the correct value, you also need to set:

            DivideValue=100

            If this is under [Graph1], you just need to run the script with the following optional parameters:

            ("Main","1")
            Jon

            Comment


              #7
              This solved it !

              Thanks alot!

              Comment

              Working...
              X