Beginner need help: Nothing is showing up

Hey there,

just did my first steps with Home Assistant.

I use LCN devices. According to this


I did add the following to my configuration.yaml to get a first binary sensor

lcn:
connections:
- name: myhome
host: 192.168.255.xxx
port: 4114
username: xxx
password: xxx

binary_sensors:
- name: Kitchen window
address: myhome.s0.m7
source: binsensor1

Saved and restartet
But noting (no binary sensor) is showing up in Home Assistant. Need some help

Please format the YAML code correctly so we can read it properly. There should be a link at the top of the page that describes how to do this. This is extremely important because YAML is very sensitive to indentation, and without proper formatting there is no way for us to see it.

So, when you post, it should not look like this:

lcn:
connections:
- name: myhome

It should look like this:

lcn:
  connections:
    - name: myhome

You should be able to see the difference in the preview pane on the right when you’re posting.

Thanks!

Hi @Florian_Mk,
assuming all indentations are correct (it doesn’t look that way), the configuration seems to be correct.
Could you have a look at the logs if there are any errors? Are the platforms set up correctly?
Does the sensor show up in the list entities?
If all fails, could you please add the logger component to your configuration.yaml and post the LCN relevant results?

logger:
  default: error
  logs:
    homeassistant.components.lcn: debug
    pypck: debug

Thanks!