Zigbee2mqtt

Das Modell mit 230V zum Deckeneinbau.

Er ist bewegungstechnisch quasi tot.
Reset, Neu Anlernen, Stromlos machen - alles fruchtlos.

Er meldet alles außer Bewegung. Auch nicht im Z2M log

Hat sich wohl überanstrengt :smile:

Mal sehen, ob ich den chinesischen Händler kontaktiere oder ihn gleich öffne und mal das Oszi dranhänge.

Ich habe noch ein nagelneues WiFi Modell hier liegen.Hätte also die Option, die ZigBee Schnittstelle von zum anderen Melder umlöten. Die ist ja autark auf einer eigenen modularen Platine.

Hi,
habe grade die USB Variante gekauft.
Der Bool Wert ändert sich bei mir auch nicht allerdings gibt es noch ein String der sich ändert.
Werte:non, motion, presence. Die Variable ist in Symcon allerdings erst in dem Betamodul sichtbar.
Vielleicht hilfts ja :wink:

Edit: im anderen Thread gesehen dass du damit ja vertraut bist

Nee, da ich mich schon eine ganze Weile mit der Thematik beschäftigt habe, weiß ich ganz gut, was hier passiert.
Das Teil lieferte ja alle Daten und stellte später nur den Bewegungsteil ein. Selbst wenn es in IPS nicht funktionieren würde, wäre der Log in Z2M ja da.
Ich hatte schon den Fehler bei einem Zwischenstecker, der nach einem Update klemmte. Da half ein Verändern der Werte in Details und er fing wieder an zu liefern.

Dieser Kandidat hier bietet aber leider kein Update oder eine Firmware an.

Somit kann ich nur die Hardware prüfen. Ich habe mal Elektroniker gelernt und besitze noch entsprechendes Messequipment.
Wenn ich das Device öffne, kann ich mit dem Oszilloskop mal reinhorchen. Ich hab ein Gegenstück zum Messvergleich.
Erst mal sehen, was der Händler sagt.

Aber trotzdem Danke für Dein Interesse.

Hallo,

habe den Zigbee heute an die Syno gesteckt, hab aber noch meine Probleme mit dem Pfad zum Intallieren im Docker.

Ausgeführt habe ich

Ich bekomme aber nicht heraus, wo der USB jetzt genau liegt, außer das er in Port 2- 4 steckt.



Der Stick müsste doch nun unter ttyACM0 zu finden sein? Was mache ich falsch?

Auch die Anleitung nach

geht nicht, da erhalte ich die Meldung

Aufgabe: usb support dsm7
Start: Wed, 13 Dec 2023 20:21:32 GMT
Ende: Wed, 13 Dec 2023 20:21:33 GMT
Aktueller Status: 1 (Unterbrochen)
Standardausgabe/Fehler:
chmod: cannot access ‚/dev/ttyUSB0‘: No such file or directory
chmod: cannot access ‚/dev/ttyACM0‘: No such file or directory

Stick habe ich mehrmals ein/-ausgesteckt

Nach 3 Stunden probieren, ich bekomme es leider nicht hin.

Hier https://github.com/robertklep/dsm7-usb-serial-drivers/tree/main/modules/avoton

ich die Treiber heruntergeladen und in /lib/modules sind sie zu sehen.

Jedoch funktioniert nichts.

Auch das Video habe ich mir angeschaut und Schritt für Schritt befolgt https://www.youtube.com/watch?v=A2WmzU8N-38

:fearful: :fearful: :fearful: :fearful: :fearful:

Moin,
die Syno haben Probleme ab dem OS V. 7. Da ist USB von Hause aus ja nicht integriert und auf zigbee2mqtt.io gibt es den Hinweis, dass das OS7 nicht jeden Stick mag.

Wäre also gut, wenn Du uns sagen könntest, welchen Chip der Stick hat und welches OS (Disk Station Manager version) Du nutzt.

LG
Burkhard

Hallo,

das die Syno den USB-Port nicht freigibt habe ich schon mitbekommen und genau das wird auch das Problem sein, jedoch dachte ich, dass man dies umgehen kann, gerade der Sonoff Stick sollte doch freizuschalten sein, zumindest laut Anleitungen die man findet.

DSM 7.1.1, Chip vom Stick CP210X, es ist die Plus-Variante.

Habe schon die CP210X.ko für DSM 7.1 unter Lib/Modules eingefügt.

Moin,

schaue mal bitte, ob Dir dies weiterhilft. Dort wird der gleiche Stick genutzt, den Du auch hast. Bis auf die Installation von HomeAssistent sollte es eigentlich klappen:

Running Home Assistant with Zigbee2MQTT on Synology NAS in containers | Jan-V.nl

LG
Burkhard

Hi,

  1. Hast Du den Treiber auch gestartet? So gehe ich immer vor:
Installation

NB: the following steps will require SSH access and administrator rights. For the latter, either use sudo for each command or use su to log in as root.

    The kernel modules for each supported platform can be found in modules/. Copy the required files to your Synology and move them to /lib/modules
    To get DSM 7 to load the modules at boot time, copy the included file usb-serial-drivers.sh to /usr/local/etc/rc.d
    Make sure that the file has executable permissions: chmod +x /usr/local/etc/rc.d/usb-serial-drivers.sh

You don't need to reboot your NAS for the modules to load, just execute the script after you completed the previous steps:

# /usr/local/etc/rc.d/usb-serial-drivers.sh start
  1. Ich benutze aus Faulheit den privilegierten Modus vom Docker-Image in der Container Station und dann sind eigentlich alle neueren Sticks /dev/USB0.

Ralf

Das habe ich gemacht

Inhalt:

#!/bin/sh
case $1 in
start)
insmod /lib/modules/usbserial.ko > /dev/null 2>&1
insmod /lib/modules/ftdi_sio.ko > /dev/null 2>&1
insmod /lib/modules/cp210x.ko > /dev/null 2>&1
insmod /lib/modules/ch341.ko > /dev/null 2>&1
insmod /lib/modules/ch343.ko > /dev/null 2>&1

;;

stop)
exit 0
;;
*)
exit 1
;;
esac

Mit Docker bin ich noch nicht soweit, da ich den Pfad zum Stick noch nicht habe. Ohne richtigen Pfad stürzt mir der Docker immer ab.

Die bin ich auch schon durchgegangen, aber leider ohne Erfolg.

Das Image im Docker brauche ich vorher ja nicht erstellen, wenn die Syno den USB-Stick noch nucht freigibt?

Die configurations.yaml ist sicherlich falsch, da fehlt mir auch echt die Ahnung, wie das richtig sein muss. Bin für jegliche Hilfe echt dankbar.

# Home Assistant integration (MQTT discovery)
homeassistant: false

# allow new devices to join
permit_join: true

# MQTT settings
mqtt:
  # MQTT base topic for zigbee2mqtt MQTT messages
  base_topic: zigbee2mqtt
  # MQTT server URL
  server: 'mqtt://192.168.178.140:1883'
  # MQTT server authentication, uncomment if required:
   user: meinbenutzer
   password: meinpasswort

    network_mode: bridge
    volumes:
      - ./data:/app/data
      - /run/udev:/run/udev:ro
 ports:
      # Frontend port
      - 8020:8020

# Serial settings
serial:
  # Location of CC2531 USB sniffer
  #port: /dev/ttyACM0
  #port: /dev/ttyUSB0
 devices:
      - /dev/ttyUSB0:/dev/ttyACM0

Log dich Mal direkt per SSH bei der DS an und schau da in /dev nach ob es USB0 gibt. Bei diesen sticks sollte es nicht ACM0 sein. Den Port musst du entweder zu docker weiterleiten oder das Image priorisiert laufen lassen.

Ralf Biedermann

Kein USB-0 vorhanden.


block            network_latency     ptybd  ptye6  ptyqf  ptyt8  ptyw1  ptyya   sda1  sg6        tty34  ttya5  ttyce  ttyp7  ttys0  ttyu5  ttywe  ttyz7
bsg              network_throughput  ptybe  ptye7  ptyr0  ptyt9  ptyw2  ptyyb   sda2  sg7        tty35  ttya6  ttycf  ttyp8  ttyS0  ttyu6  ttywf  ttyz8
btrfs-control    null                ptybf  ptye8  ptyr1  ptyta  ptyw3  ptyyc   sda5  sg8        tty36  ttya7  ttyd0  ttyp9  ttys1  ttyu7  ttyx0  ttyz9
bus              oldmem              ptyc0  ptye9  ptyr2  ptytb  ptyw4  ptyyd   sdb   shm        tty37  ttya8  ttyd1  ttypa  ttyS1  ttyu8  ttyx1  ttyza
char             port                ptyc1  ptyea  ptyr3  ptytc  ptyw5  ptyye   sdb1  snapshot   tty38  ttya9  ttyd2  ttypb  ttys2  ttyu9  ttyx2  ttyzb
console          ppp                 ptyc2  ptyeb  ptyr4  ptytd  ptyw6  ptyyf   sdb2  stderr     tty39  ttyaa  ttyd3  ttypc  ttyS2  ttyua  ttyx3  ttyzc
core             ptmx                ptyc3  ptyec  ptyr5  ptyte  ptyw7  ptyz0   sdb5  stdin      tty4   ttyab  ttyd4  ttypd  ttys3  ttyub  ttyx4  ttyzd
cpu              ptp0                ptyc4  ptyed  ptyr6  ptytf  ptyw8  ptyz1   sdb6  stdout     tty40  ttyac  ttyd5  ttype  ttyS3  ttyuc  ttyx5  ttyze
cpu_dma_latency  ptp1                ptyc5  ptyee  ptyr7  ptyu0  ptyw9  ptyz2   sdc   synobios   tty41  ttyad  ttyd6  ttypf  ttys4  ttyud  ttyx6  ttyzf
dm-0             ptp2                ptyc6  ptyef  ptyr8  ptyu1  ptywa  ptyz3   sdc1  synoboot   tty42  ttyae  ttyd7  ttyq0  ttys5  ttyue  ttyx7  urandom
dm-1             ptp3                ptyc7  ptyp0  ptyr9  ptyu2  ptywb  ptyz4   sdc2  synoboot1  tty43  ttyaf  ttyd8  ttyq1  ttys6  ttyuf  ttyx8  vcs
dm-2             pts                 ptyc8  ptyp1  ptyra  ptyu3  ptywc  ptyz5   sdc5  synoboot2  tty44  ttyb0  ttyd9  ttyq2  ttys7  ttyv0  ttyx9  vcs1
dm-3             ptya0               ptyc9  ptyp2  ptyrb  ptyu4  ptywd  ptyz6   sdc6  tty        tty45  ttyb1  ttyda  ttyq3  ttys8  ttyv1  ttyxa  vcs2
dm-4             ptya1               ptyca  ptyp3  ptyrc  ptyu5  ptywe  ptyz7   sdd   tty0       tty46  ttyb2  ttydb  ttyq4  ttys9  ttyv2  ttyxb  vcs3
dm-5             ptya2               ptycb  ptyp4  ptyrd  ptyu6  ptywf  ptyz8   sdd1  tty1       tty47  ttyb3  ttydc  ttyq5  ttysa  ttyv3  ttyxc  vcs4
fd               ptya3               ptycc  ptyp5  ptyre  ptyu7  ptyx0  ptyz9   sdd2  tty10      tty48  ttyb4  ttydd  ttyq6  ttysb  ttyv4  ttyxd  vcs5
full             ptya4               ptycd  ptyp6  ptyrf  ptyu8  ptyx1  ptyza   sdd5  tty11      tty49  ttyb5  ttyde  ttyq7  ttysc  ttyv5  ttyxe  vcs6
fuse             ptya5               ptyce  ptyp7  ptys0  ptyu9  ptyx2  ptyzb   sdd6  tty12      tty5   ttyb6  ttydf  ttyq8  ttysd  ttyv6  ttyxf  vcsa
i2c-0            ptya6               ptycf  ptyp8  ptys1  ptyua  ptyx3  ptyzc   sde   tty13      tty50  ttyb7  ttye0  ttyq9  ttyse  ttyv7  ttyy0  vcsa1
kmem             ptya7               ptyd0  ptyp9  ptys2  ptyub  ptyx4  ptyzd   sde1  tty14      tty51  ttyb8  ttye1  ttyqa  ttysf  ttyv8  ttyy1  vcsa2
kmsg             ptya8               ptyd1  ptypa  ptys3  ptyuc  ptyx5  ptyze   sde2  tty15      tty52  ttyb9  ttye2  ttyqb  ttyt0  ttyv9  ttyy2  vcsa3
log              ptya9               ptyd2  ptypb  ptys4  ptyud  ptyx6  ptyzf   sde5  tty16      tty53  ttyba  ttye3  ttyqc  ttyt1  ttyva  ttyy3  vcsa4
loop0            ptyaa               ptyd3  ptypc  ptys5  ptyue  ptyx7  ram0    sde6  tty17      tty54  ttybb  ttye4  ttyqd  ttyt2  ttyvb  ttyy4  vcsa5
loop1            ptyab               ptyd4  ptypd  ptys6  ptyuf  ptyx8  ram1    sdf   tty18      tty55  ttybc  ttye5  ttyqe  ttyt3  ttyvc  ttyy5  vcsa6
loop2            ptyac               ptyd5  ptype  ptys7  ptyv0  ptyx9  ram10   sdf1  tty19      tty56  ttybd  ttye6  ttyqf  ttyt4  ttyvd  ttyy6  vg1
loop3            ptyad               ptyd6  ptypf  ptys8  ptyv1  ptyxa  ram11   sdf2  tty2       tty57  ttybe  ttye7  ttyr0  ttyt5  ttyve  ttyy7  vg3
loop4            ptyae               ptyd7  ptyq0  ptys9  ptyv2  ptyxb  ram12   sdf5  tty20      tty58  ttybf  ttye8  ttyr1  ttyt6  ttyvf  ttyy8  vga_arbiter
loop5            ptyaf               ptyd8  ptyq1  ptysa  ptyv3  ptyxc  ram13   sdf6  tty21      tty59  ttyc0  ttye9  ttyr2  ttyt7  ttyw0  ttyy9  vhost-scsi
loop6            ptyb0               ptyd9  ptyq2  ptysb  ptyv4  ptyxd  ram14   sdg   tty22      tty6   ttyc1  ttyea  ttyr3  ttyt8  ttyw1  ttyya  zero
loop7            ptyb1               ptyda  ptyq3  ptysc  ptyv5  ptyxe  ram15   sdg1  tty23      tty60  ttyc2  ttyeb  ttyr4  ttyt9  ttyw2  ttyyb  zram0
loop-control     ptyb2               ptydb  ptyq4  ptysd  ptyv6  ptyxf  ram2    sdh   tty24      tty61  ttyc3  ttyec  ttyr5  ttyta  ttyw3  ttyyc  zram1
mapper           ptyb3               ptydc  ptyq5  ptyse  ptyv7  ptyy0  ram3    sdh1  tty25      tty62  ttyc4  ttyed  ttyr6  ttytb  ttyw4  ttyyd  zram2
mcelog           ptyb4               ptydd  ptyq6  ptysf  ptyv8  ptyy1  ram4    sdh2  tty26      tty63  ttyc5  ttyee  ttyr7  ttytc  ttyw5  ttyye  zram3
md0              ptyb5               ptyde  ptyq7  ptyt0  ptyv9  ptyy2  ram5    sdh3  tty27      tty7   ttyc6  ttyef  ttyr8  ttytd  ttyw6  ttyyf
md1              ptyb6               ptydf  ptyq8  ptyt1  ptyva  ptyy3  ram6    sdh5  tty28      tty8   ttyc7  ttyp0  ttyr9  ttyte  ttyw7  ttyz0
md2              ptyb7               ptye0  ptyq9  ptyt2  ptyvb  ptyy4  ram7    sg0   tty29      tty9   ttyc8  ttyp1  ttyra  ttytf  ttyw8  ttyz1
md3              ptyb8               ptye1  ptyqa  ptyt3  ptyvc  ptyy5  ram8    sg1   tty3       ttya0  ttyc9  ttyp2  ttyrb  ttyu0  ttyw9  ttyz2
md4              ptyb9               ptye2  ptyqb  ptyt4  ptyvd  ptyy6  ram9    sg2   tty30      ttya1  ttyca  ttyp3  ttyrc  ttyu1  ttywa  ttyz3
md6              ptyba               ptye3  ptyqc  ptyt5  ptyve  ptyy7  random  sg3   tty31      ttya2  ttycb  ttyp4  ttyrd  ttyu2  ttywb  ttyz4
mem              ptybb               ptye4  ptyqd  ptyt6  ptyvf  ptyy8  rtc0    sg4   tty32      ttya3  ttycc  ttyp5  ttyre  ttyu3  ttywc  ttyz5
net              ptybc               ptye5  ptyqe  ptyt7  ptyw0  ptyy9  sda     sg5   tty33      ttya4  ttycd  ttyp6  ttyrf  ttyu4  ttywd  ttyz6

