sHedC / python-masterthermconnect

MasterTherm HeatPump API
MIT License
3 stars 2 forks source link

Season Settings #10

Closed sHedC closed 1 year ago

sHedC commented 1 year ago
    Here's the logic for determining the season settings:
if (hp_seasonset) {
    if (hp_season) {
        "Season: Winter"
    } else {
        "Season: Summer"
    }
} else {
    if (hp_season) {
        "Season: Winter (Auto)"
    } else {
        "Season: Summer (Auto)"
    }
}

Originally posted by @SeBsZ in https://github.com/sHedC/python-masterthermconnect/issues/8#issuecomment-1333746524