Nobody can answer me ?
When I checked off "maintain constant connection", and push my button "sharpness" on my phone, I have a log information in Eventghost saying "commandfusion.connection lost".
But I never saw my command in the log...
Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
Search found 15 matches
- Fri Apr 04, 2014 9:03 am
- Forum: General Support
- Topic: CommandFusion: iPhone control with customizable interface
- Replies: 149
- Views: 72519
- Tue Apr 01, 2014 10:07 am
- Forum: General Support
- Topic: CommandFusion: iPhone control with customizable interface
- Replies: 149
- Views: 72519
Re: CommandFusion: iPhone control with customizable interfac
Hello,
I follow the instructions in this page and youtube tutorial but I still can't get my android phone communicates with eventghost on my computer.
First, are those 2 menus correct ?
(the ip adress of my computer is 192.168.1.12 and port 8020 chosen in Eventghost CommandFusion plugin ...
I follow the instructions in this page and youtube tutorial but I still can't get my android phone communicates with eventghost on my computer.
First, are those 2 menus correct ?
(the ip adress of my computer is 192.168.1.12 and port 8020 chosen in Eventghost CommandFusion plugin ...
- Wed Jan 29, 2014 7:26 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
EventGhost is a wonderful application ! So many possibilities 
- Wed Jan 29, 2014 7:23 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
I understood the error control was to debug, but not where was the correction ! :oops:
Now I see ! :mrgreen:
I get this answer :
Python Script
NET,0:1,UNLOCKED,STATIC,192.168.1.20,255.255.255.0,192.168.1.1
And the script with the IR command to power On my preamp :
import socket
from time ...
Now I see ! :mrgreen:
I get this answer :
Python Script
NET,0:1,UNLOCKED,STATIC,192.168.1.20,255.255.255.0,192.168.1.1
And the script with the IR command to power On my preamp :
import socket
from time ...
- Wed Jan 29, 2014 5:59 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
What was the problem by the way ?
The iTach IP2IR needs a delay to get the command ?
The iTach IP2IR needs a delay to get the command ?
- Wed Jan 29, 2014 5:54 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
I think it's good now !!!! :P :P :P :P :P
There was a mistake with the backslash of /r/n, it's not "/" we have to use but "\" !
I figured it out by reading the document Bruinlax give me first.
Now, the script is :
import socket
from time import sleep
import sys
sock = socket.socket(socket.AF ...
There was a mistake with the backslash of /r/n, it's not "/" we have to use but "\" !
I figured it out by reading the document Bruinlax give me first.
Now, the script is :
import socket
from time import sleep
import sys
sock = socket.socket(socket.AF ...
- Wed Jan 29, 2014 4:13 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
Still an error sent by the device :
Python Script
ERR_1:0,003
recv timed out, retry later
- Wed Jan 29, 2014 3:40 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
Ok, I think you forgot from time import sleep, I added it at the beginning.
Now, Eventghost gives me this as answer :
Python Script
ERR_0:0,003
recv timed out, retry later
Traceback (most recent call last):
Python script "54", line 20, in <module>
sys.exit(1)
NameError: name 'sys' is not ...
Now, Eventghost gives me this as answer :
Python Script
ERR_0:0,003
recv timed out, retry later
Traceback (most recent call last):
Python script "54", line 20, in <module>
sys.exit(1)
NameError: name 'sys' is not ...
- Wed Jan 29, 2014 2:19 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
Yes, it communicates.
This script :
import socket
from time import sleep
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
HOST = '192.168.1.20'
PORT = 4998
sock.connect((HOST, PORT))
sock.settimeout(2)
sock.sendall("getversion"+"/r")
while True:
try:
msg = sock.recv(4096)
except ...
This script :
import socket
from time import sleep
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
HOST = '192.168.1.20'
PORT = 4998
sock.connect((HOST, PORT))
sock.settimeout(2)
sock.sendall("getversion"+"/r")
while True:
try:
msg = sock.recv(4096)
except ...
- Wed Jan 29, 2014 1:50 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
I have changed the test script a bit, trying to read the response from the device, you can try and see if you receive anything at all...
Ok !
First, eventghost says it expects an incrementation line 34 (for "print msg"), I did it, then, there is a response this time :
Python Script
710-1001 ...
Ok !
First, eventghost says it expects an incrementation line 34 (for "print msg"), I did it, then, there is a response this time :
Python Script
710-1001 ...
- Wed Jan 29, 2014 1:34 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
Thanks for helping me !
I just tried /r only and it still does nothing.
There is a LED on the iTach which blinks when a command goes to the output and it never blinks with eventghost.
I tried your script too, with only getversion and Eventghost gives the answer "None"...
Looks like it can't ...
I just tried /r only and it still does nothing.
There is a LED on the iTach which blinks when a command goes to the output and it never blinks with eventghost.
I tried your script too, with only getversion and Eventghost gives the answer "None"...
Looks like it can't ...
- Wed Jan 29, 2014 8:31 am
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
I read it and I tried different things, and nothing more... :cry:
It's very odd because the command works with iTest, look :
http://imagizer.imageshack.us/v2/800x600q90/854/ybev.png
It's exactly the same command "sendir" for the GC100, but my python script doesn't work with the IP2IR, only on ...
It's very odd because the command works with iTest, look :
http://imagizer.imageshack.us/v2/800x600q90/854/ybev.png
It's exactly the same command "sendir" for the GC100, but my python script doesn't work with the IP2IR, only on ...
- Sun Jan 12, 2014 7:49 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
Ok, thanks a lot, I will try it ! 
- Wed Jan 08, 2014 6:48 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
Some news, the command works well with iTest, the same I use in Eventghost with the same IP adress and the same port...
Why my command doesn't reach my iTack IPtoIR ?
Why my command doesn't reach my iTack IPtoIR ?
- Tue Dec 24, 2013 5:55 pm
- Forum: General Support
- Topic: How to send Command to Global Cache iTech IPToIR
- Replies: 41
- Views: 24091
Re: How to send Command to Global Cache iTech IPToIR
Try this:
http://globalcache.zendesk.com/entries/371865-ip2ir-connection-issues
Try in your script to add +"\r\n" at the end of the string. Something like
s.sendall("sendir,1:1,1,38109,1,1,344,171,22,21,22,64,22,64,22,64,22,64,22,64,22,64,22,21,22,64,22,21,22,21,22,21,22,21,22,21,22,21,22,64 ...
http://globalcache.zendesk.com/entries/371865-ip2ir-connection-issues
Try in your script to add +"\r\n" at the end of the string. Something like
s.sendall("sendir,1:1,1,38109,1,1,344,171,22,21,22,64,22,64,22,64,22,64,22,64,22,64,22,21,22,64,22,21,22,21,22,21,22,21,22,21,22,21,22,64 ...