Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 859 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 859 Bytes

GPSD Client for Home Assistant

This component will set up a sensor platform that contains the current location and time data from an external gpsd instance.

Installation

  1. Add https://github.com/nightcat91/ha-gpsd-client as a custom integration repository in HACS.
  2. Search in HACS for GPSD and install the GPSD Client and reboot Home Assistant afterwards
  3. Add at least the following to configuration.yaml :
sensor:
  - platform: gpsd_client
    name: GPSD Client

By default, the integration looks for GPSD on localhost on port 2947. If your gpsd server is on a different host, you must configure the the host and port:

sensor:
  - platform: gpsd_client
    name: GPSD Client
    host: remote-gpsd.example.com
    port: 12345