Den Stick selber gibt es aber an Port 2-2

Muss ich den Stick flashen?

Prüfe Mal mit lsmod ob die Treiber überhaupt geladen sind.

Ralf Biedermann

root@ds1815:/dev# lsmod
Module                  Size  Used by
cdc_acm                17100  0
nfnetlink               3677  1
xfrm_user              22428  1
xfrm_algo               4424  1 xfrm_user
tun                    18868  2
bridge                 55020  0
stp                     1533  1 bridge
aufs                  185524  0
macvlan                 9000  0
veth                    4190  0
xt_conntrack            3035  1
xt_addrtype             2822  1
ipt_MASQUERADE          1695  10
xt_REDIRECT             1582  0
xt_nat                  1837  7
pptp                   13991  0
gre                     2414  1 pptp
ppp_deflate             3872  0
bsd_comp                4825  0
ppp_mppe                6702  0
xt_TCPMSS               3371  1
iptable_mangle          1432  1
pppox                   1586  1 pptp
ppp_async               6991  0
ppp_generic            17660  6 pptp,pppox,bsd_comp,ppp_mppe,ppp_async,ppp_deflate
slhc                    5619  1 ppp_generic
fuse                   79202  0
8021q                  16894  0
vhost_scsi             30031  1
vhost                  29145  1 vhost_scsi
tcm_loop               15215  1
iscsi_target_mod      279793  1
target_core_ep         58064  2
target_core_multi_file    36133  1
target_core_file       59312  1
target_core_iblock     23725  1
target_core_mod       932664  21 target_core_iblock,target_core_multi_file,vhost,iscsi_target_mod,target_core_ep,target_core_file,vhost_scsi,tcm_loop
syno_extent_pool     1390663  0
rodsp_ep               93853  3 target_core_multi_file,syno_extent_pool,target_core_file
ftdi_sio               37614  0
usbserial              22034  1 ftdi_sio
vfat                   10331  0
fat                    52726  1 vfat
udf                    82846  0
isofs                  33936  0
synoacl_vfs            19946  2
iptable_nat             2566  1
nf_nat_ipv4             3192  1 iptable_nat
nf_nat                 11670  5 ipt_MASQUERADE,nf_nat_ipv4,xt_nat,xt_REDIRECT,iptable_nat
raid0                  10331  1
raid456               101550  2
async_raid6_recov       1337  1 raid456
async_memcpy             894  1 raid456
async_pq                2212  1 raid456
async_xor               1409  2 async_pq,raid456
async_tx                1337  5 async_pq,raid456,async_xor,async_memcpy,async_raid6_recov
nf_conntrack_ipv6       6276  0
nf_defrag_ipv6         22313  1 nf_conntrack_ipv6
ip6table_filter         1308  1
ip6_tables             14770  1 ip6table_filter
xt_recent               8480  0
xt_iprange              1488  0
xt_limit                1807  5
xt_state                1221  0
xt_tcpudp               2287  30
xt_multiport            1670  0
xt_LOG                 11511  0
nf_conntrack_ipv4      11289  2
nf_defrag_ipv4          1187  1 nf_conntrack_ipv4
nf_conntrack           54669  8 ipt_MASQUERADE,nf_nat,xt_state,nf_nat_ipv4,xt_conntrack,iptable_nat,nf_conntrack_ipv4,nf_conntrack_ipv6
iptable_filter          1368  1
ip_tables              14051  3 iptable_filter,iptable_mangle,iptable_nat
x_tables               16363  18 ip6table_filter,xt_iprange,xt_recent,ip_tables,xt_tcpudp,ipt_MASQUERADE,xt_limit,xt_state,xt_conntrack,xt_LOG,xt_nat,xt_multiport,iptable_filter,xt_TCPMSS,xt_REDIRECT,iptable_mangle,ip6_tables,xt_addrtype
nfsd                  277378  133
btrfs                1124959  3 nfsd
zstd_decompress        65229  1 btrfs
ecryptfs               88924  1 btrfs
zstd_compress         153729  1 btrfs
xxhash                  4355  2 zstd_compress,zstd_decompress
raid6_pq               98452  4 async_pq,raid456,btrfs,async_raid6_recov
xor                    10808  2 btrfs,async_xor
lockd                  80204  1 nfsd
rpcsec_gss_krb5        26306  0
auth_rpcgss            47931  2 nfsd,rpcsec_gss_krb5
sunrpc                214202  17 nfsd,rpcsec_gss_krb5,auth_rpcgss,lockd
leds_lp3943             4466  0
aesni_intel            43981  0
glue_helper             4169  1 aesni_intel
lrw                     3317  1 aesni_intel
gf128mul                5670  1 lrw
ablk_helper             1756  1 aesni_intel
avoton_synobios        69767  0
hid_generic             1097  0
usbhid                 26071  0
hid                    80364  2 hid_generic,usbhid
usblp                  11100  0
usb_storage            47668  0
qede                  125813  0
qed                   848343  1 qede
mlx5_core             506670  0
mlx4_en               112776  0
mlx4_core             292521  1 mlx4_en
mlx_compat              6595  3 mlx4_en,mlx4_core,mlx5_core
atlantic_v2           179838  0
atlantic              171151  0
tn40xx                 32838  0
i40e                  344071  0
ixgbe                 276671  0
be2net                123383  0
i2c_algo_bit            5313  0
zram                    8274  4
igb                   182908  0
e1000e                178875  0
sg                     26527  0
dm_snapshot            27356  0
crc_itu_t               1307  3 udf,atlantic_v2,atlantic
crc_ccitt               1307  1 ppp_async
psnap                   1693  0
p8022                   1019  0
llc                     3441  4 stp,p8022,psnap,bridge
zlib_deflate           20604  2 btrfs,ppp_deflate
libcrc32c                914  0
hfsplus                95999  0
md4                     4337  0
hmac                    2769  0
sit                    14859  0
tunnel4                 2101  1 sit
ipv6                  307100  237 sit,rodsp_ep,nf_defrag_ipv6,nf_conntrack_ipv6
flashcache_syno       268448  2
flashcache             81324  0
syno_flashcache_control      943  2 flashcache_syno,flashcache
dm_mod                 72674  21 flashcache_syno,flashcache,dm_snapshot
crc32c_intel           14150  2
cryptd                  7115  2 aesni_intel,ablk_helper
arc4                    1880  0
sha256_generic         10148  0
sha1_generic            2374  0
ecb                     1889  0
aes_x86_64              7279  1 aesni_intel
authenc                 6348  0
des_generic            16339  0
ansi_cprng              3932  0
cts                     4182  0
md5                     3025  0
cbc                     2488  0
cpufreq_powersave        902  0
cpufreq_performance      906  4
acpi_cpufreq            6556  1
mperf                   1083  1 acpi_cpufreq
processor              30221  5 acpi_cpufreq
thermal_sys            18477  1 processor
cpufreq_stats           2961  0
freq_table              2452  2 cpufreq_stats,acpi_cpufreq
vxlan                  15721  0
ip_tunnel              11553  2 sit,vxlan
loop                   17544  0
etxhci_hcd             85643  0
xhci_hcd               85199  0
uhci_hcd               22510  0
ehci_pci                3640  0
ehci_hcd               40352  1 ehci_pci
usbcore               179491  12 etxhci_hcd,usblp,uhci_hcd,usb_storage,usbserial,ehci_hcd,ehci_pci,usbhid,ftdi_sio,cdc_acm,xhci_hcd
usb_common              1560  1 usbcore

Ich sehe die nötigen Treiber nicht hast du dein Shell Script auch die Rechte gegeben und einmal mit Parameter start aufgerufen?

Ralf Biedermann

Wenn du chmod +x /usr/local/etc/rc.d/usb-serial-drivers.sh meinst, dann ja.

Chmod 700?

Treiber habe ich die genommen

Was nicht funktioniert sind die Befehle wie

insmod /lib/modules/ch341.ko 
insmod /lib/modules/cp210x.ko

Hat das vielleicht etwas mit dem zu tun? Invalid Module Format?

Und usb-serial-drivers.sh start? Sonst brauchst du einen Neustart von dem damit die Treiber geladen werden.

Ralf Biedermann

@Brainpurge
Der Modul Thread zu Z2M ist für das Modul gedacht und nicht um Probleme mit deiner Syno zu lösen.
Ich habe es entsprechend hier mit einsortiert, das Thema wurde hier auch schon behandelt.
Michael

Ja sorry fürs zumüllen und danke fürs verschieben. Ich habe jetzt den USB0 geladen, immerhin einen Schritt weiter.

1 „Gefällt mir“

/dev/ttyACM0 gibt es jedoch nicht. Ist der wichtig oder reicht USB0?

bekomme den Docker leider nicht zum Laufen, wird immer wieder beendet.

Fehler im Protokoll

    at generateError (/app/node_modules/js-yaml/lib/loader.js:183:10)
    at throwError (/app/node_modules/js-yaml/lib/loader.js:187:9)

Jemand eine Idee?

Kann mir jemand mit der config.yaml helfen? Dcoker startet nun, aber ich komme in kein Frontend

permit_join: true
mqtt:
  server: 'mqtt://192.168.178.140:1883'
  user: meinbenutzer
  password: meinpasswort
serial:
  port: /dev/ttyUSB0
frontend: true
advanced:
  homeassistant_legacy_entity_attributes: false
  legacy_api: false
  legacy_availability_payload: false
device_options:
  legacy: false

PS: Habs hinbekommen, musste noch den Port 8080 im Docker freigeben.

Bin mir nur noch nicht sicher, ob der Adapter auch richtig geht, im Frontend zeigt es diesen nämlich nicht an.