Homematic Geräte tauchen nicht bei den integrationen auf #1549
Replies: 4 comments 2 replies
-
In der |
Beta Was this translation helpful? Give feedback.
-
Ne, da kommt nix. Wenn es korrekt implementiert ist sollten die Geräte in HA unter Einstellungen > Entitäten auftauchen. Du kannst auch mal versuchen alle Strings (Hostname, User, Passwort usw.) in " " zu setzen. Siehe: EXAMPLE CONFIGURATION WITH MULTIPLE PROTOCOLS AND SOME OTHER OPTIONS SET |
Beta Was this translation helpful? Give feedback.
-
Hi, nachdem ich die Sicherheitseinstellungen auf Relaxed gesetzt habe findet er meine Geräte Hab aber keine Ahnung was für die Sicherheit des kompletten Systems bedeutet |
Beta Was this translation helpful? Give feedback.
-
Ah ja, die Firewall. Wird auch auf der oben verlinkten Seite erwähnt.
|
Beta Was this translation helpful? Give feedback.
-
Hallo, vieleicht kann mir jemand weiter helfen.
Ich versuche meine Homematic Komponenten im Home Assistant zu laufen zu bekommen. Bei der Installation bin ich nach folgender Berschreibung vorgegangen:
https://github.com/jens-maus/RaspberryMatic/wiki/Installation-HomeAssistant
RasperryMatic läuft und ist auch mit meinen Devices verbunden.
Die geräte tauchen aber im Home Assistant nirgens auf.
Ich vermute das es an den IP Addressen in der configuration.yaml liegt. In der ccu Oberfläche sehe ich keine IP. Ich kann nur einen Hostname setzen. Mir ist aber nicht klar ob der Docker Container über einen DHCP eine IP zugewiesen bekommt. Verwende ich diesen Hostnamen bekomme ich folgenden Fehler
Logger: homeassistant.setup
Source: components/homematic/init.py:253
First occurred: 21:17:25 (1 occurrences)
Last logged: 21:17:25
Error during setup of component homematic
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/pyhomematic/connection.py", line 76, in start
self._server.start()
AttributeError: 'HMConnection' object has no attribute '_server'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/setup.py", line 254, in _async_setup_component
result = await task
File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/src/homeassistant/homeassistant/components/homematic/init.py", line 253, in setup
homematic.start()
File "/usr/local/lib/python3.9/site-packages/pyhomematic/connection.py", line 82, in start
self._server.stop()
AttributeError: 'HMConnection' object has no attribute '_server'
So sieht meine Konfiguration aus
Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
Text to speech
tts:
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
homematic:
interfaces:
rf:
host: RaspiMatic
port: 2001
resolvenames: json
username: Admin
password: xxx
wired:
host: RaspiMatic
port: 2000
resolvenames: json
username: Admin
password: xxx
hmip:
host: RaspiMatic
port: 2010
resolvenames: json
username: Admin
password: xxx
groups:
host: RaspiMatic
port: 9292
resolvenames: json
username: Admin
password: xx
path: /groups
hosts:
raspberrymatic:
host: RaspiMatic
username: Admin
password: xxx
sensor:
sensors:
raspberrymatic_last_reboot:
value_template: "{{ state_attr('homematic.raspberrymatic', 'V_Last_Reboot') or '01.01.1970 00:00:00' }}"
icon_template: "mdi:clock"
entity_id: homematic.raspberrymatic
Beta Was this translation helpful? Give feedback.
All reactions