Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test Adapter doorio v2.1.2

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Test Adapter doorio v2.1.2

    This topic has been deleted. Only users with topic management privileges can see it.
    • R
      RayJayVaughan @Thomas Braun last edited by

      @thomas-braun

      pi@raspberrypi:/etc/systemd/system $ ls -la /etc/systemd/system/doorcam.service
      -rwxrwxrwx 1 root root 267 Mai 31 17:05 /etc/systemd/system/doorcam.service
      
      
      Thomas Braun 2 Replies Last reply Reply Quote 0
      • Thomas Braun
        Thomas Braun Most Active @RayJayVaughan last edited by Thomas Braun

        @rayjayvaughan

        sudo apt update 
        sudo apt install acl
        
        1 Reply Last reply Reply Quote 0
        • Thomas Braun
          Thomas Braun Most Active @RayJayVaughan last edited by

          @rayjayvaughan sagte in Test Adapter doorio v2.0.1:

          -rwxrwxrwx

          Wie kommst du eigentlich an die Rechte?
          Ein touch in dem Verzeichnis legt neue Dateien mit

          -rw-r--r-- 1 root root
          

          an.

          R 1 Reply Last reply Reply Quote 0
          • R
            RayJayVaughan @Thomas Braun last edited by

            @thomas-braun

            Rootrechte waren mein letzter Versuch 😉 ich wollte die mit chmod wieder beschneiden wenn es läuft.

            Acl hab ich jetzt installiert.

            Thomas Braun 1 Reply Last reply Reply Quote 0
            • Thomas Braun
              Thomas Braun Most Active @RayJayVaughan last edited by

              @rayjayvaughan
              Dann muss jetzt

              getfacl /etc/systemd/system/doorcam.service
              

              was liefern.

              R 1 Reply Last reply Reply Quote 0
              • R
                RayJayVaughan @Thomas Braun last edited by

                @thomas-braun

                pi@raspberrypi:~ $ getfacl /etc/systemd/system/doorcam.service
                getfacl: Entferne führende '/' von absoluten Pfadnamen
                # file: etc/systemd/system/doorcam.service
                # owner: root
                # group: root
                user::rwx
                group::rwx
                other::rwx
                
                Thomas Braun 1 Reply Last reply Reply Quote 0
                • Thomas Braun
                  Thomas Braun Most Active @RayJayVaughan last edited by

                  @rayjayvaughan

                  In deiner doorcam.sh ist auch ein Typo drin:

                  #!/bin/sh
                  export LD_LIBRARY_PATH=/urs/local/bin
                  

                  Soll bestimmt

                  #!/bin/sh
                  export LD_LIBRARY_PATH=/usr/local/bin
                  

                  heißen.

                  R 1 Reply Last reply Reply Quote 0
                  • R
                    RayJayVaughan @Thomas Braun last edited by

                    @thomas-braun

                    ...den Typo habe ich korrigiert. Den daemon reloaded, den Service gestoppt, gestartet, gebootet....

                    pi@raspberrypi:~ $ sudo systemctl status doorcam.service
                    ● doorcam.service - doorcam
                       Loaded: loaded (/etc/systemd/system/doorcam.service; disabled; vendor preset: enabled)
                       Active: inactive (dead)
                    
                    Jun 01 09:15:05 raspberrypi systemd[1]: Started doorcam.
                    Jun 01 09:15:05 raspberrypi systemd[1]: doorcam.service: Succeeded.
                    Jun 01 09:16:37 raspberrypi systemd[1]: Started doorcam.
                    Jun 01 09:16:37 raspberrypi systemd[1]: doorcam.service: Succeeded.
                    Jun 01 09:16:41 raspberrypi systemd[1]: Started doorcam.
                    Jun 01 09:16:41 raspberrypi systemd[1]: doorcam.service: Succeeded.
                    Jun 01 09:16:43 raspberrypi systemd[1]: Started doorcam.
                    Jun 01 09:16:43 raspberrypi systemd[1]: doorcam.service: Succeeded.
                    Jun 01 09:23:46 raspberrypi systemd[1]: Started doorcam.
                    Jun 01 09:23:46 raspberrypi systemd[1]: doorcam.service: Succeeded.
                    
                    
                    

                    ...aber leider hat das nichts geändert. Der streamer startet nicht.

                    Wal 1 Reply Last reply Reply Quote 0
                    • Wal
                      Wal Developer @RayJayVaughan last edited by Wal

                      @rayjayvaughan,
                      falls du RPI OS nutzt, funktioniert das mit dem User in der doorcam.service nicht mehr.
                      Du mußt das so machen wie auf Seite 25 mit dem baresip.service von mir beschrieben, halt nur mit der doorcam.service.

                      Autostart als User einrichten:

                      sudo loginctl enable-linger pi
                      
                      mkdir -p ~/.config/systemd/user/
                      nano ~/.config/systemd/user/baresip.service
                      

                      das einfügen:

                      [Unit]
                      Description=baresip
                      
                      [Service]
                      ExecStart=/usr/local/bin/baresip -4 -f /home/pi/.baresip
                      
                      [Install]
                      WantedBy=default.target
                      

                      aktivieren und reboot:

                      systemctl --user daemon-reload
                      systemctl --user enable baresip.service
                      sudo reboot
                      
                      R 2 Replies Last reply Reply Quote 0
                      • R
                        RayJayVaughan @Wal last edited by

                        @wal

                        Bislang habe ich mit Deinem Image gearbeitet. Ich werde jetzt aber noch einmal alles neu auf aktuellem RPi OS aufsetzen und dann so einzurichten, denn ich scheine mich im Kreis zu drehen. Danke für Euren Support.

                        1 Reply Last reply Reply Quote 0
                        • R
                          RayJayVaughan @Wal last edited by

                          @wal

                          Ich habe jetzt bei beiden Installationen (aktuelles Rpi OS und Dein Image) obiges angewandt und nun funktioniert es einwandfrei 🙂 Vielen Dank nochmals.

                          1 Reply Last reply Reply Quote 1
                          • D
                            DH1FR last edited by DH1FR

                            Hallo Zusammen,

                            zunächst mal vielen Dank für das Modul doorio! Ich benutze das schon seit ein paar Monaten und es funktioniert super!
                            Jetzt möchte ich aber über meine Türklingel mehrere Telefone, aber nicht alle, klingeln lassen. Geht das irgendwie? Ich benutze eine Fritzbox mit Fritz!Fon DECT Telefonen. Ein Telefon geht problemlos, zwei nicht. Wenn ich eine zweite Nummer bei 1b eintrage klingelt immer nur das Erste auf 1a.

                            Für Tipps wäre ich dankbar.

                            Gruß

                            Ralf

                            Wal 1 Reply Last reply Reply Quote 0
                            • Wal
                              Wal Developer @DH1FR last edited by

                              @dh1fr ,
                              das musst du in der Fritzbox mit Gruppenruf machen.
                              Gruppenruf

                              D 1 Reply Last reply Reply Quote 0
                              • D
                                DH1FR @Wal last edited by

                                @wal Danke, so geht es 😊
                                Gruß Ralf

                                Axel Koeneke 1 Reply Last reply Reply Quote 0
                                • Axel Koeneke
                                  Axel Koeneke @DH1FR last edited by

                                  Sehr interessanter Adapter!
                                  Schön wäre es wenn es so etwas auch ohne Pi geben würde. Ein ESP32 wäre doch dafür bestimmt auch geeignet, oder? Ich habe z.B. das hier gefunden: https://olimex.wordpress.com/2019/08/23/esp32-adf-based-sip-phone-looks-really-cool-with-littlevgl/
                                  Wenn man das noch damit kombinieren könnte: https://home-assistant-guide.com/2020/10/08/building-a-video-doorbell-using-an-esp32-cam-with-esphome/
                                  Hätte man eine kleine und güntige Alternative.
                                  Leider übersteigt das meine Fähigkeiten das für iOBroker umzusetzten.
                                  VG
                                  Axel

                                  Wal 1 Reply Last reply Reply Quote 0
                                  • Wal
                                    Wal Developer @Axel Koeneke last edited by

                                    @axel-koeneke ,
                                    du brauchst kein RPI, aber es funktioniert nur auf Hardware die von Baresip unterstützt wird.

                                    1 Reply Last reply Reply Quote 0
                                    • Axel Koeneke
                                      Axel Koeneke last edited by

                                      @wal sagte in Test Adapter doorio v2.0.1:

                                      Baresip

                                      Also so etwas in der Art...: https://github.com/sreimers/esp32-baresip

                                      Wal 1 Reply Last reply Reply Quote 0
                                      • Wal
                                        Wal Developer @Axel Koeneke last edited by

                                        @axel-koeneke ,
                                        das wird nicht funktionieren, da man das Teil nicht mit Websocket (ctrl_tcp) fernsteuern kann.

                                        Axel Koeneke 1 Reply Last reply Reply Quote 0
                                        • Axel Koeneke
                                          Axel Koeneke @Wal last edited by

                                          @wal Schade, Preis Leitung ist ja unschlagbar. Wäre in Pi Zero dafür auch geeignet?
                                          VG
                                          Axel

                                          Wal 1 Reply Last reply Reply Quote 0
                                          • Wal
                                            Wal Developer @Axel Koeneke last edited by

                                            @axel-koeneke ,
                                            das kann ich dir nicht beantworten, da ich keinen PI Zero habe.
                                            Es muss Baresip mit dem ctrl_tcp Plugin laufen, dann geht das.

                                            D 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            579
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            door intercom doorpi türsprechstelle
                                            34
                                            583
                                            118710
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo