Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cardPower - Merker für fehlende Richtungswechsel #29

Open
Armilar opened this issue Feb 26, 2024 · 7 comments
Open

cardPower - Merker für fehlende Richtungswechsel #29

Armilar opened this issue Feb 26, 2024 · 7 comments
Assignees
Labels
enhancement New feature or request

Comments

@Armilar
Copy link
Collaborator

Armilar commented Feb 26, 2024

Nextion_Editor_sLpvDBLeGY

Elemente wie Batterie (Laden/Entladen) oder Grid (Bezug/Einspeisung) haben zwei Richtungen

@Armilar Armilar added the enhancement New feature or request label Feb 26, 2024
@tt-tom17
Copy link
Collaborator

hast du für die Haus Leistung ein separaten DP?

@ticaki
Copy link
Owner

ticaki commented Feb 27, 2024

message.homeIcon = await getIconEntryValue(data.homeIcon, true, '');
message.homeColor = await getIconEntryColor(data.homeIcon, true, White);
message.homeValueTop = (await getValueEntryString(data.homeValueTop)) ?? '';
message.homeValueBot = (await getValueEntryString(data.homeValueBot)) ?? '';

hab ich wohl vergessen einzubauen, wenns den geht

 message.homeValueTop = (await getValueEntryString(data.homeValueTop)) ?? '';
    message.homeName = (await getValueEntryString(data.homeValueMid)) ?? '';
    message.homeValueBot = (await getValueEntryString(data.homeValueBot)) ?? '';

mit dem nächsten Update ist es dann drin, muß noch die Types anpassen

@tt-tom17
Copy link
Collaborator

im Adapter ist alles da, aber ich habe keinen Datenpunkt im ioBroker mit der gesamtLeistung. müsste ich errechnen mit Soloar und Netz. oder geht das intern im Adapter ??

@ticaki
Copy link
Owner

ticaki commented Feb 27, 2024

hast recht, da hab ich jetzt was unnötiges eingebaut - ich überlege mal wie ich das ausrechnen kann

@Armilar
Copy link
Collaborator Author

Armilar commented Feb 27, 2024

hast du für die Haus Leistung ein separaten DP?

ja, führe meine komplette Energiebilanz durch unterschiedliche Räume und Gesamt

@Armilar
Copy link
Collaborator Author

Armilar commented Feb 27, 2024

Bei mir ist (das hier von mir erstellte Issue) uninteressant, da die Ströme entweder positiv oder negativ sind. Da ich aber den Faktor *-1 benutze, kehrt sich auch die Richtung um.

Wenn jemand aber unterschiedliche Datenpunkte für Strom und Richtung hat, dann würde es notwendig werden...

@ticaki
Copy link
Owner

ticaki commented Feb 27, 2024

Wie im Channel geschrieben habe ich eine option für homeValueBot eingefügt und nur dort.

alwaysOn: 'none',
    uniqueID: 'power1',
    useColor: false,
    pageItems: [],
    config: {
        card: 'cardPower',
        data: {
            headline: { type: 'const', constVal: 'headline' },
            homeValueTop: {
                value: { type: 'const', constVal: 'top' },
            },
            homeValueBot: {
                value: { type: 'internal', dp: '///power1/powerSum' },
                math: { type: 'const', constVal: 'return r1+r2+r3+l1+l2+l3 -999' },
            },

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants