-
Notifications
You must be signed in to change notification settings - Fork 29
Feature Request: Washing machine program as entity #131
Comments
This would be great if this could be added. |
This branch from the main has it all: https://github.com/SantaFox/homeassistant-homeconnect My own made cards:File change enum.py: ` """ENum values dictionary for the Home Connect integration.""" enum_list = {
}` |
I really like the cards you maked. |
Really great idea, I would really appreciate it. There might be some more options. At least for the Washer: "LaundryCare.Washer.Option.IDos2.Active" |
Can you please send a part of the log with IDos options? My machine uses
IDos but these options were unavailable…
On Tue, 17 Aug 2021 at 19:35, thorschtn ***@***.***> wrote:
Really great idea, I would really appreciate it.
There might be some more options.
At least for the Washer:
"LaundryCare.Washer.Option.IDos2.Active"
"LaundryCare.Washer.Option.IDos1.Active"
"LaundryCare.Washer.Option.Prewash"
"LaundryCare.Washer.Option.RinsePlus"
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#131 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABJ246AUI6AYHSX27GILQ3T5KFURANCNFSM5A2KUFXA>
.
--
Sent from Gmail iPad
|
Let's hope the branche of SantaFox gets integrated soon |
Just to be clear, I currently don't have the time to look at forks and port features. If somebody raises a pull request, I am willing to review and merge them. If you have a new feature, you are of course also always welcome to directly submit a PR to HA core. |
Playing around with the api I found that with the api call you get a lot of useful information on your current program
GET /homeappliances/{haid}/programs/active
like:
`
{
"data": {
"key": "LaundryCare.Washer.Program.Towels",
"options": [
{
"key": "BSH.Common.Option.EnergyForecast",
"value": 100,
"unit": "%",
"name": "Energie"
},
{
"key": "LaundryCare.Common.Option.LoadRecommendation",
"value": 4000,
"unit": "gram",
"name": "Beladungsempfehlung"
},
{
"key": "BSH.Common.Option.WaterForecast",
"value": 80,
"unit": "%",
"name": "Wasser"
},
{
"key": "LaundryCare.Washer.Option.IntensivePlus",
"value": true,
"name": "Intensiv Plus"
},
{
"key": "LaundryCare.Washer.Option.LessIroning",
"value": false,
"name": "Bügelleicht"
},
{
"key": "LaundryCare.Washer.Option.Prewash",
"value": true,
"name": "Vorwäsche"
},
{
"key": "LaundryCare.Washer.Option.RinseHold",
"value": false,
"name": "Spülstopp"
},
{
"key": "LaundryCare.Washer.Option.RinsePlus",
"value": "LaundryCare.Washer.EnumType.RinsePlus.Off",
"name": "Extraspülen",
"displayvalue": "Aus"
},
{
"key": "LaundryCare.Washer.Option.SilentWash",
"value": false,
"name": "Leiser waschen"
},
{
"key": "LaundryCare.Washer.Option.Soak",
"value": false,
"name": "Einweichen"
},
{
"key": "LaundryCare.Washer.Option.SpeedPerfect",
"value": false,
"name": "SpeedPerfect"
},
{
"key": "LaundryCare.Washer.Option.SpinSpeed",
"value": "LaundryCare.Washer.EnumType.SpinSpeed.RPM1200",
"name": "Drehzahl",
"displayvalue": "1200 U/min"
},
{
"key": "LaundryCare.Washer.Option.Stains",
"value": "LaundryCare.Washer.EnumType.Stains.Off",
"name": "Flecken Automatik",
"displayvalue": "Aus"
},
{
"key": "LaundryCare.Washer.Option.Temperature",
"value": "LaundryCare.Washer.EnumType.Temperature.GC60",
"name": "Temperatur",
"displayvalue": "60°C"
},
{
"key": "LaundryCare.Washer.Option.WaterPlus",
"value": false,
"name": "Wasser Plus"
},
{
"key": "BSH.Common.Option.ProgramProgress",
"value": 2,
"unit": "%",
"name": "aktueller Programmfortschritt"
},
{
"key": "BSH.Common.Option.RemainingProgramTime",
"value": 12648,
"unit": "seconds",
"name": "Verbleibende Programmlaufzeit"
},
{
"key": "BSH.Common.Option.RemainingProgramTimeIsEstimated",
"value": true,
"name": "Geschätzte Restprogrammlaufzeit"
},
{
"key": "LaundryCare.Common.Option.ProcessPhase",
"value": "LaundryCare.Common.EnumType.ProcessPhase.Prewash",
"displayvalue": "Vorwaschen"
}
],
"name": "Handtücher"
}
}
Is it possible to create an entity with the returned items ? WOuld be nice to display remaining time and phase of washing program.
The text was updated successfully, but these errors were encountered: