Anyone running multiple zone controllers with this plug-in?
Announcement
Collapse
No announcement yet.
Multiple Zone Controllers
Collapse
X
-
Multiple Zone Controllers
HS: 2.5.0.60
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: MLHSPlugin|RCS Serial Thermostat|UltraLog|UltraMon|
Misc: 303 Devices, 313 Events, 68+ Scripts
HSeer: 3.0.0.54
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: BLGData|BLRF|BLRadar|BLRandom|BLSpeech
UltraM1G3|UltraECM3|UltraMon3|UPBSpud|Z-Wave
Misc: 148 Devices, 116 Events, 9+ Scripts (so far, still converting)Tags: None
-
Originally posted by jstaab View PostAnyone running multiple zone controllers with this plug-in?
-
I THINK I finally got mine working, I have a ZCV4 and a ZCV6. I recently added the second controller. There are some occasional anomalies with the config screens and I also found it is best to restart the plug-in after each change. Now, with all that said, all the information in one string is a royal pain. Your only approach is to run a script once a minute to pull the information which is what I've been doing. Thus, you can set your own devices, or in the case of MainLobby, set variables in MainLobby.HS: 2.5.0.60
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: MLHSPlugin|RCS Serial Thermostat|UltraLog|UltraMon|
Misc: 303 Devices, 313 Events, 68+ Scripts
HSeer: 3.0.0.54
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: BLGData|BLRF|BLRadar|BLRandom|BLSpeech
UltraM1G3|UltraECM3|UltraMon3|UPBSpud|Z-Wave
Misc: 148 Devices, 116 Events, 9+ Scripts (so far, still converting)
Comment
-
Originally posted by jstaab View PostNow, with all that said, all the information in one string is a royal pain. Your only approach is to run a script once a minute to pull the information which is what I've been doing. Thus, you can set your own devices, or in the case of MainLobby, set variables in MainLobby.
Comment
-
Oops, sorry, I'm just now getting to this thread and I replied to the other thread. I think there are a couple of scripts posted which is what I sort of leached from and modified. Let me see if I can go track them down. I think one such script was on the other thread.HS: 2.5.0.60
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: MLHSPlugin|RCS Serial Thermostat|UltraLog|UltraMon|
Misc: 303 Devices, 313 Events, 68+ Scripts
HSeer: 3.0.0.54
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: BLGData|BLRF|BLRadar|BLRandom|BLSpeech
UltraM1G3|UltraECM3|UltraMon3|UPBSpud|Z-Wave
Misc: 148 Devices, 116 Events, 9+ Scripts (so far, still converting)
Comment
-
Mine are fairly custom. Below is a VERY basic script for just grabbing the temperatures and placing them in HS devices. The script at the link below, appears to quite a few of the settings. The problem is, it is for only one thermostat. Regardless, whatever script you use, it'll need tweaked for your environment, such as the specific housecodes your using, or if your trying to send them directly to MainLobby, and whether your using a zone controller or not, etc. Are you wanting to set them to HS devices, or send them directly to ML? Another challeng is incrementing and decrementing the temperature from ML without a huge delay on the screen update in ML.
http://board.homeseer.com/showthread...ghlight=script
===========
sub main()
dim rcs
set rcs=hs.plugin("RCS Serial Thermostats")
dim zone1
dim zone2
dim zone3
zone1=rcs.GetTemp(1)
zone2=rcs.GetTemp(2)
zone3=rcs.GetTemp(3)
'*********************************
'* Update Homeseer device values *
'*********************************
hs.setdevicevalue "^1",cint(Zone1)
hs.setdevicevalue "^8",cint(zone2)
hs.setdevicevalue "^15",cint(zone3)
'**********************************
'* Update Homeseer device strings *
'**********************************
hs.setdevicestring "^1",cstr(zone1)
hs.setdevicestring "^8",cstr(zone2)
hs.setdevicestring "^15",cstr(zone3)
end subHS: 2.5.0.60
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: MLHSPlugin|RCS Serial Thermostat|UltraLog|UltraMon|
Misc: 303 Devices, 313 Events, 68+ Scripts
HSeer: 3.0.0.54
Environment: Virtual XP as guest in VMWare Server running under Win 7
Plug-ins: BLGData|BLRF|BLRadar|BLRandom|BLSpeech
UltraM1G3|UltraECM3|UltraMon3|UPBSpud|Z-Wave
Misc: 148 Devices, 116 Events, 9+ Scripts (so far, still converting)
Comment
Comment