Skip to content

Commit

Permalink
fix: made heating parameter binary in KiaUvoAPIUSA (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
renatkh authored Nov 3, 2024
1 parent 8b47c3b commit afa8166
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hyundai_kia_connect_api/KiaUvoAPIUSA.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,9 +648,9 @@ def start_climate(
"airCtrl": options.climate,
"defrost": options.defrost,
"heatingAccessory": {
"rearWindow": int(options.heating),
"sideMirror": int(options.heating),
"steeringWheel": int(options.heating),
"rearWindow": 1 if options.heating in [3, 4] else 0,
"sideMirror": 1 if options.heating == 4 else 0,
"steeringWheel": 1 if options.heating in [2, 4] else 0,
},
"ignitionOnDuration": {
"unit": 4,
Expand Down

0 comments on commit afa8166

Please sign in to comment.