Announcement

Collapse
No announcement yet.

HomeSeer Speaking on Startup

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

    HomeSeer Speaking on Startup

    I have a Google Home setup. When HS4 starts up is speaks Welcome to HomeSeer and says the port number. Is there a setting some where to turn this off?

    #2
    It's in Startup.vb in the scripts folder under the HS root.

    Code:
        ' Speak - comment the next line if you do not want HomeSeer to speak at startup.
        hs.Speak("Welcome to Home-Seer", True)
    
        ' speak the port the web server is running on
        Dim port As String = hs.GetINISetting("Settings", "gWebSvrPort", "")
        If port <> "80" Then
            hs.Speak("Web server port number is " & port)
        End If
    Delete this section, or comment the hs.Speak lines by inserting and apostrophe at the beginning of the line.

    Comment


      #3
      Originally posted by zwolfpack View Post
      It's in Startup.vb in the scripts folder under the HS root.

      Code:
      ' Speak - comment the next line if you do not want HomeSeer to speak at startup.
      hs.Speak("Welcome to Home-Seer", True)
      
      ' speak the port the web server is running on
      Dim port As String = hs.GetINISetting("Settings", "gWebSvrPort", "")
      If port <> "80" Then
      hs.Speak("Web server port number is " & port)
      End If
      Delete this section, or comment the hs.Speak lines by inserting and apostrophe at the beginning of the line.
      Cool Thanks

      Comment

      Working...
      X