Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wubbl0rz committed Dec 15, 2022
1 parent b718151 commit 94f72a2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions FiatChampAddon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 3.0.8 - 2022-12-15
- fixed fiat america login #33

## 3.0.7 - 2022-12-03
- fixed commands for jeep america #27

Expand Down
12 changes: 12 additions & 0 deletions FiatChampAddon/FiatClient/FiatClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,18 @@ public FiatClient(string user, string password, FcaBrand brand = FcaBrand.Fiat,
_awsEndpoint = RegionEndpoint.USEast1;
_locale = "en_us";
}
else if (_brand == FcaBrand.Fiat && _region == FcaRegion.America)
{
_loginApiKey = "3_etlYkCXNEhz4_KJVYDqnK1CqxQjvJStJMawBohJU2ch3kp30b0QCJtLCzxJ93N-M";
_apiKey = "OgNqp2eAv84oZvMrXPIzP8mR8a6d9bVm1aaH9LqU";
_loginUrl = "https://login-us.fiat.com";
_tokenUrl = "https://authz.sdpr-02.fcagcv.com/v2/cognito/identity/token";
_apiUrl = "https://channels.sdpr-02.fcagcv.com";
_authApiKey = "JWRYW7IYhW9v0RqDghQSx4UcRYRILNmc8zAuh5ys"; // UNKNOWN
_authUrl = "https://mfa.fcl-01.fcagcv.com"; // UNKNOWN
_awsEndpoint = RegionEndpoint.USEast1;
_locale = "en_us";
}
else if (_brand == FcaBrand.Jeep)
{
if (_region == FcaRegion.Europe)
Expand Down
2 changes: 1 addition & 1 deletion FiatChampAddon/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ url: "https://github.com/wubbl0rz/FiatChamp"
description: "Connect your FIAT (uconnect) car to Home Assistant. 🚗"
services:
- "mqtt:want"
version: "3.0.7"
version: "3.0.8"
homeassistant_api: true
image: "ghcr.io/wubbl0rz/image-{arch}-fiat-champ"
slug: "fiat_champ"
Expand Down

0 comments on commit 94f72a2

Please sign in to comment.