Home Assistant - Emulated Hue Port

Conor Calby

Dabbler
Joined
Jul 29, 2013
Messages
13
Hey All,

Looking for a bit of help please.
I am trying to get my Alexa to communicate with my Zigbee devices through Home Assistant.

The devices work fine with Home Assistant but I cannot seem to get an4
emulated Hue setup in HA.
My configuration.yaml is below.

I have set a static IP for the HA app to xxx.xxx.xxx.190 and can access the web GUI for HA through this (:8123)
It seems the port (80) doesn't open as I get "Connection Refused" when trying xxx.xxx.xxx.190:80/api/pi/lights

Code:
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

# Text to speech
tts:
  - platform: google_translate

group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
recorder:
  purge_keep_days: 30
  commit_interval: 3
  db_url: "postgresql://home-assistant:QgnMw5Y90Kv6vK8yOcwMLBJQQvLxa4DoNHDuy6K7KxJcJsN3yp@home-assistant-postgresql:5432/home-assistant?client_encoding=utf8"
http:
  use_x_forwarded_for: true
  trusted_proxies:
    - 172.16.0.0/16

# Amazon Echo example configuration.yaml entry
emulated_hue:
  type: alexa
  host_ip: 192.168.1.100
  listen_port: 80
  # Amazon Echo/Alexa stopped working on different ports. Search for "Philips Hue Bridge V1 (round)" in the Alexa App to discover devices.
  off_maps_to_on_domains:
    - script
    - scene
  expose_by_default: true
  exposed_domains:
    - light
    - switch

1668882464296.png

1668882491755.png


Thanks :)
 
Top