
ferdies
Members-
Posts
250 -
Joined
-
Last visited
Everything posted by ferdies
-
Thanks for the reply. 1. The LED on the PLM is OFF even after I power cycled it 2. After the power cycle, I can access ISY without any error message but I could control any device and motion sensors are not working 3 My PLM is Dual Band 2413S Is the PLM dead?
-
Hi, I am getting this error message. What's the best way to isolate if my PLM is truly defective. Thanks.
-
Thanks for the reply. Yes, it is an RF controller. I am thinking of another option and maybe I have to validate it with logitech as well. 1. I have a Harmony Ultimate (http://reviews.cnet.com/remote-controls ... 63901.html) and it is currently linked to ISY as well. Thus, if I turn on any media device for entertainment, lights in ISY/IR are triggered by IR presses and respond accordingly. 2. Tried "adding" Proflame as a device in myharmony and it seemed not doable yet. 3. Or if the fireplace can be controlled by ISY, Harmony ultimate can control it via IR presses thru ISY. I know the setup is quite complicated so looking for some feedback on the best way to achieve it. END Result: I want to turn off fireplace when TV is turned off on or before midnight. Again, thanks.
-
Hi, I am using PROFLAME GTM SYSTEM to control my fireplace (as per this video - ). However, there are several instances that I have left it on and I would like to control it using ISY, thus if no one is home, the fireplace will shut off. Or if it night time, it be turn off as well. Attached also is setup document for reference - http://www.regency-fire.com/Files/Manua ... M-pdf.aspx Do you think this could be control by ISY? If so, what's the best way to do it? Thanks.
-
Hi, Is anyone successful in getting codes of of the remote control of Panasonic Viera while in ISY IR Learning Mode? Would you be able to share some info. I tried doing it and it seemed that I cannot get the correct codes and status. Appreciate it. Thanks.
-
You're welcome, Michel. Actually, you are right. I unticked EncodeURL and it is still working but will have it ticked just to be sure. I think the key here is thermostat's SCHEDULE is OFF.
-
YES, YES, YES. Please ignore python request. I have solved it! "Encode-URL" must be ticked and using RAW Text. "Schedule" in Venstar should be OFF. See below.
-
Latest Development from Venstar Support. Tried python the support rep sent and it worked. Schedule must be OFF ***** import urllib url = 'http://192.168.0.126/control' params = urllib.urlencode({ 'mode': 3, 'fan': 0, 'heattemp': 70, 'cooltemp': 78 }) data = urllib.urlopen(url, params).read() print data ****** However, ISY Networking Module is still not working. As an interim, I would like to call python from ISY Networking Module. Do you have any idea on how to call a python from ISY?
-
Thanks. I have sent an email to Venstar support. So hopefully it will yield positive results.
-
I had the same results. Are we already at a dead end here?
-
Hi Michel, I sent you an email with regard to your request. Please check your inbox. BTW, I upgraded to FW 4.1.2 and hoping Venstar API might potentially work but to no avail. Thanks.
-
Yes, Local API is set to ON.
-
Hi Michel, I have sent you an email. Thanks.
-
You've lost me here. When you said ASCII, you were referring to RAW Text, correct? If yes, I tried it as well and same issue, it did not change the thermostat settings. With regard to the attachment, I tried a pdf file but apparently I could add the file. Any other ways to send it over to you? Thanks.
-
Hi Michel, I believe so, as per Venstar API documentation: Control: This request enables remote control of ColorTouch over the network. This command is submitted via an HTTP POST and is URL encoded instead of JSON. Settings This request enables changing settings of ColorTouch over the network. This command is submitted via an HTTP POST and is URL encoded instead of JSON. Attached is the Control API document for your reference. Thanks
-
New development in my testing. "SETTINGS" command WORKS in python but it is NOT WORKING in ISY Networking.
-
Please do take note that REST or python script did not work only for "CONTROL" and "SETTINGS" commands. "QUERY" has not issue at all in REST or PYTHON. Thanks.
-
Yes, these are really different codes. The later was REST - from ISY to Venstar and the last one was to isolate the issue using a Linux machine and I utilized a python script. Both did not yield positive result.
-
Hi, I tried running a python script from a linux machine: ****** import urllib url = 'http://192.168.1.95/control' params = urllib.urlencode({ 'forceunocc': 1, }) data = urllib.urlopen(url, params).read() print ("Success") *** I got no error - script was executed until "print". Still, thermostart setting was not changed Any input from? Thanks.
-
That's correct, Michael. Although I got 200 OK - my thermostat setting did not change at all. So I am assuming that there was something wrong with the connection even it if was saying ok. I dont have any issue with http GET command. However, http POST command (either triggered by ISY or Vestar was not "accepting" the command) seemed to be the problem. Hope we can resolve this. Thanks.
-
Hi, I have recently upgraded my Venstar firmware to 3.10 with API v3. Doing the test now on how to control the temperature setting from ISY. As per documentation below, I have set network config as follows. I am just getting response like: HTTP/1.0 200 OK (However, temp settings were not changed by the program). Please let me know if I am doing it incorrectly. Thanks.
-
This is seemed to be stranged. Changing the timeout to 500 or 600 or 700 resulted to having no errors but phone is not ringing. However, having 800 or higher as timeout causes the network module error, as per earlier post. IP address, use name/passwd and other settings are the same. Only timeouts are being changed. Any thoughts? Thanks.
-
Hi Xathros, Timeout was increased to 2000ms but I got an error: Net Module Rule: 224 Does it mean for my earlier success was a fluke? Thanks.
-
Hi, I understand that there are some who are integrating ISY and Asterisk PBX. Any success so far? viewtopic.php?t=3990 has some info but a bit limited. What I am trying to accomplish is to ring my extension in case there is an alert (e.g. water sensor alert, ISY would then call the extension). My network module is attached but I am not getting a success in ringing any extensions. BTW, I am using a hosted PBX. It looks like I am getting a proper response from the attached but my extension seemed to be not ringing. Appreciate any assistance. Thanks.
-
Yes, I am actually referring i.InternetTest variable (which is being initialized to 0 every 30 minutes). Thus, resulting to execute "Else" statement CheckInternetTest as i.InternetTest changes to 0 in the Repeat Statement. Thanks.