Skip to content

Bridge LIRC input events to Home Assistant via REST API

License

Notifications You must be signed in to change notification settings

crowbarz/lirc2hass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI

lirc2hass

Listen for input events detected by InputLIRC and generate events in Home Assistant. Primarily useful for triggering Home Assistant automations using Logitech Harmony remotes via an LIRC-compatible remote control.

The lirc2hass daemon generates Home Assistant events when input events are received from an IR receiver by InputLIRC. Home Assistant automations can be triggered by these events, which can then call any services available to Home Assistant, such as turning lights on and off, close blinds, etc.

It is the missing link that allows buttons on the Logitech Harmony remote to trigger any device that can be controlled by Home Assistant, where the Home Assistant server cannot be physically collocated with the Harmony Hub. (If it were, then the LIRC integration can be used with an IR blaster connected directly to the HA server.)

Installation

lirc2hass should run on most Linux installations (tested on Rasperry Pi OS) and requires the following:

  • an IR receiver that is supported by inputlirc and connected locally to the system
  • inputlirc package installed and configured on the underlying operating system to read and process input from the IR receiver

Install the latest release of this package via PyPi:

pip install lirc2hass

Run the daemon using lirc2hass hass_base_url -a , where hass_base_url is the base URL for your instance of Home Assistant.

systemd configuration

Configure systemd to start the daemon at boot by installing lirc2hass.service into /etc/systemd/system after editing to suit your installation.

If the daemon is run as a non-root user, ensure that user has the necessary privileges to read from the LIRC socket. On Debian-based systems, membership of group input is required to read the LIRC socket, located at /var/run/lirc/lircd.

Logitech Harmony configuration

  • Position IR receiver to reliably receive IR commands from Harmony (or mini-IR blaster)
  • In the myHarmony app, add a Windows MCE controller device to your setup
  • Include the device for each activity that will be sending commands using the Windows MCE controller
  • Configure buttons on the Harmony remote to send commands using the device

Home Assistant configuration

  • (optional) Add new Home Assistant admin user. An admin user is required to fire events on Home Assistant via the API
  • Create long-lived authorisation token for the admin user
  • When starting lirc2hass, pass the token using --hass-auth-token or --hass-auth-token-file options

Usage

lirc2hass [-h] [-w | --use-ws | --no-use-ws] [-a HASS_AUTH_TOKEN] [-A HASS_AUTH_TOKEN_FILE] [-l LIRC_SOCK_PATH] [-c MAX_RECONNECT_DELAY] [-r MIN_REPEAT_TIME_MS] [-v] [-V] hass_base_uri

Option Type/Default Description
hass_base_uri The URI for the Home Assistant REST API, or the Home Assistant websocket API if --use-ws is enabled. When using the websocket API, the URI should be in the form of ws:https://host:port or wss:https://host:port for an SSL connection
-w | --[no-]use-ws false Use Home Assistant websocket API instead of the REST API
-a | --hass-auth-token auth_token Enable sending of authorisation header, using auth_token as the token
-A | --hass-auth-token-file filename Read authorisation token from filename
-l | --lirc-sock-path /var/run/lirc/lircd Set path to LIRC socket
-c | --max-reconnect-delay 64 Set maximum reconnect delay for the LIRC socket. The daemon reconnects automatically on disconnection using an exponential backoff delay with this value as the maximum
-r | --min-repeat-time-ms 740 Ignore repeated keystrokes that are generated within the specified time (in ms)
-v | --verbose Set logging verbosity (repeat to increase)
-V | --version Show currently installed version

About

Bridge LIRC input events to Home Assistant via REST API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published