Ankündigung

Einklappen
Keine Ankündigung bisher.

Vorstellung meiner KNX Steuerung

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

    Vorstellung meiner KNX Steuerung

    Hallo zusammen,
    ich wollte man meine Steuerung vorstellen.
    Die nächsten Wochen wird alles verbaut. Alles per KNX.
    Die Wände sind verputzt. :-)

    Übersicht
    01.png

    Räume
    02.png

    z.B. das Wohnzimmer
    03.png

    Mediacenter.
    Wählt man z.B. während des Films Pause, wird der Film oder die Fernsehsendung pausiert und die Beleuchtung wird leicht angedimmt.
    Geht mann dann wieder auf Play, wird erst alles Licht ausgedimmt und dann geht der Film weiter.
    04.png

    Die Spezialfunktionen beim Fernsehen. Das meiste bediene ich mit der Logitech Harmony Ultimate.
    05.png


    Weckerfunktionen. Zwei verschiedene, einer für Wochentage und der andere für das WE
    06.png

    Einstellungen der Wecker
    07.png

    Bedienen kann man es auch vom Bett aus direkt per Taster.
    Einschlaffunktion
    Wecker scharf Schalten oder Wecker Abschalten um am nächsten Tag nicht geweckt zu werden.
    Oder einfach nur Musik abspielen.
    08.png


    Wetterstation.
    Die Daten lese ich von meiner Mysql Datenbank im Internet aus wo meine Daten liegen.
    09.png


    Zentralfunktionen. Kommt vielleicht als Panel an die Wohnungstüre.
    10.png


    Raumtemperaturen sollen per 1wireGate laufen. Kommt noch.
    11.png


    Alle wichtigen Media Funktionen.
    12.png
    13.png
    Angehängte Dateien

    #2
    Wow, Knaller. Das sieht nach viel Mühe und Liebe zum Detail aus. Glückwunsch.

    Steuerst du den ganzen Mediacenter Kram per http Binding? Und insbesondere den Sky Receiver?? Oder über den Harmony Hub...

    Gruss
    PhilW
    Google oder Wiki-Hilfe-Hinweise nehme ich nur an wenn sie mich total blamieren..... dann ertrage ich sie auch in Demut und Dankbarkeit;-)

    Kommentar


      #3
      Auch von mir sieht echt gut aus.
      Ein Frage wie hast du dass in der Sitemap gelöst in deiner Übersicht das dort nur die einzelnen Rubriken stehen und erst dann die Räume angezeigt werden.
      Ich bekomme das irgendwie nicht hin.

      Danke

      Gruss Maggi

      Kommentar


        #4
        Ausschnitt aus der sitemap:
        Code:
        Text label="Überschrift" {
        Switch item=MyItem1
        }
        erzeugt ein Item mit Unterseite, die geöffnet wird, wenn die "Überschrift" angeklickt wird Ich gehe davon aus, dass es im Fall der Übersichtsseite mit Frame {} kombiniert ist, wegen der Abstände zwischen den einzelnen Items.

        Kommentar


          #5
          Hi,
          den Mediacenter Kram läuft alles über Harmony Hub und Yamaha Binding.

          Teil von ITEM
          Code:
          Group All
          
          Group Wohnung     (All)
          Group Shutters     (All)
          Group Weather     (All)
          Group Status     (All)
          
          Group GF1_Wohnen             "Wohnzimmer"     <wohnen_2>         (Wohnung)
          Group GF1_Esszimmer          "Esszimmer"        <essen_1>        (Wohnung)
          Group GF1_Kueche             "Küche"         <kueche_1>         (Wohnung)
          Group GF1_Schlafen           "Schlafzimmer"     <schlafen_1>     (Wohnung)
          Group GF1_Bad                 "Bad"             <bad_1>         (Wohnung)
          Group GF1_WC                 "Gäste Bad"        <bad_1>         (Wohnung)
          Group GF1_Kind                "Kinderzimmer"     <kind_1>         (Wohnung)
          Group GF1_Office             "Büro"             <buero_1>         (Wohnung)
          Group GF1_Flur                 "Flur"             <flur_1>         (Wohnung)
          Group GF1_Dachterasse         "Dachterasse"     <terasse_1>     (Wohnung)
          
          /* active groups */
          Group:Switch:OR(ON, OFF)         Lights_wo         "Zentral Wohnen [(%d)]"             <light1>                    (All)
          Group:Switch:OR(ON, OFF)         Lights_es         "Zentral Esszimmer [(%d)]"         <light1>                    (All)
          Group:Switch:OR(ON, OFF)         Lights_ku         "Zentral Küche [(%d)]"                 <light1>                    (All)
          Group:Switch:OR(ON, OFF)         Lights_fl         "Zentral Flur [(%d)]"               <light1>                    (All)
          Group:Switch:OR(ON, OFF)         Steckd_media     "Zentral Media [(%d)]"             <musik>                    (All)
          Group:Switch:OR(ON, OFF)         Lights_bad_wc    "Zentral Bad/WC [(%d)]"           <light1>                    (All)
          
          
          Group:Switch:OR(ON, OFF)         Lights         "Alle Lichter [(%d)]"                                           <light1>                (All)
          Group:Switch:OR(ON, OFF)         Heating     "Aktive Heizungen [(%d)]"                                 <heating>             (All)
          Group:Number:AVG                 Temperature    "Mittlere Raumtemperatur [%.1f °C]"                <temperatur_1>    (Status)
          Group:Contact:OR(OPEN, CLOSED)     Windows     "Offene Fenster [(%d)]"                        <contact>             (All)
          Group:Number:AVG                 Temperature_s    "Mittlere Soll Raumtemperatur [%.1f °C]"      <setup_1>           (Status)

          Teil von Sitemap
          Code:
          sitemap MWS label="MWS OG"
          {
          
          //***********************************************************************************    
              //Frame label="Datum" {    
                  Text item=Date1    icon="kalender_1"
              //}    
          //***********************************************************************************
          
          
          
          //***********************************************************************************
              Frame label=" " {
                  Text label="Räume" icon="groundfloor" {
                           Group item=GF1_Wohnen                                      
                           Group item=GF1_Esszimmer                    
                           Group item=GF1_Kueche                    
                           Group item=GF1_Schlafen                        
                           Group item=GF1_Bad                        
                           Group item=GF1_WC                        
                           Group item=GF1_Kind                        
                           Group item=GF1_Office                    
                           Group item=GF1_Flur                    
                           Group item=GF1_Dachterasse                    
                  }        
              }
          //***********************************************************************************    
              
                  
              
          //***********************************************************************************
              Frame label=" " {
                  Text label="Media" icon="video" {
                                  
          //-----------------------------------------------------------------                              
                  
                      Switch item=Kino_version_auswahl mappings=[ 1="BluRay", 2="Sky", 3="AppleTV"]  
                        Switch item=Beamer_auswahl mappings=[ 1="Fernseher", 2="Beamer"]    
                        
                      //-------------------------------------
                          Switch item=Leinwand_Format  label="Format Auswahl "  visibility=[Leinwand_Format==100]  icon="rollershutter-0" mappings=[1="16:9", 2="21:9", 3="21:10"]
                          Switch item=Leinwand_Format  label="Format 16:9 "  visibility=[Leinwand_Format==1] icon="rollershutter-20"   mappings=[1="16:9", 2="21:9", 3="21:10"]
                          Switch item=Leinwand_Format  label="Format 21:9 "  visibility=[Leinwand_Format==2] icon="rollershutter-40"   mappings=[1="16:9", 2="21:9", 3="21:10"]
                          Switch item=Leinwand_Format  label="Format 20:10 "  visibility=[Leinwand_Format==3] icon="rollershutter-60"   mappings=[1="16:9", 2="21:9", 3="21:10"]    
                      //-------------------------------------              
                        
                        Text item=leer label=" "  
                          
                        //-------------------------------------  
                            Switch item=szene_01_wohnen  mappings=[ON="Szene 1"]
                             Switch item=szene_02_wohnen  mappings=[ON="Szene 2"]
                             Switch item=szene_03_wohnen  mappings=[ON="Szene 3"]
                             Switch item=szene_04_wohnen  mappings=[ON="Szene 4"]                    
                      //-------------------------------------
                      
                      Text item=leer label=" "
                                  
                      
                      
                      //-------------------------------------
                      Group item=BluRay visibility=[Kino_version_auswahl==1] label="BluRay"  icon="bluray" {
                        
                          //Text item=leer label="______________________________"
                          Switch item=Harmony_Activity mappings=["Blu Ray"='BluRay']                
                          Switch item=Harmony_Activity2 mappings=["Kino BluRay"='Kino BluRay']                
                          Switch item=HarmonyHub_BlueRay_Play mappings=['press:Panasonic-DVD-Player:Play'='Play']
                          Switch item=HarmonyHub_BlueRay_Pause mappings=['press:Panasonic-DVD-Player:Pause'='Pause']
                          Switch item=HarmonyHub_BlueRay_OK mappings=['press:Panasonic-DVD-Player:OK'='OK']                              
                      
                         Switch item=HarmonyHub_Sony_3D mappings=['press:Sony-Projektor:3D'='3D']
                         Switch item=HarmonyHub_Sony_Real mappings=['press:Sony-Projektor:RealityCreation'='RealityCreation']
                         Switch item=HarmonyHub_Sony_Motion mappings=['press:Sony-Projektor:MotionFlow'='MotionFlow']
                         Switch item=HarmonyHub_Sony_OK mappings=['press:Sony-Projektor:Select'='OK']
                         Switch item=HarmonyHub_Sony_Up mappings=['press:Sony-Projektor:DirectionUp'='Up']
                         Switch item=HarmonyHub_Sony_Down mappings=['press:Sony-Projektor:DirectionDown'='Down']
                         Switch item=HarmonyHub_Sony_Right mappings=['press:Sony-Projektor:DirectionRight'='Right']
                         Switch item=HarmonyHub_Sony_left mappings=['press:Sony-Projektor:DirectionLeft'='Left']            
                      }            
                      //-------------------------------------    
              
                  
              
              
                      //-------------------------------------
                      Group item=Sky label="Sky"  icon="television" visibility=[Kino_version_auswahl==2]{
                        
                          //Text item=leer label="______________________________"
                          Switch item=Harmony_Activity mappings=[Fernsehen='Sky']  
                          Switch item=Harmony_Activity2 mappings=["Kino Sky"='Kino Sky']                  
                          Switch item=HarmonyHub_Sky_Play mappings=['press:Pace-DVR:Play'='Play']
                          Switch item=HarmonyHub_Sky_Pause mappings=['press:Pace-DVR:Pause'='Pause']
                          Switch item=HarmonyHub_Sky_ChannelUp mappings=['press:Pace-DVR:ChannelUp'='CH+']
                          Switch item=HarmonyHub_Sky_ChannelDown mappings=['press:Pace-DVR:ChannelDown'='CH-']                                            
                      
                      
                         Switch item=HarmonyHub_Sony_3D mappings=['press:Sony-Projektor:3D'='3D']
                         Switch item=HarmonyHub_Sony_Real mappings=['press:Sony-Projektor:RealityCreation'='RealityCreation']
                         Switch item=HarmonyHub_Sony_Motion mappings=['press:Sony-Projektor:MotionFlow'='MotionFlow']
                         Switch item=HarmonyHub_Sony_OK mappings=['press:Sony-Projektor:Select'='OK']
                         Switch item=HarmonyHub_Sony_Up mappings=['press:Sony-Projektor:DirectionUp'='Up']
                         Switch item=HarmonyHub_Sony_Down mappings=['press:Sony-Projektor:DirectionDown'='Down']
                         Switch item=HarmonyHub_Sony_Right mappings=['press:Sony-Projektor:DirectionRight'='Right']
                         Switch item=HarmonyHub_Sony_left mappings=['press:Sony-Projektor:DirectionLeft'='Left']              
                      }                  
                      //-------------------------------------
              
                  
                  
                  
                      
                      //-------------------------------------
                      Group item=AppleTV label="AppleTV"  icon="appletv" visibility=[Kino_version_auswahl==3]{
                                                
                          //Text item=leer label="______________________________"
                          Switch item=Harmony_Activity mappings=["Apple TV 3"='AppleTV']
                          Switch item=Harmony_Activity2 mappings=["Kino Apple"='Kino Apple']              
                      
                      
                         Switch item=HarmonyHub_Sony_3D mappings=['press:Sony-Projektor:3D'='3D']
                         Switch item=HarmonyHub_Sony_Real mappings=['press:Sony-Projektor:RealityCreation'='RealityCreation']
                         Switch item=HarmonyHub_Sony_Motion mappings=['press:Sony-Projektor:MotionFlow'='MotionFlow']
                         Switch item=HarmonyHub_Sony_OK mappings=['press:Sony-Projektor:Select'='OK']
                         Switch item=HarmonyHub_Sony_Up mappings=['press:Sony-Projektor:DirectionUp'='Up']
                         Switch item=HarmonyHub_Sony_Down mappings=['press:Sony-Projektor:DirectionDown'='Down']
                         Switch item=HarmonyHub_Sony_Right mappings=['press:Sony-Projektor:DirectionRight'='Right']
                         Switch item=HarmonyHub_Sony_left mappings=['press:Sony-Projektor:DirectionLeft'='Left']              
                      }
                      //-------------------------------------
                                              
              }            
              }
          //***********************************************************************************    
                  
              
              
          //***********************************************************************************                
          //-----------------------------------------------------------------    
             Frame label="" {
               Text item=Weckerab icon="clock-on"{
               Frame {
                  //Text item=Date1
                  Text label="Wecker 1 [%s]" item=Wecker_1_aktiv icon="clock" {
                      Frame label="Zeit" {
                          Switch item=Wecker_1_aktiv icon="_1"
                          //Switch item=Wecker_2_aktiv icon="_1"
                          Switch item=Wecker_1_sleep icon="sleep" mappings=[ON="Sleep"]
                          //Switch item=Wecker_1_Status icon="wecker"
                          Setpoint item=wecker1ZeitStunde minValue=0 maxValue=23 step=1 icon="clock-on"
                          Setpoint item=wecker1ZeitMinute minValue=0 maxValue=55 step=5 icon="clock-on"
                          Setpoint item=wecker1laufzeit minValue=0 maxValue=55 step=1 icon="clock-on"
                          Text item=wecker1Restlaufzeit
                      }
                      Frame label="Wochentage" {
                          Switch item=wecker1Montag icon="clock"
                          Switch item=wecker1Dienstag icon="clock"
                          Switch item=wecker1Mittwoch icon="clock"
                          Switch item=wecker1Donnerstag icon="clock"
                          Switch item=wecker1Freitag icon="clock"
                          Switch item=wecker1Samstag icon="clock"
                          Switch item=wecker1Sonntag icon="clock"
                      }
                  }
          Zuletzt geändert von trexis5; 12.06.2016, 06:10.

          Kommentar


            #6
            Hi,

            coole Visu, Glückwunsch! Woher stammen denn die Icons?
            Kind regards,
            Yves

            Kommentar


              #7
              sehr Cool!!

              Kommentar


                #8
                Die habe ich selber gemacht.

                Kommentar


                  #9
                  HI,

                  welches Multiroom Audio Gerät verwendest du?

                  Kommentar


                    #10
                    Nur über den Yamahareceiver 2040.
                    Gesteuert über Yamaha Binding und KNX Steckdosen.
                    Tonübertragung über Ethernet-Cinch Kabel.

                    Kommentar


                      #11
                      Sehr nice, wollte ich auch wohl gerne so haben aber erstmal gibs eine Sparvariante und als Laie ist das vorerst sicherlich nicht so einfach umsetzbar. Vielleicht gibts du hier ja mal Hilfestellung und verwendete Hardware, Software etc. bekannt.


                      Gruß

                      Kommentar


                        #12
                        Achja, eins bereits vorweg, was sollte für solch eine Ansteuerung bei der Verkabelung beachtet werden?

                        Kommentar


                          #13
                          Hallo,
                          ja mache ich sobald alles eingebaut ist ich bin gerade am verdrahten der Räume .

                          Ich denke die einfachste Variante ist mit den unterputz Elektronik Dosen zu arbeiten .
                          Das Buskabel von Raum zu Raum ziehen, am besten zu jedem Lichtschalter, und dann ganz normal verkabeln .

                          Zur Not bekommt man auch relativ leicht zwei Unterputzaktoren in eine Elektronikdose .

                          Kommentar


                            #14
                            Mein neues Kino
                            Angehängte Dateien
                            Zuletzt geändert von trexis5; 16.06.2016, 14:51.

                            Kommentar


                              #15
                              Wie man sieht wurde das Chaos beseitigt
                              Zur Verkabelung: Dann habe ich ja alles richtig gemacht. Wir haben bei unserem EFH die Bauweise HRB und ich bin ziemlich durch mit der Verkabelung.
                              Welche Leinwand setzt du ein und wie steuerst du die an? Danke und Gruß

                              Kommentar

                              Lädt...
                              X