Skip to content

Einsteigerfragen

nur für Fragen von Einsteigern / Newbies / Noobs

4.1k Topics 52.1k Posts

NEWS

Subcategories


  • Grundfragen bei Anbindung von SmartHome Geräten

    1k 12k
    1k Topics
    12k Posts
    D
    [image: 1774598419502-49f685ef-d0f5-46c4-93cd-d2f99d550609-image-resized.png] so endlich alles drin und läuft perfekt
  • Grundfragen zur Installation von ioBroker

    642 11k
    642 Topics
    11k Posts
    Michael SchmittM
    @Thomas-Braun sagte in System auf neue SSD - Bitte mal Iob Diag anschauen: Der javascript und der fritzdect wären mir allerdings zu gesprächig, wenn die Frequenz mit der da in das Log geschrieben wird immer so ist. Das von Javascript kommt nur nach dem Neustart des Iobroker so oft. Ansonsten nur wenn ein Sensor nicht erreichbar ist oder wenn er dann reconnectet. Fritzdect ist nur eine Telegrammeldung dass ein Fenster geöffnet wurde und der Heizmodus geändert (kommt ja normal auch nicht so oft)
  • Grundfragen zur Erstellung von automatischen Abläufen

    206 3k
    206 Topics
    3k Posts
    HomoranH
    @decnet sagte in Auswertung von Datenpunkten (Akku einer Solaranlage): Wie kann man das einfach realisieren? z.B. mit einem kleinen Skript/Blockly/Flow.... EDIT: z.B. so: [image: 1774084632296-screenshot_20260321-101612_duckduckgo.jpg] Du legst zwei eigene Datenpunkte für Timestamp und Minimum an, triggerst auf en DP Akku und schreibst die Werte ggf. einmal täglich 23:59 den Wert Minimum nullen
  • Was kann es Einsteigern leichter machen?

    39 320
    39 Topics
    320 Posts
    M
    @schienw Es gibt einen slideshow Adapter. [image: 1774548630949-d03a193e-023c-43b1-8a63-833869059fcc-image.png] Welche Dateitypen sind denn dabei: png, jpg ?
  • SWV Bewässerungssteuerung

    5
    1
    0 Votes
    5 Posts
    312 Views
    C
    Danke für die Ideen. Ich schaue mal was ich davon umsetzen werde.
  • Welche Zentrale

    welche zentrale für zu hause
    37
    0 Votes
    37 Posts
    2k Views
    haselchenH
    @samson71 @Winni @Homoran Hab das mal mit nem RWE BWM probiert . Da lohnt auf keinen Fall der Aufwand den Nutzen.
  • gelöst mit alexa iobroker steuern

    17
    0 Votes
    17 Posts
    7k Views
    haselchenH
    @kxn Das wird wohl nicht an der Node Version liegen. Ausgabe von iob diag bitte Vermutlich ist es das „Skill Problem“. Es gibt einen Neuen.
  • Node JS wird nicht upgedatet

    13
    1
    0 Votes
    13 Posts
    783 Views
    M
    @thomas-braun perfekt danke
  • Wie greife ich über Putty auf den Iobroker zu?

    19
    0 Votes
    19 Posts
    1k Views
    Thomas BraunT
    @dmode Sind deine Quellen denn nun sauber?
  • Installtion FFMPEG

    installation ffmpeg
    7
    0 Votes
    7 Posts
    418 Views
    F
    @codierknecht Super vielen lieben Dank für die ausführliche Beschreibung, das kannte ich bisher nicht, das dies so möglich ist. Werde das die Tage so testen und vorher natürlich erst einmal ein Backup anlegen.
  • Devices Adapter

    3
    1
    0 Votes
    3 Posts
    241 Views
    D
    @crunchip ok, habe mit dem Alias Manager einfach ein neues Alias angelegt und dann ist er auch dort vorhanden. danke
  • [gelöst] Docker (VM) Container mit ioB (LXC) restart

    15
    0 Votes
    15 Posts
    832 Views
    A
    @oliverio hab es als Kommentar hinzugefügt
  • Ecowitt GW2000 MQTT Problem

    2
    2
    0 Votes
    2 Posts
    267 Views
    EnduranceE
    @endurance Habs herausgefunden, daten stecken alle in einem Objekt.... Habs mit dem folgenden Skript auseinandergenommen: // === Einstellungen === const MQTT_STATE = 'mqtt.0.ecowitt.3C8A1F2A63C7'; // <- DEINE State-ID hier eintragen const BASE = '0_userdata.0.ecowitt.'; // Zielordner // === Hilfsfunktionen === function toNumber(x) { const n = Number(x); return isFinite(n) ? n : null; } function f2c(f){ const n = toNumber(f); return n==null ? null : (n-32)*5/9; } function inHg2hPa(h){ const n = toNumber(h); return n==null ? null : n*33.8638866667; } function mph2ms(m){ const n = toNumber(m); return n==null ? null : m*0.44704; } function inch2mm(i){ const n = toNumber(i); return n==null ? null : i*25.4; } // Einfacher Querystring‑Parser (ohne URLSearchParams) function parseQuery(q) { const out = {}; if (typeof q !== 'string' || !q) return out; // WU-Style: '+' = Leerzeichen q = q.replace(/\+/g, ' '); // Teile erst an & und dekodiere dann key/value q.split('&').forEach(pair => { const idx = pair.indexOf('='); let k, v; if (idx >= 0) { k = decodeURIComponent(pair.slice(0, idx)); v = decodeURIComponent(pair.slice(idx + 1)); } else { k = decodeURIComponent(pair); v = ''; } if (k) out[k] = v; }); return out; } // State-Schreiber (legt State an, falls nicht vorhanden) async function put(id, val, unit='', type='number') { const full = BASE + id; if (!await existsStateAsync(full)) { await setObjectAsync(full, {type: 'state', common: {name: id, read: true, write: false, type, role: 'value', unit}, native: {}}); } setState(full, val, true); } // === Subscriber: jedes Update parsen === on({ id: MQTT_STATE, change: 'any' }, async obj => { try { if (!obj || !obj.state || typeof obj.state.val !== 'string') return; const params = parseQuery(obj.state.val); // Meta await put('meta.stationtype', params.stationtype || '', '', 'string'); await put('meta.model', params.model || '', '', 'string'); await put('meta.dateutc', params.dateutc || '', '', 'string'); await put('meta.interval', toNumber(params.interval)); // Innen await put('inside.temp_C', f2c(params.tempinf), '°C'); await put('inside.humidity_pct', toNumber(params.humidityin), '%'); await put('pressure.rel_hPa', inHg2hPa(params.baromrelin), 'hPa'); await put('pressure.abs_hPa', inHg2hPa(params.baromabsin), 'hPa'); // Außen await put('outside.temp_C', f2c(params.tempf), '°C'); await put('outside.humidity_pct', toNumber(params.humidity), '%'); await put('outside.vpd_kPa', toNumber(params.vpd), 'kPa'); // Wind await put('wind.dir_deg', toNumber(params.winddir), '°'); await put('wind.dir_avg10m_deg', toNumber(params.winddir_avg10m), '°'); await put('wind.speed_ms', mph2ms(params.windspeedmph), 'm/s'); await put('wind.gust_ms', mph2ms(params.windgustmph), 'm/s'); await put('wind.maxdailygust_ms', mph2ms(params.maxdailygust), 'm/s'); // Solar/UV await put('solar.radiation_Wm2', toNumber(params.solarradiation), 'W/m²'); await put('uv.index', toNumber(params.uv)); // Regen (Zoll -> mm) await put('rain.rate_mmph', inch2mm(params.rrain_piezo), 'mm/h'); await put('rain.event_mm', inch2mm(params.erain_piezo), 'mm'); await put('rain.hour_mm', inch2mm(params.hrain_piezo), 'mm'); await put('rain.day_mm', inch2mm(params.drain_piezo), 'mm'); await put('rain.week_mm', inch2mm(params.wrain_piezo), 'mm'); await put('rain.month_mm', inch2mm(params.mrain_piezo), 'mm'); await put('rain.year_mm', inch2mm(params.yrain_piezo), 'mm'); // Batteries / Misc (Wittboy) await put('wittboy.cap_volt', toNumber(params.ws90cap_volt), 'V'); await put('wittboy.version', toNumber(params.ws90_ver)); await put('wittboy.batt_V', toNumber(params.wh90batt), 'V'); // Rohdaten ablegen (optional, hilfreich zum Debuggen) await put('raw.query', obj.state.val, '', 'string'); } catch (e) { log(`Ecowitt parse error: ${e}`, 'error'); } });
  • Infrarot Fernbedienung ohne Cloud

    2
    0 Votes
    2 Posts
    233 Views
    geschildG
    @dokbiz Vielleicht kommst du hiermit weiter: https://blog.sengotta.net/ir-raw-codes-mit-tasmota-via-mqtt-senden-ir-blaster/ https://templates.blakadder.com/auvisio_S06.html
  • InfluxDB2 aufeinmal sehr hohe CPU Auslastung

    6
    0 Votes
    6 Posts
    382 Views
    Kirk1701K
    @mcm1957 Tja, so wie es aussieht hat es die Partiton nach 7 Monaten voll geschrieben.... Filesystem 1K-blocks Used Available Use% Mounted on udev 4089360 0 4089360 0% /dev tmpfs 825680 7360 818320 1% /run /dev/nvme0n1p2 50347112 11500156 36750884 24% / tmpfs 4128352 0 4128352 0% /dev/shm tmpfs 5120 48 5072 1% /run/lock /dev/nvme0n1p1 522230 57458 464772 12% /boot/firmware /dev/nvme0n1p5 19849964 18467376 342204 99% /media/datenbank /dev/nvme0n1p6 906993596 4537336 856310272 1% /media/netzlaufwerk /dev/sda3 239241612 10205832 216810300 5% /media/backup tmpfs 825664 0 825664 0% /run/user/0 Ich zieh die mal größer und werde berichten. Gruß Nachtrag... die 20Gb waren einfach voll :cry: Filesystem 1K-blocks Used Available Use% Mounted on udev 4089360 0 4089360 0% /dev tmpfs 825680 7376 818304 1% /run /dev/nvme0n1p2 50347112 11501104 36749936 24% / tmpfs 4128352 0 4128352 0% /dev/shm tmpfs 5120 48 5072 1% /run/lock /dev/nvme0n1p1 522230 57458 464772 12% /boot/firmware /dev/nvme0n1p5 125945132 18173248 101341420 16% /media/datenbank /dev/nvme0n1p6 805195880 4537336 759683756 1% /media/netzlaufwerk /dev/sda3 239241612 10205832 216810300 5% /media/backup tmpfs 825664 0 825664 0% /run/user/0 Nun läuft wieder alles :-)
  • Fehlermeldung E-Carts [gelöst]

    14
    1
    0 Votes
    14 Posts
    866 Views
    DuffyD
    @thomas-braun Allen ein herzliches Danke schön. VG Duffy
  • RULES Fragen von (anscheinendem) Meganoob

    5
    1
    0 Votes
    5 Posts
    249 Views
    crunchipC
    @lopez83 sagte in RULES Fragen von (anscheinendem) Meganoob: Das "Skript" geht aber nicht hin und lässt den Broadlink die Befehle senden. Beim Start des Skriptes einmalig schon, nicht aber beim Umschalten der Info in der KNX Gruppenadresse, obwohl diese im ioBroker einwandfrei ankommt. Heisst einmalig funktioniert die Aktion? Funktionieren die Broadlink Befehle generell korrekt, unabhängig eines scriptes?
  • 3 Fragen zu ioBroker -> Awtrix Light

    5
    2
    0 Votes
    5 Posts
    378 Views
    Tobias RichterT
    @asgothian 2025-08-15 11:45:54.607 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 11:45:54.615 - info: dwd.1 (29477) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 11:45:54.934 - info: dwd.1 (29477) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 11:45:55.444 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29477 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 11:49:31.008 - info: host.debIOBroker instance system.adapter.openweathermap.0 in version "1.1.2" started with pid 29492 2025-08-15 11:49:31.655 - info: openweathermap.0 (29492) starting. Version 1.1.2 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v20.19.4, js-controller: 7.0.6 2025-08-15 11:49:34.623 - info: awtrix-light.0 (20571) error ECONNABORTED from custom?name=weatherstat: timeout of 3000ms exceeded 2025-08-15 11:49:34.624 - warn: awtrix-light.0 (20571) (custom?name=weatherstat) Unable to update custom app "weatherstat": AxiosError: timeout of 3000ms exceeded 2025-08-15 11:49:39.677 - info: openweathermap.0 (29492) Terminated (NO_ERROR): Without reason 2025-08-15 11:49:40.186 - info: host.debIOBroker instance system.adapter.openweathermap.0 having pid 29492 terminated with code 0 (NO_ERROR) 2025-08-15 11:50:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29508 2025-08-15 11:50:54.626 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 11:50:54.632 - info: dwd.1 (29508) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 11:50:54.963 - info: dwd.1 (29508) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 11:50:55.474 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29508 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 11:55:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29523 2025-08-15 11:55:54.639 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 11:55:54.645 - info: dwd.1 (29523) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 11:55:54.982 - info: dwd.1 (29523) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 11:55:55.494 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29523 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:00:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29538 2025-08-15 12:00:54.631 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:00:54.638 - info: dwd.1 (29538) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:00:54.964 - info: dwd.1 (29538) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:00:55.475 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29538 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:02:17.485 - error: accuweather.0 (20541) Status: 400 text: Bad Request - User action required! 2025-08-15 12:02:17.733 - error: accuweather.0 (20541) Status: 400 text: Bad Request - User action required! 2025-08-15 12:05:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29553 2025-08-15 12:05:54.640 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:05:54.646 - info: dwd.1 (29553) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:05:54.975 - info: dwd.1 (29553) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:05:55.486 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29553 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:10:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29568 2025-08-15 12:10:54.631 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:10:54.637 - info: dwd.1 (29568) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:10:54.962 - info: dwd.1 (29568) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:10:55.473 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29568 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:15:54.008 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29583 2025-08-15 12:15:54.635 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:15:54.643 - info: dwd.1 (29583) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:15:54.974 - info: dwd.1 (29583) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:15:55.483 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29583 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:16:01.602 - info: awtrix-light.0 (20571) error ECONNABORTED from stats: timeout of 3000ms exceeded 2025-08-15 12:18:01.720 - info: awtrix-light.0 (20571) error ECONNABORTED from settings: timeout of 3000ms exceeded 2025-08-15 12:18:01.720 - warn: awtrix-light.0 (20571) (settings) Received error: {"message":"timeout of 3000ms exceeded","name":"AxiosError","stack":"AxiosError: timeout of 3000ms exceeded\n at RedirectableRequest.handleRequestTimeout (/opt/iobroker/node_modules/axios/lib/adapters/http.js:657:16)\n at RedirectableRequest.emit (node:events:524:28)\n at RedirectableRequest.emit (node:domain:489:12)\n at Timeout. (/opt/iobroker/node_modules/follow-redirects/index.js:221:12)\n at listOnTimeout (node:internal/timers:581:17)\n at processTimers (node:internal/timers:519:7)\n at Axios.request (/opt/iobroker/node_modules/axios/lib/core/Axios.js:45:41)","config":{"transitional":{"silentJSONParsing":true,"forcedJSONParsing":true,"clarifyTimeoutError":false},"adapter":["xhr","http","fetch"],"transformRequest":[null],"transformResponse":[null],"timeout":3000,"xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN","maxContentLength":-1,"maxBodyLength":-1,"env":{},"headers":{"Accept":"application/json, text/plain, */*","Content-Type":"application/json","User-Agent":"axios/1.11.0","Accept-Encoding":"gzip, compress, deflate, br"},"baseURL":"http://192.168.178.26:80/api/","responseType":"json","url":"settings","method":"get","allowAbsoluteUrls":true},"code":"ECONNABORTED"} 2025-08-15 12:18:01.720 - error: awtrix-light.0 (20571) [setApiConnected] Unable to refresh settings, apps or indicators: AxiosError: timeout of 3000ms exceeded 2025-08-15 12:20:54.008 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29598 2025-08-15 12:20:54.637 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:20:54.644 - info: dwd.1 (29598) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:20:54.979 - info: dwd.1 (29598) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:20:55.490 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29598 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:25:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29613 2025-08-15 12:25:54.626 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:25:54.633 - info: dwd.1 (29613) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:25:54.985 - info: dwd.1 (29613) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:25:55.496 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29613 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:30:54.007 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29628 2025-08-15 12:30:54.618 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:30:54.625 - info: dwd.1 (29628) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:30:54.947 - info: dwd.1 (29628) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:30:55.458 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29628 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:35:54.007 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29643 2025-08-15 12:35:54.624 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:35:54.632 - info: dwd.1 (29643) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:35:54.991 - info: dwd.1 (29643) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:35:55.503 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29643 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:40:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29658 2025-08-15 12:40:54.632 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:40:54.638 - info: dwd.1 (29658) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:40:55.021 - info: dwd.1 (29658) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:40:55.532 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29658 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:45:54.006 - info: host.debIOBroker instance system.adapter.dwd.1 in version "2.8.5" started with pid 29676 2025-08-15 12:45:54.631 - warn: awtrix-light.0 (20571) [createAppRequestObj] Found enabled thresholds for custom app "dwdwarn" - data type is invalid (string) 2025-08-15 12:45:54.638 - info: dwd.1 (29676) starting. Version 2.8.5 in /opt/iobroker/node_modules/iobroker.dwd, node: v20.19.4, js-controller: 7.0.6 2025-08-15 12:45:54.976 - info: dwd.1 (29676) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2025-08-15 12:45:55.487 - info: host.debIOBroker instance system.adapter.dwd.1 having pid 29676 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2025-08-15 12:46:18.874 - info: admin.0 (11224) ==> Connected system.user.admin from ::ffff:192.168.178.20
  • IPCAM- Alert und Licht geht an

    10
    3
    0 Votes
    10 Posts
    549 Views
    R
    @codierknecht du hast vollkommen recht und ich konnte den Befehl absetzen in einem browser und der hat den dp auf 1 gesetzt. Offensichtlich liegt das Problem in der surveillance Station in der benutzerdefinierten Aktion
  • Zigbee Router: Automatisches Wegschalten bei Nichtgebrauch?

    16
    0 Votes
    16 Posts
    1k Views
    Bjoern77B
    Moin Sorry, war lange beruflich unterwegs. Ich habe den einfachen Weg genommen und den Router entsorgt (Schublade) und durch eine einfache Zigbee Steckdose ersetzt. Danke und Gruss Björn
  • Alexa2.0 startet nicht mehr [gelöst]

    13
    1
    0 Votes
    13 Posts
    913 Views
    J
    @apollon77 Hab da auch eine Frage ;-) Der Adapter synchronisiert bei mir scheinbar nicht mehr korrekt. Die Datenpunkte werden nicht (mehr) gefüllt. Hab ihn schon deinstalliert und wieder installiert. Lt. Log alexa2.0 2025-08-12 08:09:14.589 info Initialization Done ... alexa2.0 2025-08-12 08:09:02.209 info Alexa-Push-Connection (macDms = true) established. Disable Polling alexa2.0 2025-08-12 08:08:59.949 info Subscribing to states... alexa2.0 2025-08-12 08:08:51.070 info No smart home devices to query alexa2.0 2025-08-12 08:08:40.106 info Using cached smart home devices list from Tue Aug 12 2025 08:01:45 GMT+0200 (Central European Summer Time) alexa2.0 2025-08-12 08:08:03.461 info Initialize all Device states ... alexa2.0 2025-08-12 08:08:00.273 info Starting Alexa2 adapter ... it can take several minutes to initialize all data. Please be patient! A done message is logged. alexa2.0 2025-08-12 08:07:59.975 info starting. Version 3.27.3 in /opt/iobroker/node_modules/iobroker.alexa2, node: v20.19.4, js-controller: 7.0.6 alexa2.0 2025-08-12 08:07:51.015 info terminating alexa2.0 2025-08-12 08:07:50.513 info Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason alexa2.0 2025-08-12 08:07:50.510 info terminating alexa2.0 2025-08-12 08:07:50.503 info Got terminate signal TERMINATE_YOURSELF Habe ich etwas übersehen? Zumindest sehe ich nicht mehr welches Lied Spotify aktuell auf dem Echo Dot spielt bzw. ich kann ihn auch nicht mehr "muten"
  • backitup in mehreren Instanzen

    9
    0 Votes
    9 Posts
    410 Views
    Thomas BraunT
    @stefan341 Ich mounte eine Freigabe eines FritzNAS auf /opt/iobroker/backups, dann legt der Backitup-Adapter dort ganz 'dumm' seine Backups ab, wie er das immer macht und anschließend werden die Dateien vor dort aus ins GoogleDrive geladen und am Ende wird die CIFS-Freigabe wieder ausgehängt.
  • Sainlogic Adapter Ecowitt Vorhersage

    9
    0 Votes
    9 Posts
    787 Views
    M
    @ilovegym sagte in Sainlogic Adapter Ecowitt Vorhersage: @maddin77 ja, ist bei mir auch so, ich nutze den Punkt nicht, sondern in day0 maxtemp Die 40 Perioden sind die Vorhersagen, da musste dich auch durschwurschteln.. brauch ich nicht.. Ansonsten werkelt @ticaki gerade an einem anderen Adapter, der gut dokumentiert ist, dieser ist aber noch nicht im offiziellen Repo (beantragt). Siehe hier: https://forum.iobroker.net/post/1287498 Hmmm Ich nutze aktuell day0 [image: 1754825916346-screenshot_20250810_133732_samsung-internet.jpg] Der ändert sich öfter.... Wäre dann dieser Besser Current [image: 1754825941077-screenshot_20250810_133713_samsung-internet.jpg] Danke für die info vom neuen Adapter, aber da fehlt mir das Wissen sowas gleich zu testen
  • eine funktion für http-Get

    12
    1
    0 Votes
    12 Posts
    710 Views
    A
    @haus-automatisierung said in eine funktion für http-Get: Zeig mal im JSON wo diese Info steht. Das hattest ja eh schonmal manuell abgerufen. Ja genau das ist ja das Problem. Der Wert für Taupunkt ist nicht im JSON-Text vom Luftdaten-Sensor enthalten. Ich habe mal die Taupunkt-Formel in Blockly umgesetzt und rechne mir den Wert im IOBroker aus. Das ist wohl die selbe Formel, die auch der Luftdaten-Sensor verwendet. Dieser gibt den Taupunkt zwar auf dem Web-Interface bei Aktuelle Werte als "BME280 Taupunkt 14.5 °C" aus - aber er sendet ihn nicht. Ja da bist du vielleicht doch nicht die richtige Adresse, wenn ich mir das mal richtig überlege... Aber vielen Dank für deine Nachfrage! Das mit dem Zeitplan habe ich jetzt auch verstanden. :blush:

635

Online

32.7k

Users

82.6k

Topics

1.3m

Posts