2020-04-13 16:09:25 +02:00

1.7 KiB

title, description, ha_category, ha_release, ha_iot_class, ha_domain
title description ha_category ha_release ha_iot_class ha_domain
Torque Instructions on how to integrate Torque sensors into Home Assistant.
Car
0.10 Cloud Polling torque

The torque platform will allow you to monitor Torque data relayed from a Bluetooth OBD2 stick via the Torque mobile application.

Setup

To use Torque sensors with your installation, you must configure both the Torque mobile application and Home Assistant.

Torque application

In Settings -> Data Logging & Upload:

Under the Logging Preferences header:

  • Touch Select what to log, activate the menu in the upper right, and select Add PID to log.
  • Select items of interest.

Under the Realtime Web Upload header:

  • Check Upload to web-server.
  • Enter http://HOST:PORT/api/torque?api_password=YOUR_PASSWORD as the Web-server URL, where HOST and PORT are your externally accessible Home Assistant HTTP host and port and YOUR_PASSWORD is your Home Assistant's API password. It highly recommended that you protect your Home Assistant instance with SSL/TSL.
  • Enter an email address in User Email Address.
  • Optionally set the Web Logging Interval. The 2-second default may quickly fill up the Home Assistant history database.

Configuration

Add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: torque
    email: your_configured@email.com

{% configuration %} name: description: Vehicle name (your choice). required: false default: vehicle type: string email: description: Email address configured in Torque application. required: true type: string {% endconfiguration %}