Skip to content

Commit b43db1a

Browse files
alanfischerfabaff
authored andcommitted
Added itach documentation (home-assistant#2023)
1 parent 5131906 commit b43db1a

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
layout: page
3+
title: "iTach Remote"
4+
description: "Instructions on how to integrate a Global Caché iTach IP2IR gateway into Home Assistant."
5+
date: 2017-2-12 17:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: globalcache.png
11+
ha_category: Remote
12+
ha_iot_class: "Assumed State"
13+
---
14+
15+
16+
The `itach` remote platform allows you to control IR devices with a [Global Caché iTach Device](https://www.globalcache.com/products/itach/ip2irspecs)
17+
18+
To use your iTach remote in your installation, you will need to know the IR commands for your devices in Pronto hex format and add the following to your `configuration.yaml` file:
19+
20+
```yaml
21+
# Example configuration.yaml entry
22+
remote:
23+
- platform: itach
24+
name: Living Room
25+
host: itach023fdc
26+
devices:
27+
- name: TV
28+
connaddr: 2
29+
commands:
30+
- name: ON
31+
data: 0000 006D 0000 0022 00AC 00AC 0015 0040 0015 0040 0015 0040 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0040 0015 0040 0015 0040 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0040 0015 0015 0015 0015 0015 0040 0015 0040 0015 0015 0015 0015 0015 0040 0015 0015 0015 0040 0015 0040 0015 0015 0015 0015 0015 0040 0015 0040 0015 0015 0015 0689
32+
- name: OFF
33+
data: 0000 006D 0000 0022 00AC 00AC 0015 0040 0015 0040 0015 0040 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0040 0015 0040 0015 0040 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0015 0040 0015 0040 0015 0015 0015 0015 0015 0040 0015 0040 0015 0040 0015 0040 0015 0015 0015 0015 0015 0040 0015 0040 0015 0015 0015 0689
34+
```
35+
36+
Configuration variables:
37+
- **name** (*Required*): The iTach's name to display in the front end.
38+
- **host** (*Required*): The iTach's IP address.
39+
- **port** (*Optional*): The iTach's port. 4998 is default.
40+
- **devices** array (*Required*): Devices controlled by the iTach.
41+
- **name** (*Required*): Name of the device.
42+
- **modaddr** (*Optional*): iTach module address for the IR emitter. 1 is default.
43+
- **connaddr** (*Required*): iTach connection address for the IR emitter.
44+
- **commands** array (*Required*): Commands available to send to the device.
45+
- **name** (*Required*): Command name.
46+
- **data** (*Required*): Hex command data.
95.1 KB
Loading

0 commit comments

Comments
 (0)