Homeseer status on Pronto
Moderator: hvxl
Homeseer status on Pronto
"Building" is a bit overdone i guess; just making use of what is being offered by the Pronto, in terms of functionality...and also don't forget the server-side (tenholde), without that you'd be lost anyhow.
Homeseer status on Pronto
I will update the layout and add the missing devices soon...

- Snelvuur
- Forum Moderator
- Posts: 3156
- Joined: Fri Apr 06, 2007 11:01 pm
- Location: Netherlands
- Contact:
Homeseer status on Pronto
A so below the "slaapkamer" there is a "playroom" and a "painroom" ?, thats why there greyed out? 
// Erik (binkey.nl)

// Erik (binkey.nl)
Homeseer status on Pronto
wrong mister kinkey...ahhh binkey...

Homeseer status on Pronto
The web page that provides the data from Homeseer is available at:
http://www.tenholder.net/tenWare/tenHsServer
This is an early beta release, with more functions to come. Let me know what is most important to you, and I'll try to get the additions there pretty quickly.
Your comments would be appreciated.
tenholde
http://www.tenholder.net/tenWare/tenHsServer
This is an early beta release, with more functions to come. Let me know what is most important to you, and I'll try to get the additions there pretty quickly.
Your comments would be appreciated.
tenholde
Homeseer status on Pronto
Tenhold added a new great function
With the fallowing command I can directly trigger the device C7 On/Off
http://192.168.1.100/ten6.aspx?t=22&f=ToggleDevice&d=c7
If the device is:
On it will go off
Off it will go on
also the status will be displayed
Test
C7 is on
C6 is off
http://192.168.1.100/ten6.aspx?t=22&f=T ... ce&d=c7.c6
after command
C7 is off
C6 is on
output
c7:3;c6:2;
With the fallowing command I can directly trigger the device C7 On/Off
http://192.168.1.100/ten6.aspx?t=22&f=ToggleDevice&d=c7
If the device is:
On it will go off
Off it will go on
also the status will be displayed
Test
C7 is on
C6 is off
http://192.168.1.100/ten6.aspx?t=22&f=T ... ce&d=c7.c6
after command
C7 is off
C6 is on
output
c7:3;c6:2;
Homeseer status on Pronto
So it's toggling time for me tonight...
)
BTW, i really like it, that with a bit of this and a bit of that we're able to let the Pronto talk to Homeseer... [8D]

BTW, i really like it, that with a bit of this and a bit of that we're able to let the Pronto talk to Homeseer... [8D]
Homeseer status on Pronto
Homeseer is not that bad...I know some great plugins that you can use...

Homeseer status on Pronto
Chak, the link to; http://www.tenholder.net/tenWare/tenHsServer
is not working. What are you using to connect to the Oregon sensors?
Do I need to install anything extra to get it working?
Thanks, Bastiaan
is not working. What are you using to connect to the Oregon sensors?
Do I need to install anything extra to get it working?
Thanks, Bastiaan
Homeseer status on Pronto
I'm still using the Tenserver
you have to just copy the aspx files on your homeseer server
http://www.tenholder.net/tenWare2/homeseer.aspx
Device control can also be done via Tenserver...but it's better and faster to use Prontonic plugin.
you can download this directly from Homeseer update.
There is also another more advanced version build by Barry Gorden
Look for his name on
http://www.remotecentral.com/cgi-bin/mb ... o/list.cgi
you have to just copy the aspx files on your homeseer server
http://www.tenholder.net/tenWare2/homeseer.aspx
Device control can also be done via Tenserver...but it's better and faster to use Prontonic plugin.
you can download this directly from Homeseer update.
There is also another more advanced version build by Barry Gorden
Look for his name on
http://www.remotecentral.com/cgi-bin/mb ... o/list.cgi
Homeseer status on Pronto
Yes I got the new tenHsServer, which comes with an installer. But I saw in our scripts a /rover/ directory, correct?
for the Oregon section, I changed the IP to my HS one but I am still figuring out how to deal with the other parts.
Yes for the device control I am using Protonic already, very easy but how do you do the toggle device? Write two separate events or do you have a smart script(je).
(really enjoying the Pronto and your config file
)
for the Oregon section, I changed the IP to my HS one but I am still figuring out how to deal with the other parts.
Yes for the device control I am using Protonic already, very easy but how do you do the toggle device? Write two separate events or do you have a smart script(je).
(really enjoying the Pronto and your config file

Homeseer status on Pronto
Rover is a PDA plugin...I don't use that method of getting the oregon info into pronto anymore.
Getting the info is very difficult this part is build in the pronto scripting.
go to the Main2 code you will see this.
var IP = "192.168.1.100"
var URL = "/tenHSServer/tenHSserver.aspx?t=33&f=DeviceValue&d=^31.^2.^4.^6.^7.^9.^10.^12.^13.^15.^16.^18.^19.^21.^22.^24.^25.^26.^28";
see the next message for device toggle.
Getting the info is very difficult this part is build in the pronto scripting.
go to the Main2 code you will see this.
var IP = "192.168.1.100"
var URL = "/tenHSServer/tenHSserver.aspx?t=33&f=DeviceValue&d=^31.^2.^4.^6.^7.^9.^10.^12.^13.^15.^16.^18.^19.^21.^22.^24.^25.^26.^28";
see the next message for device toggle.
Homeseer status on Pronto
Device Toggle in Homeseer events.
(This script is build by TenHolder)
Public Sub Main(ByVal Parms As String)
Dim i As Integer
i = hs.DeviceStatus(Parms)
Select Case i
Case 2
'' Device ON, turn it OFF
hs.ExecX10(Parms, "Off")
Case 3
'' Device OFF, turn it ON
hs.ExecX10(Parms, "On")
Case 4
'' Device DIM, turn it OFF
hs.ExecX10(Parms, "Off")
End Select
End Sub
[img]uploaded/Chak/2008727232123_hal-name.gif[/img]
[img]uploaded/Chak/2008727232156_Hal-trigger.gif[/img]
[img]uploaded/Chak/200872893045_ScreenShot001.gif[/img]
(This script is build by TenHolder)
Public Sub Main(ByVal Parms As String)
Dim i As Integer
i = hs.DeviceStatus(Parms)
Select Case i
Case 2
'' Device ON, turn it OFF
hs.ExecX10(Parms, "Off")
Case 3
'' Device OFF, turn it ON
hs.ExecX10(Parms, "On")
Case 4
'' Device DIM, turn it OFF
hs.ExecX10(Parms, "Off")
End Select
End Sub
[img]uploaded/Chak/2008727232123_hal-name.gif[/img]
[img]uploaded/Chak/2008727232156_Hal-trigger.gif[/img]
[img]uploaded/Chak/200872893045_ScreenShot001.gif[/img]
Homeseer status on Pronto
Thanks making big steps here. Just one last question for tonight; what do I use as parameters?
location? and/or device name/code?
For example when pressing the 'livingroom" button
location? and/or device name/code?
For example when pressing the 'livingroom" button