Skip to content
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Hardware
  4. SONOFF NSPanel mit Lovelace UI

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.1k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.1k

SONOFF NSPanel mit Lovelace UI

Geplant Angeheftet Gesperrt Verschoben Hardware
lovelace uinspanelsonoff
7.8k Beiträge 272 Kommentatoren 6.7m Aufrufe 254 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • T TT-Tom

    @danny_v1

    Sind nun leider schon ca 3000 Zeilen an Seiten zusammengekommen.

    respect 😉 , ein Tool gibt es meines Wissen nicht.

    zeige doch mal die ersten Seiten wo der Fehler angezeigt wird. Es können auch Komma fehlen.

    so sieht das Grundgerüst aus, das wirst du aber bei soviel code ja kennen.

    let Startseite: PageType = {
        type: 'cardGrid',
        heading: 'Überschrift',
        useColor: true,
        items: [ 
           { id:...... },
      ],
    };
    
    D Offline
    D Offline
    danny_v1
    schrieb am zuletzt editiert von danny_v1
    #6746

    @tt-tom

    So hier nun mein Fehlerhaftes Skript.

    //##### Navigation #####################################################################################
    
    let AlarmSeite: PageType =                                                    //Seite fertig
    {
        'type': 'cardAlarm',
        'heading': 'Alarmanlage',
        "subPage": false,
        'prev': 'NSPanel_Service',
        'next': 'Obergeschoss',
        'prevIcon': 'tools',
        'nextIcon': 'home-floor-1',
        'items': [
            /*PageItem*/{ id: 'alias.0.Alarm' }
            ]
    };
    
    let Obergeschoss: PageType =
    
    {
        "type": "cardGrid",
        "heading": "Obergeschoss",
        "useColor": true,
        "subPage": false,
        'prev': 'AlarmSeite',
        'next': 'Untergeschoss',
        'prevIcon': 'shield-alert',
        'nextIcon': 'home-floor-0',
        "items": [
                /*PageItem*/{ navigate: true, id: null, targetPage: "Wohnzimmer1", icon: "sofa-outline", onColor: White, name: "Wohnzimmer"},   
                /*PageItem*/{ navigate: true, id: null, targetPage: "Kinderzimmer_Ede", icon: "human-child", onColor: White, name: "Ede"},       
                /*PageItem*/{ navigate: true, id: null, targetPage: "Kinderzimmer_Edda", icon: "human-child", onColor: White, name: "Edda"},   
                /*PageItem*/{ navigate: true, id: null, targetPage: "Balkon", icon: "balcony", onColor: White, name: "Balkon"},                  
                /*PageItem*/{ navigate: true, id: null, targetPage: "Flur_OG", icon: "stairs", onColor: White, name: "Flur"}                  
        ]
    
    };
    
    let Untergeschoss: PageType =
    
    {
        "type": "cardGrid",
        "heading": "Untergeschoss",
        "useColor": true,
        "subPage": false,
        'prev': 'Obergeschoss',
        'next': 'Aussenbereich',
        'prevIcon': 'home-floor-1',
        'nextIcon': 'tree-outline',
        "items": [
                /*PageItem*/{ navigate: true, id: null, targetPage: "Kueche1", icon: "pot-steam", onColor: White, name: "Küche"},             
                /*PageItem*/{ navigate: true, id: null, targetPage: "Schlafzimmer", icon: "bed-king", onColor: White, name: "Schlafzimmer"}, 
                /*PageItem*/{ navigate: true, id: null, targetPage: "WC_EG", icon: "toilet", onColor: White, name: "WC"},                        
                /*PageItem*/{ navigate: true, id: null, targetPage: "Bad", icon: "bathtub", onColor: White, name: "Bad"},                     
                /*PageItem*/{ navigate: true, id: null, targetPage: "Flur_EG", icon: "stairs", onColor: White, name: "Flur"},                
                /*PageItem*/{ navigate: true, id: null, targetPage: "Abstellraum", icon: "washing-machine", onColor: White, name: "Abstellraum"}            
        ]
    
    };
    
    let Aussenbereich: PageType =
    
    {
        "type": "cardGrid",
        "heading": "Garten",
        "useColor": true,
        "subPage": false,
        'prev': 'Untergeschoss',
        'next': 'Abfall',
        'prevIcon': 'home-floor-0',
        'nextIcon': 'trash-can-outline',
        "items": [
                /*PageItem*/{ navigate: true, id: null, targetPage: "Hof", icon: "tree-outline", onColor: White, name: "Vorgarten"},       
                            { navigate: true, id: null, targetPage: "Garten", icon: "flower-tulip-outline", onColor: White, name: "Garten"}                                                                                                            //Garten einfügen
        ]
    
    };
    
    let Abfall: PageType =
    {
        "type": "cardEntities",
        "heading": "Abfallkalender",
        "useColor": true,
        "subPage": false,
        "parent": undefined,
        'prev': 'Aussenbereich',
        'next': 'Haus_Info',
        'home': undefined,
        "items": [
            /*PageItem*/{ id: "alias.0.Abfall.Event1", icon: 'trash-can'},
            /*PageItem*/{ id: "alias.0.Abfall.Event2", icon: 'trash-can'},
            /*PageItem*/{ id: "alias.0.Abfall.Event3", icon: 'trash-can'},
            /*PageItem*/{ id: "alias.0.Abfall.Event4", icon: 'trash-can'}
        ]
    };
    
    let Haus_Info: PageType =
    {
        "type": "cardEntities",
        "heading": "Info Seite",
        "useColor": true,
        "subPage": false,
        'prev': 'Abfall',
        'next': 'NSPanel_Service',
        'prevIcon': 'trash-can-outline',
        'nextIcon': 'tools',
        "items": [
             /*PageItem*/{ navigate: true, id: null, targetPage: 'Fenster_Info_1', icon: 'window-open-variant', offColor: Menu, onColor: Menu, prefixName:"Fenster offen ", name: "getState('0_userdata.0.Zaehlen.FensterTueren.FensterTueren').val", buttonText: 'mehr...'},
             /*PageItem*/{ navigate: true, id: null, targetPage: 'WLAN_Page', icon: 'wifi', name: "WLAN", buttonText: 'mehr...'}
        ]
    };
    
    
    //Level_0 (if service pages are used without cardUnlock)
    let NSPanel_Service: PageType =
    {
        'type': 'cardEntities',
        'heading': findLocaleServMenu('service_menu'),
        'useColor': true,
        'items': [
            /*PageItem*/{ navigate: true, id: 'NSPanel_Infos', icon: 'information-outline', offColor: Menu, onColor: Menu, name: findLocaleServMenu('infos'), buttonText: findLocaleServMenu('more')},
            /*PageItem*/{ navigate: true, id: 'NSPanel_Einstellungen', icon: 'monitor-edit', offColor: Menu, onColor: Menu, name: findLocaleServMenu('settings'), buttonText: findLocaleServMenu('more')},
            /*PageItem*/{ navigate: true, id: 'NSPanel_Firmware', icon: 'update', offColor: Menu, onColor: Menu, name: findLocaleServMenu('firmware'), buttonText: findLocaleServMenu('more')},
            /*PageItem*/{ id: AliasPath + 'Config.rebootNSPanel', name: findLocaleServMenu('reboot') ,icon: 'refresh', offColor: MSRed, onColor: MSGreen, buttonText: findLocaleServMenu('start')}
        ]
    };
    
    //##### Wohnzimmer #####################################################################################################################
    //##### Wohnzimmer #####################################################################################################################
    
                let Wohnzimmer1: PageType =
    
                {
                    "type": "cardGrid",
                    "heading": "Wohnzimmer 1",
                    "useColor": true,
                    "subPage": true,
                    "parent": Obergeschoss,
                    'next': 'Wohnzimmer2',
                    "items": [
                            /*PageItem*/{ navigate: true, id: 'alias.0.Wohnzimmer.Deckenlampe.Alle.Info.INFO', targetPage: "Deckenlampen_WZ", icon: "ceiling-light-multiple", offColor: Yellow, onColor: White, name: "Deckenlampen"},
                            /*PageItem*/{ navigate: true, id: null, targetPage: "Lampen_WZ", icon: "floor-lamp", onColor: White, name: "Lampen"},
                            /*PageItem*/{ navigate: true, id: null, targetPage: "Lampen2_WZ", icon: "floor-lamp", onColor: White, name: "Lampen sonstige"},
                            /*PageItem*/{ navigate: true, id: 'alias.0.Wohnzimmer.HeizungWZ.SET', targetPage: "Themostat_WZ", icon: "temperature-celsius", onColor: White, name: "Temperaturen"},
                            /*PageItem*/{ navigate: true, id: null, targetPage: "Status_WZ", icon: "state-machine", onColor: White, name: "Status"},
                            /*PageItem*/{ navigate: true, id: null, targetPage: "Alexa_WZ", icon: "music", onColor: White, name: "Alexa"}
                    ]
    
                };
    
                let Wohnzimmer2: PageType =
    
                {
                    "type": "cardGrid",
                    "heading": "Wohnzimmer 2",
                    "useColor": true,
                    "subPage": true,
                    "parent": Obergeschoss,
                    'next': 'Wohnzimmer1',
                    "items": [
                            /*PageItem*/{ navigate: true, id: null, targetPage: "Szenen_WZ", icon: "ceiling-light-multiple", onColor: White, name: "Szenen"},
                            /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC', icon: 'tools', offColor: Menu, onColor: Menu, name: 'Lightcontrol', buttonText: 'mehr...'},
                            /*PageItem*/{ id: "alias.0.TIMER1", icon: "timer-outline", name: "Timer", onColor: White}
                    ]
    
                };
                            let Deckenlampen_WZ: PageType =
    
                            {
                                "type": "cardEntities",
                                "heading": "Deckenlampen",
                                "useColor": true,
                                "subPage": true,
                                "parent": Wohnzimmer1,
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Deckenlampe.SofaRGB.Gruppe", name: "Sofa RGB", icon: "ceiling-light-multiple", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 150, maxValueColorTemp: 500, interpolateColor: true, colormode: "hex", modeList: ['Aus','Hell','Mittel','Dunkel','Blau','Grün','Rot'], inSel_ChoiceState: true},
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Deckenlampe.Gross.GruppeNSP", name: "Gross", icon: "ceiling-light-multiple", minValueColorTemp: 153, maxValueColorTemp: 370, interpolateColor: true}
    
                                ]
    
                            };
    
                            let Lampen_WZ: PageType =
    
                            {
                                "type": "cardEntities",
                                "heading": "Lampen",
                                "useColor": true,
                                "subPage": true,
                                "parent": Wohnzimmer1,
                                'next': 'Lampen2_WZ',
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Schreibtisch.Schreibtischlampe", name: "Schreibtisch", icon: "desk-lamp", interpolateColor: true},
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Laterne.Laterne", name: "Laterne", icon: "lamp", interpolateColor: true},
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Stehlampe.Stehlampe", name: "Stehlampe", icon: "floor-lamp", interpolateColor: true},
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Humidor.Humidor", name: "Humidor", icon: "lamp"}
                                ]
    
                            };
    
                            let Lampen2_WZ: PageType =
    
                            {
                                "type": "cardEntities",
                                "heading": "Lampen sonstige",
                                "useColor": true,
                                "subPage": true,
                                "parent": Wohnzimmer1,
                                'next': 'Lampen_WZ',
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Oellampe.Oellampeh", name: "Lampe Fenster", icon: "lamp-outline", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "hex"},
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Vapelampe.VapelampeRGB", name: "Vapelampe RGB", icon: "desk-lamp", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "xy"},
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Vapelampe.VapelampeWeiss", name: "Vapelampe Weiss", icon: "desk-lamp", minValueColorTemp: 500, maxValueColorTemp: 6500, interpolateColor: true},
                                        /*PageItem*/{ id: "alias.0.Status.Test.ACTUAL", name: "Lampen am", icon: "Lamp", offColor: MSRed, onColor: MSGreen, unit: "", minValue: 0, maxValue: 12, interpolateColor: true, useColor: true }
    
                                ]
    
                            };
    
                            let Themostat_WZ: PageType =
    
                            {
                            "type": "cardThermo",
                            "heading": "Thermostat",
                            "subPage": true,
                            "parent": Wohnzimmer1,
                            "items": [{ 
                                        id: "alias.0.Wohnzimmer.Temperaturen.Thermostat.Thermostat", 
                                        minValue: 160, 
                                        maxValue: 300,
                                        stepValue:5
                                         }]
    
                            };
    
                             let Status_WZ: PageType =
                            {
                            "type": "cardEntities",
                            "heading": "Status",
                            "useColor": true,
                            "subPage": true,
                            "parent": Wohnzimmer1,
                            "items": [
                                    /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.Balkontuer", offColor: Red, onColor: Green, name: "Balkontür" },
                                    /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.BWM", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, prefixName:"Wohnz.: ", name: "getState('alias.0.Wohnzimmer.Sensoren.BWM.SECOND').val", suffixName: " Lux" },
                                    /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.BWM_aktiv", name: "BWM aktiv", icon: "motion-play", icon2: "motion-pause", onColor: White},
                                    /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.BWM_aktivWennLichterAus", name: "BWM Lichter aus", icon: "motion-play", icon2: "motion-pause", onColor: White}
                                        ]
                            };
    
                            let Alexa_WZ: PageType =
                            {
                                'type': 'cardMedia',
                                'heading': 'Alexa',
                                'subPage': true,
                                'parent': Wohnzimmer1,
                                'items': [
                                    /*PageItem*/{
                                            id: "alias.0.Wohnzimmer.NSPanel_WZ" + 'Media.PlayerAlexa',
                                            adapterPlayerInstance: 'alexa2.0.',
                                            mediaDevice: 'G091JJ09116702M6',
                                            speakerList: ['Überall','Wohnzimmer','Ede','Edda','Küche','Schlafzimmer'],
                                            playList: ['TuneIn.Krawallradio',
                                                       'Amazon-Music-Playlist.Mein Discovery Mix',
                                                       'My-Library-Playlist.2020',
                                                       'My-Library-Playlist.2021',
                                                       'TuneIn.Radio Bob Rock',
                                                       'TuneIn.NDR2',
                                                       'Spotify-Playlist.Sabaton Radio',
                                                       'Spotify-Playlist.Rock Party',
                                                       'Spotify-Playlist.This Is Nightwish',
                                                       'Spotify-Playlist.Metal Christmas'],
                                            equalizerList: ['Bassboost','Klassik','Dance', 'Deep', 'Electronic', 'Flat', 'Hip-Hop', 'Rock',
                                                            'Metal', 'Jazz', 'Latin', 'Tonstärke', 'Lounge', 'Piano'],
                                            colorMediaIcon: colorAlexa,
                                            colorMediaArtist: Yellow,
                                            colorMediaTitle: Yellow,
                                            autoCreateALias : true
                                         }]
                            };
    
                
    
    
                            let Szenen_WZ: PageType =
    
                            {
                                "type": "cardEntities",
                                "heading": "Szenen",
                                "useColor": true,
                                "subPage": true,
                                "parent": Wohnzimmer2,
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Hyperion.HyperionPower", name: "Hyperion", icon: "television-ambient-light", icon2: "television-ambient-light"},
                                            ]
    
    
                            };
    
                let Wohnzimmer_LC: PageType =
    
                {
                "type": "cardEntities",
                "heading": "Wohnz. Lightcontrol",
                "useColor": true,
                "subPage": true,
                "parent": Wohnzimmer2,
                "items": [
                          /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC_1', icon: 'tools',offColor: Menu, onColor: Menu, name: 'BWM', buttonText: 'Einst.'},
                          /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC_2', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Auto Aus', buttonText: 'Einst.'},
                          /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC_4', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Rampen', buttonText: 'Einst.'}
                        ]
    
                };
    
                        let Wohnzimmer_LC_1: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Wohnz LC BWM",
                        "useColor": true,
                        "subPage": true,
                        "parent": Wohnzimmer_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnMotionEnable", name:"BWM", icon: "lightbulb-off-outline", onColor: White, offColor: Red},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnMotionMinLux", name:"BWM MinLux", icon: "sun-wireless-outline", minValue: 0, maxValue: 25},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnMotion.StartWerte", name: "BWM Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: Red}
                                 ]
                        };
    
                        let Wohnzimmer_LC_2: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Wohnz LC Auto Aus",
                        "useColor": true,
                        "subPage": true,
                        "parent": Wohnzimmer_LC,
                        "items": [                          
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffTimed.Enabled", name:"Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red}, 
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffTimedTime", name: "Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffTimed.NurWennKeinBewegung", name:"Nur ohne Beweg.", icon: "motion-sensor",icon2: "motion-sensor-off"}
                                 ]
                        };
    
                        let Wohnzimmer_LC_3: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Wohnz LC Helligk.",
                        "useColor": true,
                        "subPage": true,
                        "parent": Wohnzimmer_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnLux.Startwerte", name: "Hell. Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnLux.NurWennAnwesend", name:"nur wenn Anwesend", icon: "head-question-outline"},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnLux.MinLux", name: "Hell. MinLux", icon: "weather-sunny", onColor: White, offColor: Red, minValue: 0, maxValue: 25},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffLux.MinLux", name:"Hell. Auschalten", icon: "weather-sunny-off", onColor: White, offColor: Red, minValue: 0, maxValue: 25}
                                 ]
    
                        };
    
                        let Wohnzimmer_LC_4: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Wohnz LC Rampen",
                        "useColor": true,
                        "subPage": true,
                        "parent": Wohnzimmer_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOnEnableTime", name: "Rampe An Zeit", icon: "lightbulb-on-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOnEnable", name:"Rampe An", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOffEnableTime", name:"Rampe Aus Zeit", icon: "lightbulb-off-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOffEnable", name:"Rampe Aus", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                
                                 ]
    
                        };
    //##### Balkon #############################################################################################################################################
    
                            let Balkon: PageType =
    
                            {
                                "type": "cardGrid",
                                "heading": "Balkon",
                                "useColor": true,
                                "subPage": true,
                                "parent": Obergeschoss,
                                'next': 'Balkon2',
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Balkon.Lichterkette", name: "Lichterkette", icon: "ceiling-light-multiple", minValueColorTemp: 500, maxValueColorTemp: 6500, interpolateColor: true},
                                        /*PageItem*/{ id: "alias.0.Wohnzimmer.Balkontuer", offColor: Red, onColor: Green, name: "Balkontür" },
                                        /*PageItem*/{ id: "alias.0.Balkon.Bewegungsmelder", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, name: "BWM" }
                                        /*PageItem*/{ navigate: true, id: 'Balkon_LC', icon: 'tools', offColor: Menu, onColor: Menu, name: 'Lightcontrol', buttonText: 'mehr...'}
                                ]
    
                            };
    
                            let Balkon2: PageType =
    
                            {
                                "type": "cardEntities",
                                "heading": "Balkon Wetter",
                                "useColor": true,
                                "subPage": true,
                                "parent": Obergeschoss,
                                'next': 'Balkon',
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Balkon.Sensoren.Temperatur", name: "Temperatur", icon: "temperature-celsius", unit: "C", onColor: White},
                                        /*PageItem*/{ id: "alias.0.Balkon.Sensoren.Feuchtigkeit", name: "Luftfeuchtigkeit", icon: "water", unit: "%", onColor: White},
                                        /*PageItem*/{ id: "alias.0.Balkon.Sensoren.Luftdruck", name: "Luftdruck", icon: "tray-arrow-down", unit: "hPa", onColor: White}
                                ]
    
                            };
    
                let Balkon_LC: PageType =
    
                {
                "type": "cardEntities",
                "heading": "Balkon Lightcontrol",
                "useColor": true,
                "subPage": true,
                "parent": Balkon,
                "items": [
                          /*PageItem*/{ navigate: true, id: 'Balkon_LC_1', icon: 'tools',offColor: Menu, onColor: Menu, name: 'BWM', buttonText: 'Einst.'},
                          /*PageItem*/{ navigate: true, id: 'Balkon_LC_2', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Auto Aus', buttonText: 'Einst.'},
                          /*PageItem*/{ navigate: true, id: 'Balkon_LC_4', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Rampen', buttonText: 'Einst.'}
                        ]
    
                };
    
                        let Balkon_LC_1: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Balkon LC BWM",
                        "useColor": true,
                        "subPage": true,
                        "parent": Balkon_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnMotionEnable", name:"BWM", icon: "lightbulb-off-outline", onColor: White, offColor: Red},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnMotionMinLux", name:"BWM MinLux", icon: "sun-wireless-outline", minValue: 0, maxValue: 25},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnMotion.StartWerte", name: "BWM Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: Red}
                                 ]
                        };
    
    
                        let Balkon_LC_2: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Balkon LC Auto Aus",
                        "useColor": true,
                        "subPage": true,
                        "parent": Balkon_LC,
                        "items": [                          
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffTimed.Enabled", name:"Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red}, 
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffTimedTime", name: "Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffTimed.NurWennKeinBewegung", name:"Nur ohne Beweg.", icon: "motion-sensor",icon2: "motion-sensor-off"}
                                 ]
                        };
    
                        let Balkon_LC_3: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Balkon LC Helligk.",
                        "useColor": true,
                        "subPage": true,
                        "parent": Balkon_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnLux.Startwerte", name: "Hell. Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnLux.NurWennAnwesend", name:"nur wenn Anwesend", icon: "head-question-outline"},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnLux.MinLux", name: "Hell. MinLux", icon: "weather-sunny", onColor: White, offColor: Red, minValue: 0, maxValue: 25},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffLux.MinLux", name:"Hell. Auschalten", icon: "weather-sunny-off", onColor: White, offColor: Red, minValue: 0, maxValue: 25}
                                 ]
    
                        };
    
                        let Balkon_LC_4: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Balkon LC Rampen",
                        "useColor": true,
                        "subPage": true,
                        "parent": Balkon_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOnEnableTime", name: "Rampe An Zeit", icon: "lightbulb-on-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOnEnable", name:"Rampe An", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOffEnableTime", name:"Rampe Aus Zeit", icon: "lightbulb-off-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOffEnable", name:"Rampe Aus", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                
                                 ]
    
                        };
    //###### Kinderzimmer Ede #################################################################################################################################
    
                            let Kinderzimmer_Ede: PageType =
    
                            {
                                "type": "cardGrid",
                                "heading": "Kinderzimmer Ede",
                                "useColor": true,
                                "subPage": true,
                                "parent": Obergeschoss,
                                "next": 'Kinderzimmer_Ede_LC',
                                "nextIcon": 'tools',
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Deckenlampen.DeckenlampeRGBh", name: "Deckenlampe", icon: "ceiling-light", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "hex"},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Sensoren.Temperatur",name: "getState('alias.0.Kinderzimmer_Ede.Sensoren.Temperatur.ACTUAL').val", suffixName: "°C", icon: "temperature-celsius", unit: "C", onColor: White},
                                        /*PageItem*/{ navigate: true, id: 'Thermostat_Ede', icon: 'temperature-celsius', offColor: Menu, onColor: Menu, name: 'Thermostat'},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Sensoren.Luftfeuchtigkeit", name: "getState('alias.0.Kinderzimmer_Ede.Sensoren.Temperatur.SECOND').val", suffixName: "%", icon: "water", unit: "%", onColor: White},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Sensoren.Fenster", name: "Fenster", icon2: "window-open-variant", icon: "window-closed-variant", onColor: White, offColor: Yellow}
                                ]
    
                            };
    
                            let Thermostat_Ede: PageType =
                            {
                            "type": "cardThermo",
                            "heading": "Thermostat",
                            "subPage": true,
                            "parent": Kinderzimmer_Ede,
                            "items": [{ 
                                        id: "alias.0.Kinderzimmer_Ede.Temperatur.Thermostat.Thermostat", 
                                        minValue: 160, 
                                        maxValue: 250,
                                        stepValue: 5 
                                    }]
    
                            };
    
                            let Kinderzimmer_Ede_LC: PageType =
    
                            {
                            "type": "cardEntities",
                            "heading": "WC Lightcontrol",
                            "useColor": true,
                            "subPage": true,
                            "parent": Kinderzimmer_Ede,
                            "items": [
                                      /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.LC.BWM_Lampe", name: "Einst. bei ein", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                      /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.LC.BWM_Dimmer", name:"Schaltschwelle / BWM aktiv", icon: "sun-wireless-outline", minValueBrightness: 0, maxValueBrightness: 100}
                                    ]
    
                            };
    
    //###### Kinderzimmer Edda ################################################################################################################################
    
                            let Kinderzimmer_Edda: PageType =
    
                            {
                                "type": "cardGrid",
                                "heading": "Kinderzimmer Edda",
                                "useColor": true,
                                "subPage": true,
                                "parent": Obergeschoss,
                                "next": 'Kinderzimmer_Edda_LC',
                                "nextIcon": 'tools',
                                "items": [
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Deckenlampen.DeckenlampeRGB", name: "Deckenlampe", icon: "ceiling-light", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "hex"},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Sensoren.Temperatur", name: "getState('alias.0.Kinderzimmer_Edda.Sensoren.Temperatur.ACTUAL').val", suffixName: "°C", icon: "temperature-celsius", unit: "C", onColor: White},
                                        /*PageItem*/{ navigate: true, id: 'Thermostat_Edda', icon: 'temperature-celsius', offColor: Menu, onColor: Menu, name: 'Thermostat'},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Sensoren.Luftfeuchtigkeit", name: "getState('alias.0.Kinderzimmer_Edda.Sensoren.Temperatur.SECOND').val", suffixName: "%", icon: "water", unit: "%", onColor: White},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Sensoren.Fenster", name: "Fenster", icon2: "window-open-variant", icon: "window-closed-variant", onColor: White, offColor: Yellow}
                                ]
    
                            };
    
                            let Thermostat_Edda: PageType =
                            {
                            "type": "cardThermo",
                            "heading": "Thermostat",
                            "subPage": true,
                            "parent": Kinderzimmer_Edda,
                            "items": [{ 
                                        id: "alias.0.Kinderzimmer_Ede.Temperatur.Thermostat.Thermostat", 
                                        minValue: 160, 
                                        maxValue: 250,
                                        stepValue:5
                                         }]
    
                            };
                            
                            let Kinderzimmer_Edda_LC: PageType =
    
                            {
                            "type": "cardEntities",
                            "heading": "WC Lightcontrol",
                            "useColor": true,
                            "subPage": true,
                            "parent": Kinderzimmer_Edda,
                            "items": [
                                      /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.LC.BWM_Lampe", name: "Einst. bei ein", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                      /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.LC.BWM_Dimmer", name:"Schaltschwelle / BWM aktiv", icon: "sun-wireless-outline", minValueBrightness: 0, maxValueBrightness: 100}
                                    ]
    
                            };
    //###### Flur ##############################################################################################################################################
    
            let Flur_OG: PageType =
    
                {
                    "type": "cardEntities",
                    "heading": "Flur",
                    "useColor": true,
                    "subPage": true,
                    "parent": Obergeschoss,
                    "next": 'Flur_OG_LC',
                    "nextIcon": 'tools',
                    "items": [
                           /*PageItem*/{ id: "alias.0.TreppeFlur.Deckenlampe.OG_Deckenlampe", name: "Oben", icon: "ceiling-light", interpolateColor: true},
                           /*PageItem*/{ id: "alias.0.TreppeFlur.Deckenlampe.EG_Deckenlampe", name: "Unten", icon: "ceiling-light", interpolateColor: true},
                           /*PageItem*/{ id: "alias.0.TreppeFlur.Sensoren.BWM_Treppe_Oben", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, name: "BWM oben" },
                           /*PageItem*/{ id: "alias.0.TreppeFlur.Sensoren.BWM_Treppe_Unten", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, name: "BWM unten" }
                    ]
    
                };
    
                let Flur_OG_LC: PageType =
    
                {
                "type": "cardEntities",
                "heading": "WC Lightcontrol",
                "useColor": true,
                "subPage": true,
                "parent": Flur_OG,
                "items": [
                          /*PageItem*/{ navigate: true, id: 'Flur_OG_LC_1', icon: 'tools',offColor: Menu, onColor: Menu, name: 'BWM', buttonText: 'Einst.'},
                          /*PageItem*/{ navigate: true, id: 'Flur_OG_LC_2', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Auto Aus', buttonText: 'Einst.'},
                          /*PageItem*/{ navigate: true, id: 'Flur_OG_LC_4', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Rampen', buttonText: 'Einst.'}
                        ]
    
                };
    
                        let Flur_OG_LC_1: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Flur LC BWM",
                        "useColor": true,
                        "subPage": true,
                        "parent": Flur_OG_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnMotionEnable", name:"BWM", icon: "lightbulb-off-outline", onColor: White, offColor: Red},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnMotionMinLux", name:"BWM MinLux", icon: "sun-wireless-outline", minValue: 0, maxValue: 25},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnMotion.StartWerte", name: "BWM Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: Red}
                                 ]
                        };
    
                        let Flur_OG_LC_2: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Flur LC Auto Aus",
                        "useColor": true,
                        "subPage": true,
                        "parent": Flur_OG_LC,
                        "items": [                          
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffTimed.Enabled", name:"Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red}, 
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffTimedTime", name: "Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffTimed.NurWennKeinBewegung", name:"Nur ohne Beweg.", icon: "motion-sensor",icon2: "motion-sensor-off"}
                                 ]
                        };
    
                        let Flur_OG_LC_3: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Flur LC Helligk.",
                        "useColor": true,
                        "subPage": true,
                        "parent": Flur_OG_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnLux.Startwerte", name: "Hell. Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnLux.NurWennAnwesend", name:"nur wenn Anwesend", icon: "head-question-outline"},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnLux.MinLux", name: "Hell. MinLux", icon: "weather-sunny", onColor: White, offColor: Red, minValue: 0, maxValue: 25},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffLux.MinLux", name:"Hell. Auschalten", icon: "weather-sunny-off", onColor: White, offColor: Red, minValue: 0, maxValue: 25}
                                 ]
    
                        };
    
                        let Flur_OG_LC_4: PageType =
    
                        {
                        "type": "cardEntities",
                        "heading": "Flur LC Rampen",
                        "useColor": true,
                        "subPage": true,
                        "parent": Flur_OG_LC,
                        "items": [
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOnEnableTime", name: "Rampe An Zeit", icon: "lightbulb-on-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOnEnable", name:"Rampe An", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOffEnableTime", name:"Rampe Aus Zeit", icon: "lightbulb-off-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOffEnable", name:"Rampe Aus", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                
                                 ]
    
                        };                                        
    //########### UG ###############################################################################################################################################
    //########### UG ###############################################################################################################################################
    //########### UG ###############################################################################################################################################
    

    Hoffe mir kann jemand weiterhelfen. Ist nur ein Auszug, aber da wird halt hauptsächlich was angemeckert.

    T 1 Antwort Letzte Antwort
    0
    • D danny_v1

      @tt-tom

      So hier nun mein Fehlerhaftes Skript.

      //##### Navigation #####################################################################################
      
      let AlarmSeite: PageType =                                                    //Seite fertig
      {
          'type': 'cardAlarm',
          'heading': 'Alarmanlage',
          "subPage": false,
          'prev': 'NSPanel_Service',
          'next': 'Obergeschoss',
          'prevIcon': 'tools',
          'nextIcon': 'home-floor-1',
          'items': [
              /*PageItem*/{ id: 'alias.0.Alarm' }
              ]
      };
      
      let Obergeschoss: PageType =
      
      {
          "type": "cardGrid",
          "heading": "Obergeschoss",
          "useColor": true,
          "subPage": false,
          'prev': 'AlarmSeite',
          'next': 'Untergeschoss',
          'prevIcon': 'shield-alert',
          'nextIcon': 'home-floor-0',
          "items": [
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Wohnzimmer1", icon: "sofa-outline", onColor: White, name: "Wohnzimmer"},   
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Kinderzimmer_Ede", icon: "human-child", onColor: White, name: "Ede"},       
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Kinderzimmer_Edda", icon: "human-child", onColor: White, name: "Edda"},   
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Balkon", icon: "balcony", onColor: White, name: "Balkon"},                  
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Flur_OG", icon: "stairs", onColor: White, name: "Flur"}                  
          ]
      
      };
      
      let Untergeschoss: PageType =
      
      {
          "type": "cardGrid",
          "heading": "Untergeschoss",
          "useColor": true,
          "subPage": false,
          'prev': 'Obergeschoss',
          'next': 'Aussenbereich',
          'prevIcon': 'home-floor-1',
          'nextIcon': 'tree-outline',
          "items": [
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Kueche1", icon: "pot-steam", onColor: White, name: "Küche"},             
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Schlafzimmer", icon: "bed-king", onColor: White, name: "Schlafzimmer"}, 
                  /*PageItem*/{ navigate: true, id: null, targetPage: "WC_EG", icon: "toilet", onColor: White, name: "WC"},                        
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Bad", icon: "bathtub", onColor: White, name: "Bad"},                     
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Flur_EG", icon: "stairs", onColor: White, name: "Flur"},                
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Abstellraum", icon: "washing-machine", onColor: White, name: "Abstellraum"}            
          ]
      
      };
      
      let Aussenbereich: PageType =
      
      {
          "type": "cardGrid",
          "heading": "Garten",
          "useColor": true,
          "subPage": false,
          'prev': 'Untergeschoss',
          'next': 'Abfall',
          'prevIcon': 'home-floor-0',
          'nextIcon': 'trash-can-outline',
          "items": [
                  /*PageItem*/{ navigate: true, id: null, targetPage: "Hof", icon: "tree-outline", onColor: White, name: "Vorgarten"},       
                              { navigate: true, id: null, targetPage: "Garten", icon: "flower-tulip-outline", onColor: White, name: "Garten"}                                                                                                            //Garten einfügen
          ]
      
      };
      
      let Abfall: PageType =
      {
          "type": "cardEntities",
          "heading": "Abfallkalender",
          "useColor": true,
          "subPage": false,
          "parent": undefined,
          'prev': 'Aussenbereich',
          'next': 'Haus_Info',
          'home': undefined,
          "items": [
              /*PageItem*/{ id: "alias.0.Abfall.Event1", icon: 'trash-can'},
              /*PageItem*/{ id: "alias.0.Abfall.Event2", icon: 'trash-can'},
              /*PageItem*/{ id: "alias.0.Abfall.Event3", icon: 'trash-can'},
              /*PageItem*/{ id: "alias.0.Abfall.Event4", icon: 'trash-can'}
          ]
      };
      
      let Haus_Info: PageType =
      {
          "type": "cardEntities",
          "heading": "Info Seite",
          "useColor": true,
          "subPage": false,
          'prev': 'Abfall',
          'next': 'NSPanel_Service',
          'prevIcon': 'trash-can-outline',
          'nextIcon': 'tools',
          "items": [
               /*PageItem*/{ navigate: true, id: null, targetPage: 'Fenster_Info_1', icon: 'window-open-variant', offColor: Menu, onColor: Menu, prefixName:"Fenster offen ", name: "getState('0_userdata.0.Zaehlen.FensterTueren.FensterTueren').val", buttonText: 'mehr...'},
               /*PageItem*/{ navigate: true, id: null, targetPage: 'WLAN_Page', icon: 'wifi', name: "WLAN", buttonText: 'mehr...'}
          ]
      };
      
      
      //Level_0 (if service pages are used without cardUnlock)
      let NSPanel_Service: PageType =
      {
          'type': 'cardEntities',
          'heading': findLocaleServMenu('service_menu'),
          'useColor': true,
          'items': [
              /*PageItem*/{ navigate: true, id: 'NSPanel_Infos', icon: 'information-outline', offColor: Menu, onColor: Menu, name: findLocaleServMenu('infos'), buttonText: findLocaleServMenu('more')},
              /*PageItem*/{ navigate: true, id: 'NSPanel_Einstellungen', icon: 'monitor-edit', offColor: Menu, onColor: Menu, name: findLocaleServMenu('settings'), buttonText: findLocaleServMenu('more')},
              /*PageItem*/{ navigate: true, id: 'NSPanel_Firmware', icon: 'update', offColor: Menu, onColor: Menu, name: findLocaleServMenu('firmware'), buttonText: findLocaleServMenu('more')},
              /*PageItem*/{ id: AliasPath + 'Config.rebootNSPanel', name: findLocaleServMenu('reboot') ,icon: 'refresh', offColor: MSRed, onColor: MSGreen, buttonText: findLocaleServMenu('start')}
          ]
      };
      
      //##### Wohnzimmer #####################################################################################################################
      //##### Wohnzimmer #####################################################################################################################
      
                  let Wohnzimmer1: PageType =
      
                  {
                      "type": "cardGrid",
                      "heading": "Wohnzimmer 1",
                      "useColor": true,
                      "subPage": true,
                      "parent": Obergeschoss,
                      'next': 'Wohnzimmer2',
                      "items": [
                              /*PageItem*/{ navigate: true, id: 'alias.0.Wohnzimmer.Deckenlampe.Alle.Info.INFO', targetPage: "Deckenlampen_WZ", icon: "ceiling-light-multiple", offColor: Yellow, onColor: White, name: "Deckenlampen"},
                              /*PageItem*/{ navigate: true, id: null, targetPage: "Lampen_WZ", icon: "floor-lamp", onColor: White, name: "Lampen"},
                              /*PageItem*/{ navigate: true, id: null, targetPage: "Lampen2_WZ", icon: "floor-lamp", onColor: White, name: "Lampen sonstige"},
                              /*PageItem*/{ navigate: true, id: 'alias.0.Wohnzimmer.HeizungWZ.SET', targetPage: "Themostat_WZ", icon: "temperature-celsius", onColor: White, name: "Temperaturen"},
                              /*PageItem*/{ navigate: true, id: null, targetPage: "Status_WZ", icon: "state-machine", onColor: White, name: "Status"},
                              /*PageItem*/{ navigate: true, id: null, targetPage: "Alexa_WZ", icon: "music", onColor: White, name: "Alexa"}
                      ]
      
                  };
      
                  let Wohnzimmer2: PageType =
      
                  {
                      "type": "cardGrid",
                      "heading": "Wohnzimmer 2",
                      "useColor": true,
                      "subPage": true,
                      "parent": Obergeschoss,
                      'next': 'Wohnzimmer1',
                      "items": [
                              /*PageItem*/{ navigate: true, id: null, targetPage: "Szenen_WZ", icon: "ceiling-light-multiple", onColor: White, name: "Szenen"},
                              /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC', icon: 'tools', offColor: Menu, onColor: Menu, name: 'Lightcontrol', buttonText: 'mehr...'},
                              /*PageItem*/{ id: "alias.0.TIMER1", icon: "timer-outline", name: "Timer", onColor: White}
                      ]
      
                  };
                              let Deckenlampen_WZ: PageType =
      
                              {
                                  "type": "cardEntities",
                                  "heading": "Deckenlampen",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Wohnzimmer1,
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Deckenlampe.SofaRGB.Gruppe", name: "Sofa RGB", icon: "ceiling-light-multiple", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 150, maxValueColorTemp: 500, interpolateColor: true, colormode: "hex", modeList: ['Aus','Hell','Mittel','Dunkel','Blau','Grün','Rot'], inSel_ChoiceState: true},
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Deckenlampe.Gross.GruppeNSP", name: "Gross", icon: "ceiling-light-multiple", minValueColorTemp: 153, maxValueColorTemp: 370, interpolateColor: true}
      
                                  ]
      
                              };
      
                              let Lampen_WZ: PageType =
      
                              {
                                  "type": "cardEntities",
                                  "heading": "Lampen",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Wohnzimmer1,
                                  'next': 'Lampen2_WZ',
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Schreibtisch.Schreibtischlampe", name: "Schreibtisch", icon: "desk-lamp", interpolateColor: true},
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Laterne.Laterne", name: "Laterne", icon: "lamp", interpolateColor: true},
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Stehlampe.Stehlampe", name: "Stehlampe", icon: "floor-lamp", interpolateColor: true},
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Humidor.Humidor", name: "Humidor", icon: "lamp"}
                                  ]
      
                              };
      
                              let Lampen2_WZ: PageType =
      
                              {
                                  "type": "cardEntities",
                                  "heading": "Lampen sonstige",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Wohnzimmer1,
                                  'next': 'Lampen_WZ',
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Oellampe.Oellampeh", name: "Lampe Fenster", icon: "lamp-outline", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "hex"},
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Vapelampe.VapelampeRGB", name: "Vapelampe RGB", icon: "desk-lamp", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "xy"},
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Lampe.Vapelampe.VapelampeWeiss", name: "Vapelampe Weiss", icon: "desk-lamp", minValueColorTemp: 500, maxValueColorTemp: 6500, interpolateColor: true},
                                          /*PageItem*/{ id: "alias.0.Status.Test.ACTUAL", name: "Lampen am", icon: "Lamp", offColor: MSRed, onColor: MSGreen, unit: "", minValue: 0, maxValue: 12, interpolateColor: true, useColor: true }
      
                                  ]
      
                              };
      
                              let Themostat_WZ: PageType =
      
                              {
                              "type": "cardThermo",
                              "heading": "Thermostat",
                              "subPage": true,
                              "parent": Wohnzimmer1,
                              "items": [{ 
                                          id: "alias.0.Wohnzimmer.Temperaturen.Thermostat.Thermostat", 
                                          minValue: 160, 
                                          maxValue: 300,
                                          stepValue:5
                                           }]
      
                              };
      
                               let Status_WZ: PageType =
                              {
                              "type": "cardEntities",
                              "heading": "Status",
                              "useColor": true,
                              "subPage": true,
                              "parent": Wohnzimmer1,
                              "items": [
                                      /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.Balkontuer", offColor: Red, onColor: Green, name: "Balkontür" },
                                      /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.BWM", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, prefixName:"Wohnz.: ", name: "getState('alias.0.Wohnzimmer.Sensoren.BWM.SECOND').val", suffixName: " Lux" },
                                      /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.BWM_aktiv", name: "BWM aktiv", icon: "motion-play", icon2: "motion-pause", onColor: White},
                                      /*PageItem*/{ id: "alias.0.Wohnzimmer.Sensoren.BWM_aktivWennLichterAus", name: "BWM Lichter aus", icon: "motion-play", icon2: "motion-pause", onColor: White}
                                          ]
                              };
      
                              let Alexa_WZ: PageType =
                              {
                                  'type': 'cardMedia',
                                  'heading': 'Alexa',
                                  'subPage': true,
                                  'parent': Wohnzimmer1,
                                  'items': [
                                      /*PageItem*/{
                                              id: "alias.0.Wohnzimmer.NSPanel_WZ" + 'Media.PlayerAlexa',
                                              adapterPlayerInstance: 'alexa2.0.',
                                              mediaDevice: 'G091JJ09116702M6',
                                              speakerList: ['Überall','Wohnzimmer','Ede','Edda','Küche','Schlafzimmer'],
                                              playList: ['TuneIn.Krawallradio',
                                                         'Amazon-Music-Playlist.Mein Discovery Mix',
                                                         'My-Library-Playlist.2020',
                                                         'My-Library-Playlist.2021',
                                                         'TuneIn.Radio Bob Rock',
                                                         'TuneIn.NDR2',
                                                         'Spotify-Playlist.Sabaton Radio',
                                                         'Spotify-Playlist.Rock Party',
                                                         'Spotify-Playlist.This Is Nightwish',
                                                         'Spotify-Playlist.Metal Christmas'],
                                              equalizerList: ['Bassboost','Klassik','Dance', 'Deep', 'Electronic', 'Flat', 'Hip-Hop', 'Rock',
                                                              'Metal', 'Jazz', 'Latin', 'Tonstärke', 'Lounge', 'Piano'],
                                              colorMediaIcon: colorAlexa,
                                              colorMediaArtist: Yellow,
                                              colorMediaTitle: Yellow,
                                              autoCreateALias : true
                                           }]
                              };
      
                  
      
      
                              let Szenen_WZ: PageType =
      
                              {
                                  "type": "cardEntities",
                                  "heading": "Szenen",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Wohnzimmer2,
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Hyperion.HyperionPower", name: "Hyperion", icon: "television-ambient-light", icon2: "television-ambient-light"},
                                              ]
      
      
                              };
      
                  let Wohnzimmer_LC: PageType =
      
                  {
                  "type": "cardEntities",
                  "heading": "Wohnz. Lightcontrol",
                  "useColor": true,
                  "subPage": true,
                  "parent": Wohnzimmer2,
                  "items": [
                            /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC_1', icon: 'tools',offColor: Menu, onColor: Menu, name: 'BWM', buttonText: 'Einst.'},
                            /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC_2', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Auto Aus', buttonText: 'Einst.'},
                            /*PageItem*/{ navigate: true, id: 'Wohnzimmer_LC_4', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Rampen', buttonText: 'Einst.'}
                          ]
      
                  };
      
                          let Wohnzimmer_LC_1: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Wohnz LC BWM",
                          "useColor": true,
                          "subPage": true,
                          "parent": Wohnzimmer_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnMotionEnable", name:"BWM", icon: "lightbulb-off-outline", onColor: White, offColor: Red},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnMotionMinLux", name:"BWM MinLux", icon: "sun-wireless-outline", minValue: 0, maxValue: 25},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnMotion.StartWerte", name: "BWM Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: Red}
                                   ]
                          };
      
                          let Wohnzimmer_LC_2: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Wohnz LC Auto Aus",
                          "useColor": true,
                          "subPage": true,
                          "parent": Wohnzimmer_LC,
                          "items": [                          
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffTimed.Enabled", name:"Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red}, 
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffTimedTime", name: "Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffTimed.NurWennKeinBewegung", name:"Nur ohne Beweg.", icon: "motion-sensor",icon2: "motion-sensor-off"}
                                   ]
                          };
      
                          let Wohnzimmer_LC_3: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Wohnz LC Helligk.",
                          "useColor": true,
                          "subPage": true,
                          "parent": Wohnzimmer_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnLux.Startwerte", name: "Hell. Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnLux.NurWennAnwesend", name:"nur wenn Anwesend", icon: "head-question-outline"},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOnLux.MinLux", name: "Hell. MinLux", icon: "weather-sunny", onColor: White, offColor: Red, minValue: 0, maxValue: 25},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.AutoOffLux.MinLux", name:"Hell. Auschalten", icon: "weather-sunny-off", onColor: White, offColor: Red, minValue: 0, maxValue: 25}
                                   ]
      
                          };
      
                          let Wohnzimmer_LC_4: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Wohnz LC Rampen",
                          "useColor": true,
                          "subPage": true,
                          "parent": Wohnzimmer_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOnEnableTime", name: "Rampe An Zeit", icon: "lightbulb-on-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOnEnable", name:"Rampe An", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOffEnableTime", name:"Rampe Aus Zeit", icon: "lightbulb-off-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.Wohnzimmer.LC.Komplett.RampOffEnable", name:"Rampe Aus", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                  
                                   ]
      
                          };
      //##### Balkon #############################################################################################################################################
      
                              let Balkon: PageType =
      
                              {
                                  "type": "cardGrid",
                                  "heading": "Balkon",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Obergeschoss,
                                  'next': 'Balkon2',
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Balkon.Lichterkette", name: "Lichterkette", icon: "ceiling-light-multiple", minValueColorTemp: 500, maxValueColorTemp: 6500, interpolateColor: true},
                                          /*PageItem*/{ id: "alias.0.Wohnzimmer.Balkontuer", offColor: Red, onColor: Green, name: "Balkontür" },
                                          /*PageItem*/{ id: "alias.0.Balkon.Bewegungsmelder", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, name: "BWM" }
                                          /*PageItem*/{ navigate: true, id: 'Balkon_LC', icon: 'tools', offColor: Menu, onColor: Menu, name: 'Lightcontrol', buttonText: 'mehr...'}
                                  ]
      
                              };
      
                              let Balkon2: PageType =
      
                              {
                                  "type": "cardEntities",
                                  "heading": "Balkon Wetter",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Obergeschoss,
                                  'next': 'Balkon',
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Balkon.Sensoren.Temperatur", name: "Temperatur", icon: "temperature-celsius", unit: "C", onColor: White},
                                          /*PageItem*/{ id: "alias.0.Balkon.Sensoren.Feuchtigkeit", name: "Luftfeuchtigkeit", icon: "water", unit: "%", onColor: White},
                                          /*PageItem*/{ id: "alias.0.Balkon.Sensoren.Luftdruck", name: "Luftdruck", icon: "tray-arrow-down", unit: "hPa", onColor: White}
                                  ]
      
                              };
      
                  let Balkon_LC: PageType =
      
                  {
                  "type": "cardEntities",
                  "heading": "Balkon Lightcontrol",
                  "useColor": true,
                  "subPage": true,
                  "parent": Balkon,
                  "items": [
                            /*PageItem*/{ navigate: true, id: 'Balkon_LC_1', icon: 'tools',offColor: Menu, onColor: Menu, name: 'BWM', buttonText: 'Einst.'},
                            /*PageItem*/{ navigate: true, id: 'Balkon_LC_2', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Auto Aus', buttonText: 'Einst.'},
                            /*PageItem*/{ navigate: true, id: 'Balkon_LC_4', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Rampen', buttonText: 'Einst.'}
                          ]
      
                  };
      
                          let Balkon_LC_1: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Balkon LC BWM",
                          "useColor": true,
                          "subPage": true,
                          "parent": Balkon_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnMotionEnable", name:"BWM", icon: "lightbulb-off-outline", onColor: White, offColor: Red},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnMotionMinLux", name:"BWM MinLux", icon: "sun-wireless-outline", minValue: 0, maxValue: 25},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnMotion.StartWerte", name: "BWM Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: Red}
                                   ]
                          };
      
      
                          let Balkon_LC_2: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Balkon LC Auto Aus",
                          "useColor": true,
                          "subPage": true,
                          "parent": Balkon_LC,
                          "items": [                          
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffTimed.Enabled", name:"Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red}, 
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffTimedTime", name: "Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffTimed.NurWennKeinBewegung", name:"Nur ohne Beweg.", icon: "motion-sensor",icon2: "motion-sensor-off"}
                                   ]
                          };
      
                          let Balkon_LC_3: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Balkon LC Helligk.",
                          "useColor": true,
                          "subPage": true,
                          "parent": Balkon_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnLux.Startwerte", name: "Hell. Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnLux.NurWennAnwesend", name:"nur wenn Anwesend", icon: "head-question-outline"},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOnLux.MinLux", name: "Hell. MinLux", icon: "weather-sunny", onColor: White, offColor: Red, minValue: 0, maxValue: 25},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.AutoOffLux.MinLux", name:"Hell. Auschalten", icon: "weather-sunny-off", onColor: White, offColor: Red, minValue: 0, maxValue: 25}
                                   ]
      
                          };
      
                          let Balkon_LC_4: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Balkon LC Rampen",
                          "useColor": true,
                          "subPage": true,
                          "parent": Balkon_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOnEnableTime", name: "Rampe An Zeit", icon: "lightbulb-on-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOnEnable", name:"Rampe An", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOffEnableTime", name:"Rampe Aus Zeit", icon: "lightbulb-off-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.Balkon.LC.Komplett.RampOffEnable", name:"Rampe Aus", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                  
                                   ]
      
                          };
      //###### Kinderzimmer Ede #################################################################################################################################
      
                              let Kinderzimmer_Ede: PageType =
      
                              {
                                  "type": "cardGrid",
                                  "heading": "Kinderzimmer Ede",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Obergeschoss,
                                  "next": 'Kinderzimmer_Ede_LC',
                                  "nextIcon": 'tools',
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Deckenlampen.DeckenlampeRGBh", name: "Deckenlampe", icon: "ceiling-light", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "hex"},
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Sensoren.Temperatur",name: "getState('alias.0.Kinderzimmer_Ede.Sensoren.Temperatur.ACTUAL').val", suffixName: "°C", icon: "temperature-celsius", unit: "C", onColor: White},
                                          /*PageItem*/{ navigate: true, id: 'Thermostat_Ede', icon: 'temperature-celsius', offColor: Menu, onColor: Menu, name: 'Thermostat'},
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Sensoren.Luftfeuchtigkeit", name: "getState('alias.0.Kinderzimmer_Ede.Sensoren.Temperatur.SECOND').val", suffixName: "%", icon: "water", unit: "%", onColor: White},
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.Sensoren.Fenster", name: "Fenster", icon2: "window-open-variant", icon: "window-closed-variant", onColor: White, offColor: Yellow}
                                  ]
      
                              };
      
                              let Thermostat_Ede: PageType =
                              {
                              "type": "cardThermo",
                              "heading": "Thermostat",
                              "subPage": true,
                              "parent": Kinderzimmer_Ede,
                              "items": [{ 
                                          id: "alias.0.Kinderzimmer_Ede.Temperatur.Thermostat.Thermostat", 
                                          minValue: 160, 
                                          maxValue: 250,
                                          stepValue: 5 
                                      }]
      
                              };
      
                              let Kinderzimmer_Ede_LC: PageType =
      
                              {
                              "type": "cardEntities",
                              "heading": "WC Lightcontrol",
                              "useColor": true,
                              "subPage": true,
                              "parent": Kinderzimmer_Ede,
                              "items": [
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.LC.BWM_Lampe", name: "Einst. bei ein", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Ede.LC.BWM_Dimmer", name:"Schaltschwelle / BWM aktiv", icon: "sun-wireless-outline", minValueBrightness: 0, maxValueBrightness: 100}
                                      ]
      
                              };
      
      //###### Kinderzimmer Edda ################################################################################################################################
      
                              let Kinderzimmer_Edda: PageType =
      
                              {
                                  "type": "cardGrid",
                                  "heading": "Kinderzimmer Edda",
                                  "useColor": true,
                                  "subPage": true,
                                  "parent": Obergeschoss,
                                  "next": 'Kinderzimmer_Edda_LC',
                                  "nextIcon": 'tools',
                                  "items": [
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Deckenlampen.DeckenlampeRGB", name: "Deckenlampe", icon: "ceiling-light", minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 500, maxValueColorTemp: 150, interpolateColor: true, colormode: "hex"},
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Sensoren.Temperatur", name: "getState('alias.0.Kinderzimmer_Edda.Sensoren.Temperatur.ACTUAL').val", suffixName: "°C", icon: "temperature-celsius", unit: "C", onColor: White},
                                          /*PageItem*/{ navigate: true, id: 'Thermostat_Edda', icon: 'temperature-celsius', offColor: Menu, onColor: Menu, name: 'Thermostat'},
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Sensoren.Luftfeuchtigkeit", name: "getState('alias.0.Kinderzimmer_Edda.Sensoren.Temperatur.SECOND').val", suffixName: "%", icon: "water", unit: "%", onColor: White},
                                          /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.Sensoren.Fenster", name: "Fenster", icon2: "window-open-variant", icon: "window-closed-variant", onColor: White, offColor: Yellow}
                                  ]
      
                              };
      
                              let Thermostat_Edda: PageType =
                              {
                              "type": "cardThermo",
                              "heading": "Thermostat",
                              "subPage": true,
                              "parent": Kinderzimmer_Edda,
                              "items": [{ 
                                          id: "alias.0.Kinderzimmer_Ede.Temperatur.Thermostat.Thermostat", 
                                          minValue: 160, 
                                          maxValue: 250,
                                          stepValue:5
                                           }]
      
                              };
                              
                              let Kinderzimmer_Edda_LC: PageType =
      
                              {
                              "type": "cardEntities",
                              "heading": "WC Lightcontrol",
                              "useColor": true,
                              "subPage": true,
                              "parent": Kinderzimmer_Edda,
                              "items": [
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.LC.BWM_Lampe", name: "Einst. bei ein", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                        /*PageItem*/{ id: "alias.0.Kinderzimmer_Edda.LC.BWM_Dimmer", name:"Schaltschwelle / BWM aktiv", icon: "sun-wireless-outline", minValueBrightness: 0, maxValueBrightness: 100}
                                      ]
      
                              };
      //###### Flur ##############################################################################################################################################
      
              let Flur_OG: PageType =
      
                  {
                      "type": "cardEntities",
                      "heading": "Flur",
                      "useColor": true,
                      "subPage": true,
                      "parent": Obergeschoss,
                      "next": 'Flur_OG_LC',
                      "nextIcon": 'tools',
                      "items": [
                             /*PageItem*/{ id: "alias.0.TreppeFlur.Deckenlampe.OG_Deckenlampe", name: "Oben", icon: "ceiling-light", interpolateColor: true},
                             /*PageItem*/{ id: "alias.0.TreppeFlur.Deckenlampe.EG_Deckenlampe", name: "Unten", icon: "ceiling-light", interpolateColor: true},
                             /*PageItem*/{ id: "alias.0.TreppeFlur.Sensoren.BWM_Treppe_Oben", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, name: "BWM oben" },
                             /*PageItem*/{ id: "alias.0.TreppeFlur.Sensoren.BWM_Treppe_Unten", icon: "motion-sensor", icon2: "motion-sensor-off", offColor:  Blue, onColor: Green, name: "BWM unten" }
                      ]
      
                  };
      
                  let Flur_OG_LC: PageType =
      
                  {
                  "type": "cardEntities",
                  "heading": "WC Lightcontrol",
                  "useColor": true,
                  "subPage": true,
                  "parent": Flur_OG,
                  "items": [
                            /*PageItem*/{ navigate: true, id: 'Flur_OG_LC_1', icon: 'tools',offColor: Menu, onColor: Menu, name: 'BWM', buttonText: 'Einst.'},
                            /*PageItem*/{ navigate: true, id: 'Flur_OG_LC_2', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Auto Aus', buttonText: 'Einst.'},
                            /*PageItem*/{ navigate: true, id: 'Flur_OG_LC_4', icon: 'tools',offColor: Menu, onColor: Menu, name: 'Rampen', buttonText: 'Einst.'}
                          ]
      
                  };
      
                          let Flur_OG_LC_1: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Flur LC BWM",
                          "useColor": true,
                          "subPage": true,
                          "parent": Flur_OG_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnMotionEnable", name:"BWM", icon: "lightbulb-off-outline", onColor: White, offColor: Red},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnMotionMinLux", name:"BWM MinLux", icon: "sun-wireless-outline", minValue: 0, maxValue: 25},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnMotion.StartWerte", name: "BWM Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: Red}
                                   ]
                          };
      
                          let Flur_OG_LC_2: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Flur LC Auto Aus",
                          "useColor": true,
                          "subPage": true,
                          "parent": Flur_OG_LC,
                          "items": [                          
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffTimed.Enabled", name:"Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red}, 
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffTimedTime", name: "Ausschaltzeit", icon: "timer-cog-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffTimed.NurWennKeinBewegung", name:"Nur ohne Beweg.", icon: "motion-sensor",icon2: "motion-sensor-off"}
                                   ]
                          };
      
                          let Flur_OG_LC_3: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Flur LC Helligk.",
                          "useColor": true,
                          "subPage": true,
                          "parent": Flur_OG_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnLux.Startwerte", name: "Hell. Startwerte", icon: "lightbulb-question-outline", onColor: White, offColor: White},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnLux.NurWennAnwesend", name:"nur wenn Anwesend", icon: "head-question-outline"},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOnLux.MinLux", name: "Hell. MinLux", icon: "weather-sunny", onColor: White, offColor: Red, minValue: 0, maxValue: 25},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.AutoOffLux.MinLux", name:"Hell. Auschalten", icon: "weather-sunny-off", onColor: White, offColor: Red, minValue: 0, maxValue: 25}
                                   ]
      
                          };
      
                          let Flur_OG_LC_4: PageType =
      
                          {
                          "type": "cardEntities",
                          "heading": "Flur LC Rampen",
                          "useColor": true,
                          "subPage": true,
                          "parent": Flur_OG_LC,
                          "items": [
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOnEnableTime", name: "Rampe An Zeit", icon: "lightbulb-on-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOnEnable", name:"Rampe An", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOffEnableTime", name:"Rampe Aus Zeit", icon: "lightbulb-off-outline", onColor: White, offColor: Red, minValue: 0, maxValue: 300},
                                  /*PageItem*/{ id: "alias.0.TreppeFlur.LC.Komplett.RampOffEnable", name:"Rampe Aus", icon: "lightbulb-off-outline", onColor: White, offColor: Red}
                                  
                                   ]
      
                          };                                        
      //########### UG ###############################################################################################################################################
      //########### UG ###############################################################################################################################################
      //########### UG ###############################################################################################################################################
      

      Hoffe mir kann jemand weiterhelfen. Ist nur ein Auszug, aber da wird halt hauptsächlich was angemeckert.

      T Offline
      T Offline
      TT-Tom
      schrieb am zuletzt editiert von
      #6747

      @danny_v1

      kannst du bitte die Fehlermeldung auch mal posten.

      Was mir gleich aufgefallen ist, das deine Seiten wo Subpage : False steht es sich ja um Hauptseiten handelt. Diese haben kein prev oder next. Die Reihenfolge bestimmt die Reihenfolge unter pages.

      Werde mal alles in meine Config laden und mal schauen.

      hier nochmal die Info zur Navigation

      Gruß Tom
      https://github.com/tt-tom17
      Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

      NSPanel Script Wiki
      https://github.com/joBr99/nspanel-lovelace-ui/wiki

      NSPanel Adapter Wiki
      https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

      D 1 Antwort Letzte Antwort
      0
      • T TT-Tom

        @danny_v1

        kannst du bitte die Fehlermeldung auch mal posten.

        Was mir gleich aufgefallen ist, das deine Seiten wo Subpage : False steht es sich ja um Hauptseiten handelt. Diese haben kein prev oder next. Die Reihenfolge bestimmt die Reihenfolge unter pages.

        Werde mal alles in meine Config laden und mal schauen.

        hier nochmal die Info zur Navigation

        D Offline
        D Offline
        danny_v1
        schrieb am zuletzt editiert von
        #6748

        @tt-tom
        Ich habe gerade meinen Fehler gefunden, es hat immer in den Seiten "xxx_LC4" ein Komma gefehlt.

        Es kamen ja keine Fehlermeldungen nur in der Miniaturansicht waren sehr lange Teile rot markiert. Naja manchmal sieht man den Wald vor lauter Bäumen nicht!

        T 1 Antwort Letzte Antwort
        0
        • D danny_v1

          @tt-tom
          Ich habe gerade meinen Fehler gefunden, es hat immer in den Seiten "xxx_LC4" ein Komma gefehlt.

          Es kamen ja keine Fehlermeldungen nur in der Miniaturansicht waren sehr lange Teile rot markiert. Naja manchmal sieht man den Wald vor lauter Bäumen nicht!

          T Offline
          T Offline
          TT-Tom
          schrieb am zuletzt editiert von
          #6749

          @danny_v1

          wollte dir auch grade die Zeilen posten. Schön wenn es läuft.

          Gruß Tom
          https://github.com/tt-tom17
          Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

          NSPanel Script Wiki
          https://github.com/joBr99/nspanel-lovelace-ui/wiki

          NSPanel Adapter Wiki
          https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

          1 Antwort Letzte Antwort
          0
          • T Takahara

            @armilar

            Moin,

            Ich versuche einen Shelly Dimmer zu steuern und anzuzeigen. Bei der Erstellung, sowie dem Verständnis von Alias habe ich noch keinen wirklichen Durchblick.

            2025-01-07 21_18_34-Window.png

            Wie genau muss ich die ID konfiguieren um die Stehleuchte richtig darzustellen und anzusteuern?

            let Wohnzimmer: PageType =
            {
                'type': 'cardEntities',
                'heading': 'Wohnzimmer',
                'useColor': true,
                'items': [
                    // { id: 'alias.0.Geräte_für_NSPanels.WZ_Licht_Auto', interpolateColor: true},
                    // { id: 'alias.0.Geräte_für_NSPanels.OG_BZ_Licht_Auto', interpolateColor: true},
                    // { id: 'alias.0.Geräte_für_NSPanels.OG_BZ_Deckenlicht', interpolateColor: true}, 
                    { id: 'alias.0.Geräte_für_NSPanels.Stehleuchte', interpolateColor: true},
                   // { id: 'alias.0.NSPanel_1.ShellyDuoTest', name: 'Shelly Duo GU10', minValueBrightness: 0, maxValueBrightness: 100, minValueColorTemp: 6465, maxValueColorTemp: 3000, interpolateColor: true, modeList: ['Color','White'], inSel_ChoiceState: true},
                   // { id: 'alias.0.NSPanel_1.Luftreiniger', icon: 'power', icon2: 'power',offColor: MSRed, onColor: MSGreen}
                ]
            };
            

            VG Takahara

            ArmilarA Offline
            ArmilarA Offline
            Armilar
            Most Active Forum Testing
            schrieb am zuletzt editiert von Armilar
            #6750

            @takahara

            Mein Shelly Dimmer:

            e69b25ee-a3fa-4ef1-91a3-e411776e8daf-image.png

            Mein PageItem:

            { id: 'alias.0.Haus.Erdgeschoss.Esszimmer.Licht.Leuchten_Esstisch', name: 'Esszimmertisch', interpolateColor: true},
            

            Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
            https://github.com/joBr99/nspanel-lovelace-ui/wiki

            Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

            1 Antwort Letzte Antwort
            1
            • T Offline
              T Offline
              Tiedi
              schrieb am zuletzt editiert von
              #6751

              Hallo,

              ich habe 3 NSpanels am Laufen. Ein NSpanel versucht immer wieder ein Tasmota Update durchzuführen. Es fragt dann auf dem Display ob das Update durchgeführt werden soll. Kann man das dekativieren?
              Meine anderen beiden Panels machen es auc nicht.

              T 1 Antwort Letzte Antwort
              1
              • T Tiedi

                Hallo,

                ich habe 3 NSpanels am Laufen. Ein NSpanel versucht immer wieder ein Tasmota Update durchzuführen. Es fragt dann auf dem Display ob das Update durchgeführt werden soll. Kann man das dekativieren?
                Meine anderen beiden Panels machen es auc nicht.

                T Offline
                T Offline
                TT-Tom
                schrieb am zuletzt editiert von TT-Tom
                #6752

                @tiedi

                Das kannst du in den Serviceseiten deaktivieren.
                Unter Info -> Update Meldungen.

                Gruß Tom
                https://github.com/tt-tom17
                Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

                NSPanel Script Wiki
                https://github.com/joBr99/nspanel-lovelace-ui/wiki

                NSPanel Adapter Wiki
                https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

                1 Antwort Letzte Antwort
                1
                • D danny_v1

                  Hi,
                  ich habe durch kopieren und einfügen von einem ins andere Panel und hin und her (insgesamt 4 Panels) mir ein paar Klammerfehler eingeschleppt. Die funktionieren trotzdem nur manchmal hängt dadurch die Navigation und die Exitpage des des Screensavers haut nicht mehr hin. Ein paar Fehler habe ich gefunden, aber es müssen noch welche drin sein (langer roter Balken an der Seite der Codeminiaturansicht). Gibt es irgendein Tool um den Code zu überprüfen und so die Fehlerhaften Stellen zu finden? Sind nun leider schon ca 3000 Zeilen an Seiten zusammengekommen.

                  M Offline
                  M Offline
                  Maddin44
                  schrieb am zuletzt editiert von
                  #6753

                  @danny_v1 Ich weiss nicht ob es Dir hilft, aber ich nutze dafür immer notepad++. Da kannst du verschiedene Sprachen (Sql, java, typescript geht glaube ich auch) auswählen. Wenn du dann ein Klammersymbol anklickst, wird dieses und das dazugehörige rot markiert. Mir hilft das immer die Scripte zu lesen und Fehler zu finden.

                  1 Antwort Letzte Antwort
                  1
                  • T Offline
                    T Offline
                    Takahara
                    schrieb am zuletzt editiert von Takahara
                    #6754

                    Hallo,

                    kann man einen Kamerastream von einer Unifi Kamera auf das NS Panel bringen, das automatisch angezeigt wird, sobald die Türklingel betätigt wird?

                    Habe den IoBroker + Unifi Protect im Netzwerk laufen.

                    Vielen Dank im Vorraus
                    Takahara

                    T 1 Antwort Letzte Antwort
                    0
                    • T Takahara

                      Hallo,

                      kann man einen Kamerastream von einer Unifi Kamera auf das NS Panel bringen, das automatisch angezeigt wird, sobald die Türklingel betätigt wird?

                      Habe den IoBroker + Unifi Protect im Netzwerk laufen.

                      Vielen Dank im Vorraus
                      Takahara

                      T Offline
                      T Offline
                      TT-Tom
                      schrieb am zuletzt editiert von
                      #6755

                      @takahara

                      leider nein, auch keine Standbilder.

                      Gruß Tom
                      https://github.com/tt-tom17
                      Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

                      NSPanel Script Wiki
                      https://github.com/joBr99/nspanel-lovelace-ui/wiki

                      NSPanel Adapter Wiki
                      https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

                      1 Antwort Letzte Antwort
                      1
                      • T Offline
                        T Offline
                        Takahara
                        schrieb am zuletzt editiert von
                        #6756

                        @tt-tom Danke für deine rasche Rückmeldung. Ist es denn theoretisch möglich und falls ja für die Zukunft geplant eine entsprechende Lösung zu programmieren?

                        VG Takahara

                        T 1 Antwort Letzte Antwort
                        0
                        • T Takahara

                          @tt-tom Danke für deine rasche Rückmeldung. Ist es denn theoretisch möglich und falls ja für die Zukunft geplant eine entsprechende Lösung zu programmieren?

                          VG Takahara

                          T Offline
                          T Offline
                          TT-Tom
                          schrieb am zuletzt editiert von
                          #6757

                          @takahara
                          Wenn ich das richtig verstanden habe, ist es auch theoretisch nicht möglich. Es liegt an der Ansteuerung des Display, @Armilar kann es dir da genauer erklären.

                          Gruß Tom
                          https://github.com/tt-tom17
                          Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

                          NSPanel Script Wiki
                          https://github.com/joBr99/nspanel-lovelace-ui/wiki

                          NSPanel Adapter Wiki
                          https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

                          1 Antwort Letzte Antwort
                          0
                          • ArmilarA Offline
                            ArmilarA Offline
                            Armilar
                            Most Active Forum Testing
                            schrieb am zuletzt editiert von
                            #6758

                            @tt-tom
                            @Takahara

                            Kamerastream auf dem NSPanel - gute Idee die ich auch vor ein paar Monaten bereits hatte, aber in der Tat aktuell nicht umsetzbar ist.

                            Das Problem liegt nicht in dem Nextion-Screen oder im Tasmota selbst, da diese an sich sehr gut mit Streams umgehen können. Das eigentliche Problem ist der Layer in der Mitte (der Berry Driver), welcher die serielle Kommunikation zwischen dem Tasmota und dem Nextion-Display sicherstellt. Sobald es jemandem gelingt diese Hürde zu überwinden, können wir auch Streams im NSPanel bereitstellen. Mir ist jedoch aktuell keine Lösung bekannt. 😊

                            Installationsanleitung, Tipps, Alias-Definitionen, FAQ für das Sonoff NSPanel mit lovelace UI unter ioBroker
                            https://github.com/joBr99/nspanel-lovelace-ui/wiki

                            Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                            B 1 Antwort Letzte Antwort
                            3
                            • ArmilarA Armilar

                              @tt-tom
                              @Takahara

                              Kamerastream auf dem NSPanel - gute Idee die ich auch vor ein paar Monaten bereits hatte, aber in der Tat aktuell nicht umsetzbar ist.

                              Das Problem liegt nicht in dem Nextion-Screen oder im Tasmota selbst, da diese an sich sehr gut mit Streams umgehen können. Das eigentliche Problem ist der Layer in der Mitte (der Berry Driver), welcher die serielle Kommunikation zwischen dem Tasmota und dem Nextion-Display sicherstellt. Sobald es jemandem gelingt diese Hürde zu überwinden, können wir auch Streams im NSPanel bereitstellen. Mir ist jedoch aktuell keine Lösung bekannt. 😊

                              B Offline
                              B Offline
                              bob der 1.
                              schrieb am zuletzt editiert von
                              #6759

                              Aktion:

                              Das Panel heute für 42€

                              https://m.banggood.com/de/SONOFF-NSPanel-Smart-Scene-Wall-Switch-EU-US-Wifi-Smart-Thermostat-Display-Switch-All-in-One-Control-for-Alexa-Google-Home-p-1922903.html?akmClientCountry=DE&admitad_uid=0b955b71b651d8add45b6870bb9ac9bd&utm_content=605111

                              falls noch jemand welches braucht

                              Gutscheincode:

                              BG39fe1b
                              Ist keine Werbung,einfach nur falls jemand paar Euro sparen will

                              ? T 2 Antworten Letzte Antwort
                              1
                              • B bob der 1.

                                Aktion:

                                Das Panel heute für 42€

                                https://m.banggood.com/de/SONOFF-NSPanel-Smart-Scene-Wall-Switch-EU-US-Wifi-Smart-Thermostat-Display-Switch-All-in-One-Control-for-Alexa-Google-Home-p-1922903.html?akmClientCountry=DE&admitad_uid=0b955b71b651d8add45b6870bb9ac9bd&utm_content=605111

                                falls noch jemand welches braucht

                                Gutscheincode:

                                BG39fe1b
                                Ist keine Werbung,einfach nur falls jemand paar Euro sparen will

                                ? Offline
                                ? Offline
                                Ein ehemaliger Benutzer
                                schrieb am zuletzt editiert von
                                #6760

                                @bob-der-1 sagte in SONOFF NSPanel mit Lovelace UI:

                                BG39fe1b

                                Danke, schau ich gleich mal! hatte mir letztes Jahr bei Alza 10 Stk. in weiss fuer 45 geholt, und dann am BF welche nachgekauft.. mittlerweile sind 13 im Einsatz, eins soll noch montiert werden, dann hab ich noch eins in Reserve.

                                1 Antwort Letzte Antwort
                                0
                                • B bob der 1.

                                  Aktion:

                                  Das Panel heute für 42€

                                  https://m.banggood.com/de/SONOFF-NSPanel-Smart-Scene-Wall-Switch-EU-US-Wifi-Smart-Thermostat-Display-Switch-All-in-One-Control-for-Alexa-Google-Home-p-1922903.html?akmClientCountry=DE&admitad_uid=0b955b71b651d8add45b6870bb9ac9bd&utm_content=605111

                                  falls noch jemand welches braucht

                                  Gutscheincode:

                                  BG39fe1b
                                  Ist keine Werbung,einfach nur falls jemand paar Euro sparen will

                                  T Offline
                                  T Offline
                                  Toysman
                                  schrieb am zuletzt editiert von
                                  #6761

                                  @bob-der-1 sagte in SONOFF NSPanel mit Lovelace UI:

                                  Aktion:

                                  Das Panel heute für 42€

                                  https://m.banggood.com/de/SONOFF-NSPanel-Smart-Scene-Wall-Switch-EU-US-Wifi-Smart-Thermostat-Display-Switch-All-in-One-Control-for-Alexa-Google-Home-p-1922903.html?akmClientCountry=DE&admitad_uid=0b955b71b651d8add45b6870bb9ac9bd&utm_content=605111

                                  falls noch jemand welches braucht

                                  Gutscheincode:

                                  BG39fe1b
                                  Ist keine Werbung,einfach nur falls jemand paar Euro sparen will

                                  Gutscheincode wird als ungültig angegeben... schade, aber trotzdem Danke

                                  Viele Grüße
                                  Harry

                                  B 1 Antwort Letzte Antwort
                                  1
                                  • T Toysman

                                    @bob-der-1 sagte in SONOFF NSPanel mit Lovelace UI:

                                    Aktion:

                                    Das Panel heute für 42€

                                    https://m.banggood.com/de/SONOFF-NSPanel-Smart-Scene-Wall-Switch-EU-US-Wifi-Smart-Thermostat-Display-Switch-All-in-One-Control-for-Alexa-Google-Home-p-1922903.html?akmClientCountry=DE&admitad_uid=0b955b71b651d8add45b6870bb9ac9bd&utm_content=605111

                                    falls noch jemand welches braucht

                                    Gutscheincode:

                                    BG39fe1b
                                    Ist keine Werbung,einfach nur falls jemand paar Euro sparen will

                                    Gutscheincode wird als ungültig angegeben... schade, aber trotzdem Danke

                                    B Offline
                                    B Offline
                                    bob der 1.
                                    schrieb am zuletzt editiert von
                                    #6762

                                    @toysman sagte in SONOFF NSPanel mit Lovelace UI:

                                    @bob-der-1 sagte in SONOFF NSPanel mit Lovelace UI:

                                    Aktion:

                                    Das Panel heute für 42€

                                    https://m.banggood.com/de/SONOFF-NSPanel-Smart-Scene-Wall-Switch-EU-US-Wifi-Smart-Thermostat-Display-Switch-All-in-One-Control-for-Alexa-Google-Home-p-1922903.html?akmClientCountry=DE&admitad_uid=0b955b71b651d8add45b6870bb9ac9bd&utm_content=605111

                                    falls noch jemand welches braucht

                                    Gutscheincode:

                                    BG39fe1b
                                    Ist keine Werbung,einfach nur falls jemand paar Euro sparen will

                                    Gutscheincode wird als ungültig angegeben... schade, aber trotzdem Danke

                                    Oh,schade....dann 53€

                                    O 1 Antwort Letzte Antwort
                                    0
                                    • B bob der 1.

                                      @toysman sagte in SONOFF NSPanel mit Lovelace UI:

                                      @bob-der-1 sagte in SONOFF NSPanel mit Lovelace UI:

                                      Aktion:

                                      Das Panel heute für 42€

                                      https://m.banggood.com/de/SONOFF-NSPanel-Smart-Scene-Wall-Switch-EU-US-Wifi-Smart-Thermostat-Display-Switch-All-in-One-Control-for-Alexa-Google-Home-p-1922903.html?akmClientCountry=DE&admitad_uid=0b955b71b651d8add45b6870bb9ac9bd&utm_content=605111

                                      falls noch jemand welches braucht

                                      Gutscheincode:

                                      BG39fe1b
                                      Ist keine Werbung,einfach nur falls jemand paar Euro sparen will

                                      Gutscheincode wird als ungültig angegeben... schade, aber trotzdem Danke

                                      Oh,schade....dann 53€

                                      O Offline
                                      O Offline
                                      oOchrisOo
                                      schrieb am zuletzt editiert von
                                      #6763

                                      @bob-der-1
                                      Bei Amazon mit Prime gerade für 47€

                                      1 Antwort Letzte Antwort
                                      0
                                      • T Nicht stören
                                        T Nicht stören
                                        ticaki
                                        schrieb am zuletzt editiert von ticaki
                                        #6764

                                        Wir haben da was in Arbeit, das die ALTEN und SCHWACHEN - damit ist mein Cousin gemeint - nicht mehr meckern könnenm, das die Schrift zu klein ist. Daher gibts demnächst diese beiden zusätzlichen Auswahlmöglichkeiten:

                                        Easy-View Screensaver:
                                        image.png

                                        cardGrid3:
                                        image.png

                                        Danke an @Armilar @TT-Tom

                                        Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                                        Spenden

                                        1 Antwort Letzte Antwort
                                        4
                                        • ArmilarA Armilar

                                          SONOFF NSPanel Touch Display Switch

                                          mit Lovelace UI und TASMOTA Firmware

                                          60848839-53b0-4e2b-a370-28e02960bfcd-image.png

                                          Das Thema https://forum.iobroker.net/topic/50888/sonoff-nspanel/1542 wird hier jetzt fortgesetzt...

                                          An alle begeisterten NSPanel'er

                                          Dieser Thread soll sich jetzt ausschließlich mit den Fragen und Themen rund um das SONOFF NSPanel mit Lovelace UI beschäftigen.

                                          Wie alles begann:

                                          • 22.10.2021
                                            Blakadder's Dokumentation der Dekodierung des NSPanel-Kommunikationsprotokolls und Einrichtung der Steuerung des Nextion-Bildschirms mit benutzerdefinierter Firmware.
                                            https://blakadder.com/nspanel-hacking/
                                          • 01.01.2022
                                            Erste Gehversuche mit Blockly-Scripts auf der Original-Firmware nach einer ersten coolen Anleitung für den ioBroker von @haus-automatisierung.
                                          • ...
                                            Funkstille auf allen Kanälen, da das Panel in der Originalsoftware einfach zu wenig Funktionalität hat. Ein Vergleich mit "Jugend forscht" wäre maßlos übertrieben...
                                          • 15.01.2022
                                            @jobr99 Erstes POC von Lovelace Konzept mit ESPhome Komponente, da Nextion Upload Protcol unter tasmota nicht umsetzbar ist (berry tcpclient crashed ESP, HTTP Libary ist auf viel zu kleine Dateien limitiert)
                                          • 17.01.2022
                                            peepshow-21 Erste implementierung von Nextion Upload Protocol 1.1 mit Workaround für HTTP Libary über Java Converter um tft files für tasmota vorzubereiten
                                          • 20.01.2022
                                            s-hadinger fixt bug in berry tcpclient
                                          • 31.01.2022
                                            Erste Version für HomeAssistant mit Nodered und Tasmota
                                          • 08.02.2022
                                            @joBr99 Erste Implementierung von Nextion Upload Protokoll 1.2 in Berry basiertend auf HTTP Range Header Requests und lokalem Buffer (funktioniert nur mit -nspanel tasmota build uns PSRAM Support)
                                          • 12.02.2022
                                            peepshow-21 Implementierung von Nextion Upload Protocol 1.2 mit vollständigem Download und "streaming" zum Nextion Screen während dem Download
                                          • 05.03.2022
                                            @joBr99 Portierung von Node-Red Flow zu AppDaemon, da AppDaemon sich besser eignet zur Implementierung vom Backend
                                          • 13.03.2022
                                            @joBr99 Erste Version von Lovelace Berry Driver basierend auf Upload Protocol Implementierung von peepshow-21, da diese etwas stabiler läuft mit zusätzlichem Error Handling
                                          • 30.03.2022
                                            @joBr99 kommt mit der Info um die Ecke, dass es ein erstes Script v1.9.0 für den ioBroker von @Britzelpuf gibt. Zu diesem Zeitpunkt gab es bereits den Screensaver die Seitennavigation und die Möglichkeit eine Lampe, einen Dimmer eine Taste und eine Info, sowie die popUps für Licht (Brightness) und Shutter (Position) und einen Thermostaten zur Steuerung einzubinden.
                                          • 10.04.2022
                                            @joBr99 Firmware got bigger and bigger with >15 Minutes Flashing Time for the tft file
                                            Increased Flashing Speed of Berry Driver from 115200 to 921600 and added skipping to the End with HTTP Range Headers, resulted in faster display flashing
                                          • 11.04.2022
                                            @Armilar macht seine ersten Änderungen auf github und hört seit dem nicht mehr auf, weitere Funktionen in das TSScript hinzuzufügen... 😉
                                            @joBr99 entwickelt die HMI und neue Funktionen für Home Assistant schneller als der Wind - und macht das Panel zur echten Bereicherung für jedes Smart Home 😊 👏

                                          heute

                                          • Eine der besten Community's die ich jemals erlebt habe. Hilfsbereit und kompetent wird jeder mit Hilfestellungen und Problemlösungen in kürzester Zeit versorgt.

                                          Es macht großen Spaß zusammen mit euch...

                                          VG
                                          Armilar


                                          Beispiele:

                                          09ae2c13-c606-4ef5-88dc-26fccd14dd85-image.png

                                          cf500331-70d8-4150-ac59-aabff1a27f7f-image.png

                                          a5dbb6f4-403b-4081-b2e9-a17cbc3af26c-image.png

                                          b41e2fed-abaa-4993-ae6f-2344f4e3afc8-image.png

                                          048fc1af-d72e-45fe-9102-688d40b2df18-image.png

                                          08edcab4-03b7-4c0f-923e-0f5b1c639cca-image.png

                                          ad94cddf-a0d0-40a7-971c-16504e8949fd-image.png

                                          263b23cc-d003-4af6-98b6-ed994c244890-image.png

                                          07373515-a92e-4cc9-b717-716e4fd4413f-image.png

                                          7c4a1f2f-26d7-4aeb-987d-3e30a671378d-image.png


                                          Features:

                                          • cardEntities für die Unterstützung diverser Steuerelemente (siehe Beispiele)
                                          • cardGrid (3x2-Raster) für die Unterstützung diverser Steuerelemente (siehe Beispiele)
                                          • cardGrid2 (4x2) für die Unterstützung diverser Steuerelemente (siehe Beispiele)
                                          • cardGrid3 (2x2) für die Unterstützung diverser Steuerelemente (siehe Beispiele)
                                          • cardPower zur Visualisierung der Energieverteilung
                                          • cardAlarm als Seite für Alarmanlagen
                                          • cardMedia - der Media-Player (Diverse Adapter)
                                          • cardThermo - Seite für Thermostat oder Klimaanlage
                                          • cardQR - Seite mit QRCode zur Anzeige von WLAN-Informationen
                                          • cardChart - Balkendiagramme
                                          • Detailseiten für Leuchtmittel (Helligkeit, Temperatur und Farbe)
                                          • Detailseite für Jalousien/Rollos (Position und Tilt)
                                          • Detailseite für Ventilatoren
                                          • Detailseite für Timer
                                          • Auswahl Detailseite für Werteliste
                                          • Bildschirmschonerseite mit Uhrzeit, Datum und Wetterinformationen oder/und Infos
                                          • Multilingual (unterstützt über 40 Sprachen)
                                          • Unbegrenzte Anzahl an Seiten und Unterseiten
                                          • Abfallkalender
                                          • Favoritenseiten
                                          • etc.

                                            ich glaube da ist eine verbesserte "cardMedia" in der Entwicklung - sieht cool aus...
                                            72571469-4a78-4caf-ba0e-7a67865bb13c-image.png

                                          NsPanel Lovelace UI ist eine Firmware für den Nextion-Bildschirm innerhalb des NSPanel.

                                          Die allgemeine Idee ist, dass das Nextion-Display einen Seitenzähler durchläuft und der ESP32 dem Display sagt, was zu tun ist. Alles ist dynamisch durch Alias-Erstellung konfigurierbar, es ist nicht erforderlich, Nextion Editor zu programmieren. Neben der Seiten-Definition sind im ioBroker keine Programmierkenntnisse erforderlich. Es ist im ioBroker ebenfalls kein Lovelace-Adapter erforderlich.

                                          Das Panel arbeitet mit Tasmota und MQTT. Um das Panel zu steuern und mit Inhalten von ioBroker zu aktualisieren, gibt es ein vordefiniertes TypeScript (TS) für den JavaScript-Adapter.


                                          Aktuelle Wiki (Anleitung) für den ioBroker

                                          https://github.com/joBr99/nspanel-lovelace-ui/wiki by @Kuckuckmann

                                          NsPanelTs.ts (TypeScript) für ioBroker v4.9.3.X

                                          zur Steuerung des SONOFF NSPanel mit dem ioBroker by @Armilar und @TT-Tom
                                          https://github.com/joBr99/nspanel-lovelace-ui/tree/main/ioBroker
                                          abgestimmt auf:

                                          • TFT 58 / v4.9.3 ( by @joBr99 / Armilar > 4.4.0)
                                          • BerryDriver 9 ( by peepshow-21 (based on code by blakadder and s-hadinger))
                                          • Tasmota 15.1.0 ( by Theo Arends ) --> Theo-Arends-Sonoff-MQTT-OTA

                                          Projekt:

                                          by @joBr99

                                          • main (Home Assistant - Version und Nextion HMI): https://github.com/joBr99/nspanel-lovelace-ui by @joBr99
                                          • ioBroker: https://github.com/joBr99/nspanel-lovelace-ui/tree/main/ioBroker by @Armilar (HA - Adaption)

                                          Icon-Mapper:

                                          • icon_mapping.ts:
                                            https://github.com/joBr99/nspanel-lovelace-ui/blob/main/ioBroker/icon_mapping.ts
                                            (TypeScript muss in global liegen)

                                          Icons:

                                          unter: https://docs.nspanel.pky.eu/icon-cheatsheet.html

                                          Video-Tutorial:

                                          https://www.youtube.com/watch?v=ZPLJk2ZLo_8 by @haus-automatisierung

                                          ? Offline
                                          ? Offline
                                          Ein ehemaliger Benutzer
                                          schrieb am zuletzt editiert von
                                          #6765

                                          @armilar

                                          Seit dem Update auf JavaScript Version 8.9.0 kommt das hier:

                                          
                                          	script.js.common.NSPanels.NSP1-BB-44011: TypeScript compilation failed: payload: 'dimmode~' + getState(NSPanel_Path + 'ScreensaverInfo.activeDimmodeBrightness').val + '~' + getState(NSPanel_Path + 'ScreensaverInfo.activeBrightness').val ?? ^ERROR: Right operand of ?? is unreachable because the left operand is never nullish. payload: 'dimmode~' + timeDimMode.brightnessDay + '~' + getState(NSPanel_Path + 'ScreensaverInfo.activeBrightness').val ?? ^ERROR: Right operand of ?? is unreachable because the left operand is never nullish. payload: 'dimmode~' + timeDimMode.brightnessNight + '~' + getState(NSPanel_Path + 'ScreensaverInfo.activeBrightness').val ?? ^ERROR: Right operand of ?? is unreachable because the left operand is never nullish.
                                          
                                          
                                          T 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          450

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe