Skip to content

relay ncid calls to mqtt (home assistant)

Notifications You must be signed in to change notification settings

hairychris/ncid-mqtt-relay

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ncid-mqtt-relay

Requirements

  • NCIDD server running and connected to a modem or SIP.
  • MQTT server
  • Home Assistant (optional)

Installation

Using Docker:

docker run -e NCID_HOST=192.168.0.4 -e NCID_PORT=3333 -e MQTT_HOST=mqtt.example.com -e MQTT_PORT=1883 -e MQTT_TOPIC=/ncid/0800999999/ -e MQTT_USER=mqtt -e MQTT_PASSWORD=YOURPASSWORD hairychris2/ncid-mqtt-relay

Using Docker-Compose:

ncid-mqtt-relay:
    image: hairychris2/ncid-mqtt-relay
    environment:
        - NCID_HOST=192.168.0.4
        - NCID_PORT=3333
        - MQTT_HOST=mqtt.example.com
        - MQTT_PORT=1883
        - MQTT_TOPIC=/ncid/0800999999/
        - MQTT_USER=mqtt
        - MQTT_PASSWORD=YOURPASSWORD

Or you can go old school and run it on your machine:

    export NCID_HOST=192.168.0.4
    export NCID_PORT=3333
    export MQTT_HOST=mqtt.example.com
    export MQTT_PORT=1883
    export MQTT_TOPIC=/ncid/0800999999/
    export MQTT_USER=mqtt
    export MQTT_PASSWORD=YOURPASSWORD
    pipenv install -r requirements.txt
    pipenv run python3 src/ncid-relay.py

Usage

You can configure a sensor under Home Assistant, add this to configuration.yaml:

sensor:
  - platform: mqtt
    state_topic: "ncid/0800999999"
    value_template: "{{ value_json.name }} on {{ value_json.nmbr }}"

About

relay ncid calls to mqtt (home assistant)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 87.6%
  • Dockerfile 12.4%