<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Energiefluss.erweitert Adapter und datenpunkt in €]]></title><description><![CDATA[<p dir="auto">Hallo Zusammen,<br />
ich brauch mal wieder Eure Hilfe und Unterstützung....</p>
<p dir="auto">Ich möchte gerne den Datenpunkt "javascript.0.Einspeisung.heute_euro" im Energiefluss erweitert Adapter sichtbar machen.....bekomms aber nicht hin...</p>
<p dir="auto">Wenn ich den Datenpunkt hinzufügen will dann bekomme ich die Auswahl für kW aber nicht €......wie gehe ich das an?</p>
<p dir="auto">Ausserdem ist der Datenpunkt nicht in Verwendung....:-( Hängt das damit zusammen weil das € sind und nicht kW?</p>
<p dir="auto">Könnt Ihr mir hier bitte helfen...</p>
<p dir="auto">Danke<br />
<img src="/assets/uploads/files/1774682811611-javascript.png" alt="Javascript.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="/assets/uploads/files/1774682875911-image-002.png" alt="Image 002.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/topic/84145/energiefluss.erweitert-adapter-und-datenpunkt-in</link><generator>RSS for Node</generator><lastBuildDate>Thu, 09 Apr 2026 07:58:53 GMT</lastBuildDate><atom:link href="https://forum.iobroker.net/topic/84145.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 28 Mar 2026 07:29:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Mon, 30 Mar 2026 11:00:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a> :</p>
<pre><code>Hier ist das aktualisierte Script mit der korrigierten Rundung:Hat eine Datei bearbeitet, hat einen Befehl ausgeführt, datei lesenHat eine Datei bearbeitet, hat einen Befehl ausgeführt, datei lesenZwei Stellen wurden geändert:

Berechnung: * 10000) / 10000 → * 100) / 100 (rundet auf 2 Dezimalstellen)
Log-Ausgabe: toFixed(4) → toFixed(2) (auch im Log jetzt z.B. 0.27 € statt 0.2754 €)
</code></pre>
]]></description><link>https://forum.iobroker.net/post/1332205</link><guid isPermaLink="true">https://forum.iobroker.net/post/1332205</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Mon, 30 Mar 2026 11:00:28 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 16:56:21 GMT]]></title><description><![CDATA[<p dir="auto">Sorry ich auch nicht...habe das über ChatGPT erstelen lassen.....</p>
]]></description><link>https://forum.iobroker.net/post/1331906</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331906</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 16:56:21 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 16:52:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331902">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">verguetung.toFixed(4)</p>
</blockquote>
<p dir="auto">ich kann kein js 😞 😓</p>
<p dir="auto">wandelt das nicht in String?</p>
]]></description><link>https://forum.iobroker.net/post/1331905</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331905</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 16:52:00 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 16:44:02 GMT]]></title><description><![CDATA[<pre><code>// ============================================================
//  Shelly Pro 3EM – Tägliche Einspeisung &amp; Vergütung
//  ioBroker JavaScript Adapter + Source Analytics Adapter
// ============================================================
//
//  Voraussetzungen:
//  - JavaScript Adapter
//  - ioBroker.source-analytics Adapter (oder history/influxdb)
//
//  Objekt-Pfade – ggf. an eigene Instanz anpassen:
//  z.B. shelly.0.SHEM-3EM#&lt;MAC&gt;#1 → hier: shelly.0.shellyem3pro-...
//
//  ANPASSEN: Den Instanz-Präfix auf deine Installation setzen
// ============================================================

const SHELLY_PREFIX = 'shelly.0.shellypro3em-&lt;DEINE-MAC-ADRESSE&gt;';
// Beispiel: 'shelly.0.shellypro3em-aabbccddeeff'

const OBJ_RETURN_TOTAL = `${SHELLY_PREFIX}.EMData0.TotalActiveReturnEnergy`;
const OBJ_RETURN_A     = `${SHELLY_PREFIX}.EMData0.TotalActiveReturnEnergyA`;
const OBJ_RETURN_B     = `${SHELLY_PREFIX}.EMData0.TotalActiveReturnEnergyB`;
const OBJ_RETURN_C     = `${SHELLY_PREFIX}.EMData0.TotalActiveReturnEnergyC`;

// Vergütung je kWh in €
const VERGUETUNG_PRO_KWH = 0.068;

