LaCrosse Jeelink Sensors

Hi,
i changed from Iobroker to HA and have problems with my LaCrosse sensors.
I have added them like decribed in the manual. I get out the ID. And i get three entities.
sensor.bad_humidity
sensor.bad_lacrosse_battery
sensor.bad_temperature

But i dont get a Device. How can i get a Device from these three entities?
Until now I get from every integration a device which i can ad to the dashboard. But not from lacrosse.
it is right? i am realy confused about that but i am new in HA.

my configuration.yaml
`

sensor:

  • platform: command_line
    name: CPU Temperature
    command: “cat /sys/class/thermal/thermal_zone0/temp”
    unit_of_measurement: “°C”
    value_template: “{{ value | multiply(0.001) | round(1) }}”
    scan_interval: 10
  • platform: lacrosse
    device: /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AI03DA2L-if00-port0
    baud: 57600
    led: true
    sensors:
    bad_humidity:
    name: bad Humidity
    type: humidity
    id: 63
    bad_temperature:
    name: bad Temperature
    type: temperature
    id: 63
    bad_lacrosse_battery:
    name: bad Sensor Battery
    type: battery
    id: 63

`