Announcement

Collapse
No announcement yet.

BLRadar Conversion for HS3

Collapse
This is a sticky topic.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    BLRadar Conversion for HS3

    When you load BLRadar in HS3 for the first time, you can convert your HS2 sensors and UDMC code to HS3.

    In the BLRadar for HS3, under the Tools menu there is an option to convert the sensor data. You will be prompted for the location of your HS2 hspi_BLRadar.ini and UDMC xml files

    The plugin will then convert them to HS3 and create all sensor devices in HS3 for you.
    Cheers,
    Bob
    Web site | Help Desk | Feature Requests | Message Board

    #2
    Radar ?

    Hi Bob,

    I have been tinkering with HS2 for a time now and just started using HS3 and the Touch Server, will the radar work on HS3 touch?
    Do you make any add-ins/add-ons for the touch side of homeseer?
    Thanks Joe.

    Comment


      #3
      Nothing special. HSTouch should show the status, string and value of the device.
      Cheers,
      Bob
      Web site | Help Desk | Feature Requests | Message Board

      Comment


        #4
        Question Pack Purchase

        Bob,

        do you have an all in one purchase package for all the addons?
        also do you do any custom addons?

        Joe

        Comment


          #5
          What do you mean by all in one package? There are no addons for BLRadar
          Cheers,
          Bob
          Web site | Help Desk | Feature Requests | Message Board

          Comment


            #6
            I am sorry... I didn't exactly know where to ask you this question.

            1) Do you have a package that includes all Blade Plugins not just radar.
            2) Do you ever do any custom addin's?

            Joe.

            Comment


              #7
              1. There is no package

              2. No addins, just plugins
              Cheers,
              Bob
              Web site | Help Desk | Feature Requests | Message Board

              Comment


                #8
                Sorry, I thought you might contract for a custom plugin I was looking for.
                Didn't mean to bother you.

                Have a good day.
                Joe.

                Comment


                  #9
                  Log a ticket on my web site and choose "New Plugin Idea"
                  Detail out what you are looking for and I will definitely have a look at it
                  Cheers,
                  Bob
                  Web site | Help Desk | Feature Requests | Message Board

                  Comment


                    #10
                    Need some help with HS2 conversion

                    In HS2 I placed a motion sensor in the car under the seat pointed at the petals and used the code below to determine if the car was parked at home or away.

                    I need some help in converting it to HS3.

                    The OLD code is below

                    If DateTime.Compare(Sensor.LastOff, Sensor.LastOn) > 0 AndAlso DateDiff(DateInterval.Minute, Sensor.LastOff, DateTime) > 5 Then

                    hs.SetDeviceString("v52", "On the road") hs.WriteLog("car debug", "Changing Amanda's Ford Escape status to on the road")

                    hs.SetDeviceLastChange("v52", DateTime.Now)

                    End



                    If If DateDiff(DateInterval.Minute, Sensor.LastOn, DateTime.Now) > 8 AndAlso DateTime.Compare(Sensor.LastOn, Sensor.LastOff) < 0 Then

                    hs.SetDeviceString("v52", "Parked") hs.WriteLog("car debug", "Changing Amanda's Ford Escape status to parked") hs.SetDeviceLastChange("v52", DateTime.Now)

                    End If



                    Thanks

                    Comment


                      #11
                      Try this and let me know if you get any errors

                      Code:
                      If DateTime.Compare(Sensor.LastOff, Sensor.LastOn) > 0 AndAlso DateDiff(DateInterval.Minute, Sensor.LastOff, DateTime) > 5 Then
                          hs.SetDeviceString("v52", "On the road")
                          hs.WriteLog("car debug", "Changing Amanda's Ford Escape status to on the road")
                          hs.SetDeviceLastChange("v52", DateTime.Now)
                      End
                      
                      If DateDiff(DateInterval.Minute, Sensor.LastOn, DateTime.Now) > 8 AndAlso DateTime.Compare(Sensor.LastOn, Sensor.LastOff) < 0 Then
                          hs.SetDeviceString("v52", "Parked")
                          hs.WriteLog("car debug", "Changing Amanda's Ford Escape status to parked")
                          hs.SetDeviceLastChange("v52", DateTime.Now)
                      End If
                      Cheers,
                      Bob
                      Web site | Help Desk | Feature Requests | Message Board

                      Comment


                        #12
                        Does all of the code go under the “on” section.

                        sorry for my stupid question, just trying to get a better understanding of the flow.

                        thanks

                        Comment


                          #13
                          If that is where it was in the HS2 then yes
                          Cheers,
                          Bob
                          Web site | Help Desk | Feature Requests | Message Board

                          Comment

                          Working...
                          X