// Ziel-Datenpunkt für das Ergebnis (wird automatisch erzeugt)
const DP_HEUTE_KWH       = 'javascript.0.Einspeisung.heute_kWh';
const DP_HEUTE_EURO      = 'javascript.0.Einspeisung.heute_euro';
const DP_HEUTE_KWH_A     = 'javascript.0.Einspeisung.heute_kWh_PhaseA';
const DP_HEUTE_KWH_B     = 'javascript.0.Einspeisung.heute_kWh_PhaseB';
const DP_HEUTE_KWH_C     = 'javascript.0.Einspeisung.heute_kWh_PhaseC';
const DP_TAGESBEGINN_WH  = 'javascript.0.Einspeisung.tagesbeginn_Wh';
const DP_TAGESBEGINN_A   = 'javascript.0.Einspeisung.tagesbeginn_Wh_PhaseA';
const DP_TAGESBEGINN_B   = 'javascript.0.Einspeisung.tagesbeginn_Wh_PhaseB';
const DP_TAGESBEGINN_C   = 'javascript.0.Einspeisung.tagesbeginn_Wh_PhaseC';

// ─── Datenpunkte anlegen ────────────────────────────────────
createState(DP_HEUTE_KWH,      0, { unit: 'kWh', type: 'number', name: 'Einspeisung heute gesamt' });
createState(DP_HEUTE_EURO,     0, { unit: '€',   type: 'number', name: 'Einspeisevergütung heute' });
createState(DP_HEUTE_KWH_A,    0, { unit: 'kWh', type: 'number', name: 'Einspeisung heute Phase A' });
createState(DP_HEUTE_KWH_B,    0, { unit: 'kWh', type: 'number', name: 'Einspeisung heute Phase B' });
createState(DP_HEUTE_KWH_C,    0, { unit: 'kWh', type: 'number', name: 'Einspeisung heute Phase C' });
createState(DP_TAGESBEGINN_WH, 0, { unit: 'Wh',  type: 'number', name: 'Zählerstand Tagesbeginn gesamt' });
createState(DP_TAGESBEGINN_A,  0, { unit: 'Wh',  type: 'number', name: 'Zählerstand Tagesbeginn Phase A' });
createState(DP_TAGESBEGINN_B,  0, { unit: 'Wh',  type: 'number', name: 'Zählerstand Tagesbeginn Phase B' });
createState(DP_TAGESBEGINN_C,  0, { unit: 'Wh',  type: 'number', name: 'Zählerstand Tagesbeginn Phase C' });

// ─── Hilfsfunktion: Tagesdifferenz berechnen ────────────────
function berechneEinspeisung() {
    const aktuellerWert   = getState(OBJ_RETURN_TOTAL).val || 0;
    const aktuellerWert_A = getState(OBJ_RETURN_A).val     || 0;
    const aktuellerWert_B = getState(OBJ_RETURN_B).val     || 0;
    const aktuellerWert_C = getState(OBJ_RETURN_C).val     || 0;

    const tagesbeginn   = getState(DP_TAGESBEGINN_WH).val || aktuellerWert;
    const tagesbeginn_A = getState(DP_TAGESBEGINN_A).val  || aktuellerWert_A;
    const tagesbeginn_B = getState(DP_TAGESBEGINN_B).val  || aktuellerWert_B;
    const tagesbeginn_C = getState(DP_TAGESBEGINN_C).val  || aktuellerWert_C;

    // Differenz in Wh → kWh (auf 3 Dezimalstellen)
    const diff_kWh   = Math.round((aktuellerWert   - tagesbeginn)   / 10) / 100;
    const diff_kWh_A = Math.round((aktuellerWert_A - tagesbeginn_A) / 10) / 100;
    const diff_kWh_B = Math.round((aktuellerWert_B - tagesbeginn_B) / 10) / 100;
    const diff_kWh_C = Math.round((aktuellerWert_C - tagesbeginn_C) / 10) / 100;

    const verguetung = Math.round(diff_kWh * VERGUETUNG_PRO_KWH * 10000) / 10000;

    setState(DP_HEUTE_KWH,   diff_kWh   &lt; 0 ? 0 : diff_kWh,   true);
    setState(DP_HEUTE_KWH_A, diff_kWh_A &lt; 0 ? 0 : diff_kWh_A, true);
    setState(DP_HEUTE_KWH_B, diff_kWh_B &lt; 0 ? 0 : diff_kWh_B, true);
    setState(DP_HEUTE_KWH_C, diff_kWh_C &lt; 0 ? 0 : diff_kWh_C, true);
    setState(DP_HEUTE_EURO,  verguetung  &lt; 0 ? 0 : verguetung,  true);

    log(`[Einspeisung] Heute: ${diff_kWh} kWh | A: ${diff_kWh_A} | B: ${diff_kWh_B} | C: ${diff_kWh_C} | Vergütung: ${verguetung.toFixed(4)} €`);
}

// ─── Tagesbeginn um Mitternacht speichern ───────────────────
schedule('0 0 * * *', function () {
    const val   = getState(OBJ_RETURN_TOTAL).val || 0;
    const val_A = getState(OBJ_RETURN_A).val     || 0;
    const val_B = getState(OBJ_RETURN_B).val     || 0;
    const val_C = getState(OBJ_RETURN_C).val     || 0;

    setState(DP_TAGESBEGINN_WH, val,   true);
    setState(DP_TAGESBEGINN_A,  val_A, true);
    setState(DP_TAGESBEGINN_B,  val_B, true);
    setState(DP_TAGESBEGINN_C,  val_C, true);

    log(`[Einspeisung] Tagesbeginn gesetzt: ${val} Wh (A:${val_A} B:${val_B} C:${val_C})`);
});

// ─── Bei jeder Änderung des Shelly-Zählers neu berechnen ───
on({ id: OBJ_RETURN_TOTAL, change: 'any' }, berechneEinspeisung);

// ─── Beim Skriptstart einmalig berechnen ───────────────────
// Tagesbeginn-Initialisierung: Nur setzen wenn noch 0
setTimeout(function () {
    if (getState(DP_TAGESBEGINN_WH).val === 0) {
        const val   = getState(OBJ_RETURN_TOTAL).val || 0;
        const val_A = getState(OBJ_RETURN_A).val     || 0;
        const val_B = getState(OBJ_RETURN_B).val     || 0;
        const val_C = getState(OBJ_RETURN_C).val     || 0;
        setState(DP_TAGESBEGINN_WH, val,   true);
        setState(DP_TAGESBEGINN_A,  val_A, true);
        setState(DP_TAGESBEGINN_B,  val_B, true);
        setState(DP_TAGESBEGINN_C,  val_C, true);
        log('[Einspeisung] Erstinitialisierung Tagesbeginn gesetzt.');
    }
    berechneEinspeisung();
}, 2000);

// ─── SOURCE ANALYTICS Adapter Integration ──────────────────
// Der source-analytics Adapter liest automatisch aus dem Datenpunkt
// wenn dieser in der Instanzkonfiguration eingetragen ist.
//
// Alternativ: history-Adapter aktivieren auf:
//   javascript.0.Einspeisung.heute_kWh
//   javascript.0.Einspeisung.heute_euro
//
// Für Tageshistorie via Source Analytics:
// - Datenpunkt: javascript.0.Einspeisung.heute_kWh
// - Aggregation: last (letzter Wert des Tages)
// - Anzeige: Balkendiagramm (Tagesansicht)
//
// ──────────────────────────────────────────────────────────
// ERGEBNIS-DATENPUNKTE (für VIS / Jarvis / Material UI):
//
//   javascript.0.Einspeisung.heute_kWh       → Einspeisung heute in kWh
//   javascript.0.Einspeisung.heute_euro      → Vergütung heute in €
//   javascript.0.Einspeisung.heute_kWh_PhaseA/B/C → je Phase
// ──────────────────────────────────────────────────────────
</code></pre>
]]></description><link>https://forum.iobroker.net/post/1331902</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331902</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 16:44:02 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 16:40:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331899">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">Bitteschön</p>
</blockquote>
<p dir="auto">wie erwartet hilft das nichts.<br />
Dann scheint der</p>
<p dir="auto">sagte in <a href="/post/1331850">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">nicht vom Typ Zahl, auch wenn der DP vom Typ Zahl ist.</p>
</blockquote>
<p dir="auto">zu sein!</p>
<p dir="auto">Dazu bat ich um Info;</p>
<p dir="auto">sagte in <a href="/post/1331850">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">Wie wird der Wert geschrieben?</p>
</blockquote>
<p dir="auto">sprich: Skript zeigen!</p>
]]></description><link>https://forum.iobroker.net/post/1331900</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331900</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 16:40:29 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 16:37:59 GMT]]></title><description><![CDATA[<p dir="auto">Bitteschön:<br />
<img src="/assets/uploads/files/1774715873230-image-002.png" alt="Image 002.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/1331899</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331899</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 16:37:59 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 16:28:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331887">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">ich weiss nicht was du damit meinst mit (in der Konfig auf den zweiten Reiter</p>
</blockquote>
<p dir="auto">in Energiefluss-erweitert das dazugehörige Objekt/Element anwählen<br />
In der Konfigurationsleiste dazu den zweiten Reiter öffnen</p>
<p dir="auto">Das dann zeigen!</p>
]]></description><link>https://forum.iobroker.net/post/1331889</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331889</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 16:28:30 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 16:26:25 GMT]]></title><description><![CDATA[<p dir="auto">sorry, ich weiss nicht was du damit meinst mit (in der Konfig auf den zweiten Reiter)?</p>
<p dir="auto">Meinst du hier?<br />
<img src="/assets/uploads/files/1774715177552-image-001.png" alt="Image 001.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/1331887</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331887</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 16:26:25 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 13:58:29 GMT]]></title><description><![CDATA[<p dir="auto">ja, das meine ich</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331848">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<pre><code>"type": "number",
</code></pre>
</blockquote>
<p dir="auto">dann geh mal in dem Element in der Konfig auf den zweiten Reiter und stell die Anzahl Nachkommastellen auf 2<br />
Wenn das nicht hilft, wovon ich ausgehe, ist der Wert nicht vom Typ Zahl, auch wenn der DP vom Typ Zahl ist.</p>
<p dir="auto">Wie wird der Wert geschrieben?</p>
]]></description><link>https://forum.iobroker.net/post/1331850</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331850</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 13:58:29 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 13:49:25 GMT]]></title><description><![CDATA[<p dir="auto">sorry...du meinst das hier:</p>
<pre><code>{
  "_id": "javascript.0.Einspeisung.heute_euro",
  "common": {
    "unit": "€",
    "type": "number",
    "name": "Einspeisevergütung heute",
    "role": "state"
  },
  "native": {},
  "type": "state",
  "from": "system.adapter.javascript.0",
  "user": "system.user.admin",
  "ts": 1774461719596,
  "acl": {
    "object": 1636,
    "state": 1636,
    "owner": "system.user.admin",
    "ownerGroup": "system.group.administrator"
  }
}
</code></pre>
]]></description><link>https://forum.iobroker.net/post/1331848</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331848</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 13:49:25 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 11:30:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331831">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">so</p>
</blockquote>
<p dir="auto">das nutzt nichts!<br />
Die Objektdaten bitte!</p>
]]></description><link>https://forum.iobroker.net/post/1331833</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331833</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 11:30:34 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 11:24:07 GMT]]></title><description><![CDATA[<p dir="auto">so:<br />
<img src="/assets/uploads/files/1774697041262-image-006.png" alt="Image 006.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">0,2972</p>
]]></description><link>https://forum.iobroker.net/post/1331831</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331831</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 11:24:07 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 10:57:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331826">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">Möglichkeit den Wert auf 2 Stellen hinter Komma zu runden?</p>
</blockquote>
<p dir="auto">ääähm, wie sieht denn der Originalwert aus?<br />
ist das vielleicht ein String?</p>
<p dir="auto">Bei Zahlen kannst du 0, 1 oder 2 Nachkommastellen auswählen, 4 sind nicht vorgesehen</p>
]]></description><link>https://forum.iobroker.net/post/1331828</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331828</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 10:57:13 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 10:54:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: homoran">@<bdi>homoran</bdi></a>, Danke..habs nun hinbekommen mit der Verknüpfung.....</p>
<p dir="auto">Ne Frage aber noch....wenn ich das Objekt nun anklicke...habe ich dort dann irgend ne Möglichkeit den Wert auf 2 Stellen hinter Komma zu runden?<br />
<img src="/assets/uploads/files/1774695250811-image-005.png" alt="Image 005.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/1331826</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331826</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 10:54:11 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 10:29:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a></p>
<p dir="auto">Hier mal ein Extrembeispiel<br />
<img src="/assets/uploads/files/1774693419035-screenshot_20260328-110606_firefox.jpg" alt="Screenshot_20260328-110606_Firefox.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">Jedes einzelne Objekt (Element) <strong>kann</strong> mit einer Datenquelle verknüpft werden, deren Wert anzeigen und/oder entsprechend des Wertes z.B. die Farbe ändern.</p>
<p dir="auto">Wie du hier siehst, können die Werte x-beliebige Einheiten erhalten, auch frei erfundene wie "Zyklen" oder gar "x Abtauen"</p>
<p dir="auto">So lange du deine definierten Datenquellen nicht mit einem Element verknüpft hast, ist sie "nicht verwendet"!</p>
]]></description><link>https://forum.iobroker.net/post/1331825</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331825</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 10:29:00 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 10:00:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331815">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">das hinzugefügte objekt "javascript.0.Einspeisung.heute_euro"</p>
</blockquote>
<p dir="auto">Das ist <strong>kein</strong> Objekt!<br />
Objekte sind Rechtecke, Kreise, Icons, Text.....</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331815">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">und das raff ich nicht :-(</p>
</blockquote>
<p dir="auto">hast du mal die hervorragende Doku dazu gelesen?<br />
Wo haperts da beim Verständnis?</p>
]]></description><link>https://forum.iobroker.net/post/1331816</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331816</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 10:00:42 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 09:58:37 GMT]]></title><description><![CDATA[<p dir="auto">O.K. ich find halt im netz kein video wo das mit den € und dem Energiefluss adapter erklärt ist......</p>
<p dir="auto">Aber grundlegend ist der Schritt auf dem Bildern oben mit der Liste schon richtig oder? also das ist das erste was man macht im Energiefluss adpater</p>
<p dir="auto">Jetzt muss ich das hinzugefügte objekt "javascript.0.Einspeisung.heute_euro" auf der Hauptseite auswählen...und das raff ich nicht :-(</p>
]]></description><link>https://forum.iobroker.net/post/1331815</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331815</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 09:58:37 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 09:47:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331804">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">habe ich ihn doch hinzugefügt</p>
</blockquote>
<p dir="auto">ich sehe kein Objekt und keine Konfiguration desselben!</p>
<p dir="auto">Du zeigst immer nur die Liste mit den Quellen</p>
]]></description><link>https://forum.iobroker.net/post/1331805</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331805</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 09:47:22 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 09:45:59 GMT]]></title><description><![CDATA[<p dir="auto">Hier, habe ich ihn doch hinzugefügt</p>
<p dir="auto"><img src="/assets/uploads/files/1774691128588-image-002.png" alt="Image 002.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><img src="/assets/uploads/files/1774691142194-image-004.png" alt="Image 004.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/1331804</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331804</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 09:45:59 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 09:40:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331800">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">Ich hbae den datenpunkt doch aber ausgewählz im Energiefluss Adapter..</p>
</blockquote>
<p dir="auto">dann zeig mal die Einstellungen des zugehörigen Objekts.</p>
]]></description><link>https://forum.iobroker.net/post/1331802</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331802</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 09:40:59 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 09:39:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/homoran" aria-label="Profile: Homoran">@<bdi>Homoran</bdi></a> sagte in <a href="/post/1331782">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">nöö, das höngt damit zusammen,  dass du ihn nicht verwendest.</p>
</blockquote>
<p dir="auto">Ich hbae den datenpunkt doch aber ausgewählz im Energiefluss Adapter....ich bin in Datenquelle auswählen gegangen udn habe dort dann den Datenpunkt ausgewählt. also habe ich ihn doch eingefügt...</p>
<p dir="auto">Wo gebe ich das ein mit dem Wert...unter Erweitert?<br />
Wa ich auch nicht verstehe ist wenn ich den datenpunkt auswähle kann ich nur "Faktor der Quelle" 1 oder 1000 auswählen....das sind aber kwh ixh will aber €. Geht das denn generell das ich diesen datenpunkt in € anzeigen lassen kann im Ebnergiefluss adapter?</p>
]]></description><link>https://forum.iobroker.net/post/1331800</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331800</guid><dc:creator><![CDATA[Kusselin]]></dc:creator><pubDate>Sat, 28 Mar 2026 09:39:26 GMT</pubDate></item><item><title><![CDATA[Reply to Energiefluss.erweitert Adapter und datenpunkt in € on Sat, 28 Mar 2026 07:57:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331780">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">wie gehe ich das an?</p>
</blockquote>
<p dir="auto">indem du in der Konfiguration der Anzeige dieser Quelle die beliebige Einheit eintippst.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kusselin" aria-label="Profile: Kusselin">@<bdi>Kusselin</bdi></a> sagte in <a href="/post/1331780">Energiefluss.erweitert Adapter und datenpunkt in €</a>:</p>
<blockquote>
<p dir="auto">Ausserdem ist der Datenpunkt nicht in Verwendung....:-( Hängt das damit zusammen weil das € sind und nicht kW?</p>
</blockquote>
<p dir="auto">nöö, das höngt damit zusammen,  dass du ihn nicht verwendest.</p>
]]></description><link>https://forum.iobroker.net/post/1331782</link><guid isPermaLink="true">https://forum.iobroker.net/post/1331782</guid><dc:creator><![CDATA[Homoran]]></dc:creator><pubDate>Sat, 28 Mar 2026 07:57:00 GMT</pubDate></item></channel></rss>