Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Hardware
    4. SONOFF NSPanel mit Lovelace UI

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    SONOFF NSPanel mit Lovelace UI

    This topic has been deleted. Only users with topic management privileges can see it.
    • P
      peterfido @TT-Tom last edited by peterfido

      @tt-tom sagte in SONOFF NSPanel mit Lovelace UI:

      Seit

      14.12.2023 - v4.3.3.22 Add UpdateMessage => disable the update messages
      

      lassen sich die Meldungen abschalten.

      Da muss ich mal suchen. Hatte es auf Anhieb nicht gefunden.

      Edit: ist nicht unter Firmware, sondern und den Einstellungen zu finden.

      T 1 Reply Last reply Reply Quote 0
      • T
        TT-Tom @peterfido last edited by

        @peterfido

        Im Wiki gibt es für die Serviceseiten ein extra Menüpunkt.

        1 Reply Last reply Reply Quote 1
        • N
          Neral12 @TT-Tom last edited by Neral12

          @tt-tom
          Irgendwie komme ich nicht so ganz klar mir den inkonsistenten Definitionen von ScreensaverEntityIconSelect.
          In mrIcon funktioniert es, in indicatorScreensaverEntity wird nichts angezeigt.
          Das Beispiel für EntityIconSelect sagt Lower values are first, beginnt aber mit der höchsten Wert an ??

          OK:

              mrIcon1ScreensaverEntity: {
                  ScreensaverEntity: '0_userdata.0.example_number',
                  ScreensaverEntityIconOn: null,
                  ScreensaverEntityIconOff: null,
                  ScreensaverEntityIconSelect: { '0': 'shield-off', '1': 'shield', '2': 'shield-home' },
                  ScreensaverEntityValue: null,
                  ScreensaverEntityValueDecimalPlace: 1,
                  ScreensaverEntityValueUnit: null,
                  ScreensaverEntityOnColor: Red,
                  ScreensaverEntityOffColor: Green,
              },
          

          geht nicht:

              indicatorScreensaverEntity: [ {
                  ScreensaverEntity: '0_userdata.0.example_number',
                  ScreensaverEntityFactor: 1,
                  ScreensaverEntityDecimalPlaces: 0,
                  ScreensaverEntityIconOn: null,
                  ScreensaverEntityIconOff: null,
                  ScreensaverEntityIconSelect:[{icon: 'sun-thermometer', value:40},
                                      {icon: 'sun-thermometer-outline', value: 35},
                                      {icon: 'thermometer-high', value: 30}],
                  ScreensaverEntityText: '',
                  ScreensaverEntityUnitText: '',
                  ScreensaverEntityIconColor: '0_userdata.0.example_Color_number',
                  ScreensaverEntityNaviToPage: Menu1,
              }]
          
          T 1 Reply Last reply Reply Quote 0
          • T
            ticaki Developer @Neral12 last edited by ticaki

            @neral12 sagte in SONOFF NSPanel mit Lovelace UI:

            ScreensaverEntityIconSelect

            Ich hab das damals nur für bottom eingebaut - sollte jetzt nicht das problem sein, das zu erweitern, wir haben doch am donnerstag einen Feiertag, dann guck ich mal.

            T N 2 Replies Last reply Reply Quote 0
            • T
              TT-Tom @ticaki last edited by TT-Tom

              @ticaki

              ich finde es laut Code nur in den mrIcon1 und 2. bei left, bottom und indicator ist nix zu finden.

              T 1 Reply Last reply Reply Quote 0
              • N
                Neral12 @ticaki last edited by

                @ticaki
                Auch so, das war also nur vorbereitet und ohne Funktion?

                    export type ScreenSaverElement = {
                        ScreensaverEntity: string;
                        ScreensaverEntityText: string;
                        /**
                        * Value wird mit diesem Factor multipliziert.
                        */
                        ScreensaverEntityFactor?: number;
                        ScreensaverEntityDecimalPlaces?: number;
                        ScreensaverEntityDateFormat?: Intl.DateTimeFormatOptions;
                        ScreensaverEntityIconOn?: string | null;
                        ScreensaverEntityIconOff?: string | null;
                        ScreensaverEntityUnitText?: string;
                        ScreensaverEntityIconColor?: RGB | IconScaleElement | string;
                        ScreensaverEntityOnColor?: RGB;
                        ScreensaverEntityOffColor?: RGB;
                        ScreensaverEntityOnText?: string | null;
                        ScreensaverEntityOffText?: string | null;
                        ScreensaverEntityNaviToPage?: PageType;
                        /**
                         * To show different icons for different values in the screensaver
                         * 
                         * Value is the threshold for the icon. Lower values are first.
                         * Example:
                         * [
                                    {icon: 'sun-thermometer', value:40},
                                    {icon: 'sun-thermometer-outline', value: 35},
                                    {icon: 'thermometer-high', value: 30},
                                    {icon: 'thermometer', value: 25},
                                    {icon: 'thermometer-low', value: 15},
                                    {icon: 'snowflake-alert', value: 2},
                                    {icon: 'snowflake-thermometer', value: -2},
                                    {icon: 'snowflake', value: -10},
                                    ]
                         */
                        ScreensaverEntityIconSelect?: {icon:string, value: number}[] | null;
                    };
                
                T T 2 Replies Last reply Reply Quote 0
                • T
                  TT-Tom @Neral12 last edited by

                  @neral12

                  ja, der @ticaki steht auf Typs 😉 und formuliert sie immer gleich komplett aus.

                  1 Reply Last reply Reply Quote 0
                  • T
                    ticaki Developer @TT-Tom last edited by ticaki

                    @tt-tom

                    Das sind 2 verschiedene Funktionen hab das wohl zu unterschiedlichen Zeiten für unterschiedliche Zwecke eingebaut... ups 😄

                    In MrIcon ist es ein Array wie common.states. (HandleScreensaverStatusIcons)
                    In bottom ein wenn Werte kleiner/gleich X zeige icon - geht von klein zu groß. (determineScreensaverStatusIcon)

                    EDIT: anhand des Funktionsnamen wollte ich das wohl auch für die Statusicons nutzen, bin dann aber wohl abgelenkt worden und habs vergessen.

                    1 Reply Last reply Reply Quote 0
                    • T
                      ticaki Developer @Neral12 last edited by ticaki

                      @neral12
                      Nein, das ist drin, aber ich brauchte das nur für die ScreensaverBottomIcons, daher hab ich das nicht für andere implementiert. Ehrlich hatte daran auch nicht gedacht.

                      Kürzer - wenn du das in die icons für bottom einbaust sollte es jetzt schon gehen, für indicator muß ich das noch einbauen und testen.

                      1 Reply Last reply Reply Quote 0
                      • N
                        Neral12 last edited by

                        @ticaki
                        Ich wollte das rechts für die 5 indicatorScreensaverEntity verwenden.

                        https://github.com/joBr99/nspanel-lovelace-ui/wiki/ioBroker-Config-Screensaver#erweiterter-screensaver

                        MrIcon kann ich nicht nehmen da fehlt leider ScreensaverEntityIconColor

                        T 1 Reply Last reply Reply Quote 0
                        • T
                          ticaki Developer @Neral12 last edited by ticaki

                          @neral12

                          Ja und wie ich geschrieben habe, am Donnerstag baue ich das ein. 🙂

                          @neral12 sagte in SONOFF NSPanel mit Lovelace UI:

                          Das Beispiel für EntityIconSelect sagt Lower values are first, beginnt aber mit der höchsten Wert an ??

                          Und hierzu noch: Lower values are first - heißt kleiner Werte erzeugen die ersten Treffer - Das hat nichts mit der Ordnung zu tun. Die Werte werden vorher von klein nach groß sortiert und dann ist der erste wert der <= Value ist der Treffer.

                          N 1 Reply Last reply Reply Quote 0
                          • N
                            Neral12 @ticaki last edited by

                            @ticaki
                            Super 👍 Besten Dank! 💯

                            1 Reply Last reply Reply Quote 0
                            • B
                              bean @TT-Tom last edited by

                              @tt-tom sagte in SONOFF NSPanel mit Lovelace UI:

                              @gargano
                              Wenn du mit einer Beta Version vom Javascript Adapter arbeitest, musst du mit so etwas rechnen.
                              Weitere Infos findest du im Testpost zum Adapter.

                              Sorry für die Nachfrage, aber wo finde ich die weiteren Infos? Welcher Testpost zum Adapter ist gemeint? (Habe das selbe "Problem")

                              T 1 Reply Last reply Reply Quote 0
                              • T
                                TT-Tom @bean last edited by

                                @bean im Bereich Tester gibt es ein aktuellen Post zum Javascript Adapter

                                B 1 Reply Last reply Reply Quote 0
                                • B
                                  bean @TT-Tom last edited by bean

                                  @tt-tom Danke, und sorry dass ich da gerade am Schlauch stehe, aber wo finde ich einen Bereich "Tester"? Hier? Im github zum Javascript? Github zum NSpanel?
                                  EDIT: Gefunden, hier im Tester zu 9.0.1

                                  1 Reply Last reply Reply Quote 1
                                  • H
                                    hmarius1 last edited by

                                    Hallo zusammen,

                                    bei mir läuft plötzlich das Script nicht mehr. Ich habe nichts geändert am System nicht mal ein Update gemacht das habe ich erst danach gemacht weil ich gedacht habe vielleicht löst das das Problem.

                                    Das TypeScript gibt folgende Fehler aus. Jemand eine Idee wie ich das behebe? Bin ich der einzige damit aktuell?

                                    19.6.2025, 20:36:16.913	[info ]: javascript.0 (26568) script.js.common.nspanel.panel3: Stopping script
                                    19.6.2025, 20:36:17.214	[info ]: javascript.0 (26568) script.js.common.nspanel.panel3: Compiling TypeScript source
                                    19.6.2025, 20:36:18.136	[error]: javascript.0 (26568) script.js.common.nspanel.panel3: TypeScript compilation failed:
                                                await setStateAsync(NSPanel_Path + 'PageNavi', <iobJS.State>{ val: "{ pagetype: 'page', pageId: 0 }", ack: true });
                                                                                                      ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'NSPanel_Dimmode_brightnessDay', <iobJS.State>{ val: 8, ack: true });
                                                                                                                               ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'NSPanel_Dimmode_hourDay', <iobJS.State>{ val: 7, ack: true });
                                                                                                                         ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'NSPanel_Dimmode_brightnessNight', <iobJS.State>{ val: 1, ack: true });
                                                                                                                                 ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'NSPanel_Dimmode_hourNight', <iobJS.State>{ val: 22, ack: true });
                                                                                                                           ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                            await setStateAsync(meanPower, <iobJS.State>{ val: meanConsumption, ack: true });
                                                                                  ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(screensaverNotifyHeading, <iobJS.State>{ val: '', ack: true });
                                                                                                     ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(screensaverNotifyText, <iobJS.State>{ val: '', ack: true });
                                                                                                  ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(obj.id, <iobJS.State>{ val: obj.state.val, ack: true }); // ack new value
                                                                                       ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'NSPanel_locales_json', <iobJS.State>{ val: JSON.stringify(response.data), ack: true });
                                                                                                                      ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'NSPanel_locales_service_json', <iobJS.State>{ val: JSON.stringify(response.data), ack: true });
                                                                                                                              ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota_Firmware.currentVersion', <iobJS.State>{ val: getState(NSPanel_Path + 'Tasmota_Firmware.onlineVersion').val, ack: true });
                                                                                                                                         ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Berry_Driver.currentVersion', <iobJS.State>{ val: getState(NSPanel_Path + 'Berry_Driver.onlineVersion').val, ack: true });
                                                                                                                                     ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                                await setStateAsync(NSPanel_Path + 'Display_Firmware.currentVersion', <iobJS.State>{ val: getState(NSPanel_Path + 'Display_Firmware.onlineVersion').val, ack: true });
                                                                                                                                             ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyHeading, <iobJS.State>{ val: Headline, ack: false });
                                                                                               ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyHeadingColor, <iobJS.State>{ val: HeadlineColor, ack: false });
                                                                                                    ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyButton1Text, <iobJS.State>{ val: Button1, ack: false });
                                                                                                   ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyButton1TextColor, <iobJS.State>{ val: Button1Color, ack: false });
                                                                                                        ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyButton2Text, <iobJS.State>{ val: Button2, ack: false });
                                                                                                   ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyButton2TextColor, <iobJS.State>{ val: Button2Color, ack: false });
                                                                                                        ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifySleepTimeout, <iobJS.State>{ val: Timeout, ack: false });
                                                                                                    ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyInternalName, <iobJS.State>{ val: InternalName, ack: false });
                                                                                                    ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyLayout, <iobJS.State>{ val: Layout, ack: false });
                                                                                              ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(popupNotifyText, <iobJS.State>{ val: [formatDate(getDateObject(new Date().getTime()), 'TT.MM.JJJJ SS:mm:ss'), '\r\n', '\r\n', Text].join(''), ack: false });
                                                                                            ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(NSPanel_Path + 'NSPanel_ipAddress', <iobJS.State>{ val: get_current_tasmota_ip_address(), ack: true });
                                                                                                               ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        await setStateAsync(NSPanel_Path + 'Tasmota_Firmware.onlineVersion', <iobJS.State>{ val: TasmotaVersionOnline, ack: true });
                                                                                                                                    ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        await setStateAsync(NSPanel_Path + 'Berry_Driver.currentVersion', <iobJS.State>{ val: JSON.parse(JSON.stringify(response.data)).nlui_driver_version, ack: true });
                                                                                                                                 ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota_Firmware.currentVersion', <iobJS.State>{ val: tasmoVersion, ack: true });
                                                                                                                                         ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Uptime', <iobJS.State>{ val: Tasmota_JSON.StatusPRM.Uptime, ack: true });
                                                                                                                        ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Version', <iobJS.State>{ val: Tasmota_JSON.StatusFWR.Version, ack: true });
                                                                                                                         ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Hardware', <iobJS.State>{ val: TasmotaHardware[0] + '\r\n' + TasmotaHardware[1], ack: true });
                                                                                                                          ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Wifi.AP', <iobJS.State>{ val: Tasmota_JSON.StatusSTS.Wifi.AP, ack: true });
                                                                                                                         ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Wifi.SSId', <iobJS.State>{ val: Tasmota_JSON.StatusSTS.Wifi.SSId, ack: true });
                                                                                                                           ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Wifi.BSSId', <iobJS.State>{ val: Tasmota_JSON.StatusSTS.Wifi.BSSId, ack: true });
                                                                                                                            ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Wifi.Channel', <iobJS.State>{ val: Tasmota_JSON.StatusSTS.Wifi.Channel, ack: true });
                                                                                                                              ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Wifi.Mode', <iobJS.State>{ val: Tasmota_JSON.StatusSTS.Wifi.Mode, ack: true });
                                                                                                                           ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Wifi.RSSI', <iobJS.State>{ val: Tasmota_JSON.StatusSTS.Wifi.RSSI, ack: true });
                                                                                                                           ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Wifi.Signal', <iobJS.State>{ val: Tasmota_JSON.StatusSTS.Wifi.Signal, ack: true });
                                                                                                                             ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Tasmota.Product', <iobJS.State>{ val: 'SONOFF NSPanel', ack: true });
                                                                                                                         ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            await setStateAsync(NSPanel_Path + 'Berry_Driver.onlineVersion', <iobJS.State>{ val: BerryDriverVersionOnline, ack: true });
                                                                                                                                    ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'TFT_Firmware.onlineVersion', <iobJS.State>{ val: NSPanelVersion, ack: true });
                                                                                                                            ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                    await setStateAsync(NSPanel_Path + 'Display_Firmware.onlineVersion', <iobJS.State>{ val: desired_display_firmware_version, ack: true });
                                                                                                                                ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        await setStateAsync(NSPanel_Path + 'Display_Firmware.currentVersion', <iobJS.State>{ val: split[2], ack: true });
                                                                                                                                     ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        await setStateAsync(NSPanel_Path + 'Display_Firmware.currentRelease', <iobJS.State>{ val: split[4], ack: true });
                                                                                                                                     ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        await setStateAsync(NSPanel_Path + 'NSPanel_Version', <iobJS.State>{ val: split[3], ack: true });
                                                                                                                     ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                                    await setStateAsync(NSPanel_Path + 'TFT_Firmware.onlineVersion', <iobJS.State>{ val: tft_version, ack: true });
                                                                                                                                            ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.HUE').ts) {
                                                                                                       ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.HUE').ts) {
                                                                                                                                           ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.RED').ts) {
                                                                                                       ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.RED').ts) {
                                                                                                                                           ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.CIE').ts) {
                                                                                                       ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.CIE').ts) {
                                                                                                                                           ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.RGB').ts) {
                                                                                                       ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                            if (getState(pageItem.id + '.TEMPERATURE').ts < getState(pageItem.id + '.RGB').ts) {
                                                                                                                                           ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                        setState(popupNotifyInternalName, <iobJS.State>{ val: words[2], ack: true });
                                                                                                 ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        setState(popupNotifyAction, <iobJS.State>{ val: true, ack: true });
                                                                                           ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        setState(popupNotifyInternalName, <iobJS.State>{ val: words[2], ack: true });
                                                                                                 ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                        setState(popupNotifyAction, <iobJS.State>{ val: false, ack: true });
                                                                                           ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.HUE').ts) {
                                                                                                      ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.HUE').ts) {
                                                                                                                                 ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.RED').ts) {
                                                                                                      ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.RED').ts) {
                                                                                                                                 ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.RGB').ts) {
                                                                                                      ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.RGB').ts) {
                                                                                                                                 ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.CIE').ts) {
                                                                                                      ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                                    if (getState(id + '.TEMPERATURE').ts < getState(id + '.CIE').ts) {
                                                                                                                                 ^
                                    ERROR: Property 'ts' does not exist on type 'AbsentState | TypedState<any>'.
                                      Property 'ts' does not exist on type 'TypedState<any>'.
                                    
                                                unsubscribe(value);
                                                            ^
                                    ERROR: Argument of type 'unknown' is not assignable to parameter of type 'string | RegExp | string[]'.
                                    
                                            await setStateAsync(NSPanel_Path + 'Sensor.Time', <iobJS.State>{ val: dateTime[0] + '\r\n' + dateTime[1], ack: true });
                                                                                                     ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                            await setStateAsync(NSPanel_Path + 'Sensor.TempUnit', <iobJS.State>{ val: '°' + Tasmota_Sensor.TempUnit, ack: true });
                                                                                                         ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(NSPanel_Path + 'Sensor.ANALOG.Temperature', <iobJS.State>{ val: parseFloat(Tasmota_Sensor.ANALOG.Temperature1), ack: true });
                                                                                                                       ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                await setStateAsync(NSPanel_Path + 'Sensor.ESP32.Temperature', <iobJS.State>{ val: parseFloat(Tasmota_Sensor.ESP32.Temperature), ack: true });
                                                                                                                      ^
                                    ERROR: Namespace 'global.iobJS' has no exported member 'State'.
                                    
                                                val: iobJS.StateValue;
                                                           ^
                                    ERROR: 'global.iobJS' has no exported member named 'StateValue'. Did you mean 'StateACL'?
                                    
                                                val: iobJS.StateValue;
                                                           ^
                                    ERROR: 'global.iobJS' has no exported member named 'StateValue'. Did you mean 'StateACL'?
                                    
                                    
                                    1 Reply Last reply Reply Quote 0
                                    • First post
                                      Last post

                                    Support us

                                    ioBroker
                                    Community Adapters
                                    Donate

                                    831
                                    Online

                                    31.7k
                                    Users

                                    79.8k
                                    Topics

                                    1.3m
                                    Posts

                                    lovelace ui nspanel sonoff
                                    263
                                    7244
                                    4991940
                                    Loading More Posts
                                    • Oldest to Newest
                                    • Newest to Oldest
                                    • Most Votes
                                    Reply
                                    • Reply as topic
                                    Log in to reply
                                    Community
                                    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                    The ioBroker Community 2014-2023
                                    logo