Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CR Nächste Version: Bearbeiten von geräteinternen Links (Taster-/Aktorkanal) über die WebUI ermöglichen #53

Closed
jp112sdl opened this issue Nov 22, 2021 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@jp112sdl
Copy link
Owner

Das Bearbeiten von Direktverknüpfungen innerhalb eines Geräts ist nur bei HmIP möglich.

Für BidCos-Geräte wird diese Funktion bis auf wenige Ausnahmen (Schaltmessaktoren) ganz und gar ausgeblendet.
Einzige Möglichkeit zum Erstellen/Bearbeiten interner Verknüpfungen besteht derzeit nur über externe Tools (DevConfig, Homematic Manager, ...)

Um die internen Links für bestimmte HB-Geräte bereitzustellen, ist an /www/config/ic_linkpeerlist.cgi:L321 anzufügen

        catch {
          set devType $sender_descr(PARENT_TYPE)
          if { 
           ([string equal -nocase "HB-LC-Sw1PBU-FM"       $devType] == 1) ||
           ([string equal -nocase "HB-LC-Sw2PBU-FM"       $devType] == 1) ||
           ([string equal -nocase "HB-LC-Bl1PBU-FM"       $devType] == 1) ||
           ([string equal -nocase "HB-LC-Sw2-FM"          $devType] == 1) ||
           ([string match -nocase "HB-UNI-SenAct-4-4-SC*" $devType] == 1) ||
           ([string match -nocase "HB-UNI-SenAct-8-8-SC*" $devType] == 1)
          } {
            #interne Tasten (InternalKeys) ausblenden, wenn Sender und Empfaenger die selbe Kanalnummer besitzen
            set sndCh [lindex [split $link(SENDER)   ":"] 1]
            set rcvCh [lindex [split $link(RECEIVER) ":"] 1]
            if { ($sndCh == $rcvCh) } {
              set internalLink  1
            } else {
              set internalLink  0
            }
            set hideBtnDelete 0
          }
        }
@jp112sdl jp112sdl added the enhancement New feature or request label Nov 22, 2021
@jp112sdl jp112sdl self-assigned this Nov 22, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant