iTachWifi Plugin Created (for UI7)

Is this dead?

The GC100 plugin was recently modified to support UI7.

Thanks Richard!

Does anyone have this working with the ITach Flex Wired version ? Is there any reason why it shouldn’t ?

I’ve decided to install it just to see if it works, so added the iP and also checking the itach / API itself via the browser it reports the following .

[{"address":"irports/1","configuration":"connectors/1","type":"IRTriPortBlaster"}]

No errors etc seem to be reported?

Also how do you use use it I tried the address shared in an earlier thread but that does not seem to return anything ?

How are people using it?

Does anyone have the instructions on how to setup the ir codes in this add-in. I have it setup but don’t know the format for the ir codes and the webpages http://www.airedalez.net/?p=252 is not longer valid.

Cheers

Steve

I also have a ITach Flex WiFi and just like tinnytonk I want to know what format to use to enter the IR code in my scenes.
I am using the itachFlex plugin. Device properly configured and detected. Just stuck at the format of the IR codes. Should I be using the HEX format?
Does anyone have this running? Vera tech support will only help setup the device and didn’t give any guidance on the IR code procedures. I can get codes for my devices but none work using copy/past. I’m not sure if the codes need editing or not.

[quote=“JimMac, post:46, topic:187511”]I also have a ITach Flex WiFi and just like tinnytonk I want to know what format to use to enter the IR code in my scenes.
I am using the itachFlex plugin. Device properly configured and detected. Just stuck at the format of the IR codes. Should I be using the HEX format?
Does anyone have this running? Vera tech support will only help setup the device and didn’t give any guidance on the IR code procedures. I can get codes for my devices but none work using copy/past. I’m not sure if the codes need editing or not.[/quote]

I don’t understand why you would use the plug-in, at least in UI7. In UI5 you could add in IR codes via Vera menus, but I don’t like that functionality. Just use LUA in your scenes. Get a login to Global Cache’s Control Tower database to get the codes. Then just send the HEX in Lua. Some examples:

http://forum.micasaverde.com/index.php/topic,9357.0.html
http://forum.micasaverde.com/index.php/topic,35790.0.html

I’m using UI7 and I do have a Global Cache’s Control Tower login account. These are the codes I have been testing with no luck. Even tried to capture the codes from my remotes as well.
The plugin creates the device so I can enter the HEX codes in my scenes as per the attached pic. I will look at the Lua code to see if it is any easier.

[quote=“JimMac, post:48, topic:187511”]I’m using UI7 and I do have a Global Cache’s Control Tower login account. These are the codes I have been testing with no luck. Even tried to capture the codes from my remotes as well.
The plugin creates the device so I can enter the HEX codes in my scenes as per the attached pic. I will look at the Lua code to see if it is any easier.[/quote]

Could be as simple as needing to send the carriage return. This is a simple version of sending in Lua. Long-term write a function to make it even less complex…

local CommandtoSend

CommandtoSend= 'sendir,1:2,1,37000,1,1,128,63,16,16,16,48,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,48,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,48,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,48,16,48,16,48,16,48,16,48,16,16,16,16,16,16,16,48,16,48,16,48,16,48,16,48,16,16,16,48,16,2712,\r'

-- Connect and Send Command

local socket = require("socket")
host = "192.168.0.115" --IP2IR Living Room
c = assert(socket.connect(host, 4998))
c:settimeout(5)

local sres, serr = c:send(CommandtoSend)
print("Send:", sres, serr)
local data, rerr = c:receive(5)
print ("Receive:", data, rerr)

c:close()

Is there a way to input WB 02 into the ECU for logging or still the stock O2?

Hey guys
The instruction page is not available (http://www.airedalez.net/?p=252)
Can anyone help me how I can use iTach Flex with Vera (UI7)?

I also ordered the same device on amazon and always get the error “Startup Lua Failed”. I made sure that have correct IP address. I also did the test suggested earlier and below are the 2 lines corresponding to the device.

LuaInterface::CallFunction_Startup-1 device XX function lug_startup failed [string “…”]:27: attempt to index global ‘iTach’ (a nil value) <0x2b731680>
LuImplementation::StartLua running startup code for 17 I_iTachWifi.xml failed <0x2b731680>

I am relatively new to Vera and home automation, but have about 6 devices being controlled and working well. Any help is greatly appreciated (and desperately needed ??? )

Hi.

This might help: http://forum.micasaverde.com/index.php/topic,47918.0.html

I have installed the itach wifi app and added IP address and can now see the the 1blaster and 2 ir emitters connected with tri cable to my itach wifi as three seperate vera devices. Is some one able to guide me for the steps to configure sending of ir codes please?

Are these forums dead?

I would mess with these plugins they are old and quirky.

See the thread here on tips on how to send commands thorough itch products http://forum.micasaverde.com/index.php/topic,47918.0.html

[quote=“shallowearth”]I would mess with these plugins they are old and quirky.

See the thread here on tips on how to send commands thorough itch products http://forum.micasaverde.com/index.php/topic,47918.0.html[/quote]
I finally had some time I sit down and creat my scenes using the provided lua script and is I am now controlling denon receiver , LG tv, Panasonic air con and a roombie robot vacuum.
Thanks for the assistance