Itach integration not found

Hi,i am new to HA.
I am not able to find itach integration.Need help.

You have probably looked at the document page

One sets this up in yaml as a remote: integration using platform: itach

Which iTach do you have? Is it the IP2IR?

With the IP2SL I just use the telnet function to send the on/off commands to my projector through the iTach.

switch:
  - platform: telnet
    switches:
      projector:
        resource: ip address
        port: 4999
        command_on: "PWR ON\n"
        command_off: "PWR OFF\n"
        value_template: '{{ value == "PWR=01" }}'
        timeout: 1

Thanks got this working :+1:

I will try this solution as well.