Trying to get this working with Tessie integration. #12
-
|
I'm using an EASEE which has a pretty good integration, but uses service calls to change the A, same like OCPP it needs at least 6A to start. The EASEE doesn't support OCPP. For my Tesla Model Y I have the Tessie integration. This is much easier to set up, but comes with a montly fee (too bad). I have tried the entire blueprint, but can't seem to get things working. The A doesn't get adjusted when there is sun. I have it set to custom API, but also tried Tesla Custom API. Is there something obious I could try, or debug? I created the Main Power Net sensor and it shows the correct value. So a Negative when there is sun. The automation doesn't get triggered at all, except for the morning because the sun offset. I'd assume it get's triggered if there is a change in power production, correct? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
The problem most likely due to incorrect syntax. You defined a string below, not a list. It should be something like this (examples are in the blueprint entity description).
I doubt it worked after it was triggered due to above incorrect config. Where did it stop? You can trace the flow using this instruction. Please send me screenshot of the flow which should give me more info on the issue.
No. Please see this for triggers. |
Beta Was this translation helpful? Give feedback.
-
|
Are you using the Home Assistant Tessie integration? ie. https://www.home-assistant.io/integrations/tessie The Tessie entity names seem to be same as the one used for Tesla Fleet API !! Have you tried selecting the Tesla Fleet API in the blueprint? If not, can you please try selecting Tesla Fleet API to see if it works? You can try one of these steps to manually start the blueprint for testing. No need to wait for the triggers. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
By selecting "Tesla Fleet API", you are telling the blueprint to use Tesla Fleet API entity names. Therefore whatever entity name you entered will be ignored. For example, for the "Charger on/off switch" below, the Tesla Fleet API entity name is automatically set to "switch.martyn_charge". You cannot override the entity name unless you select "User custom API". If you have a Tesla mobile charger, I suggest to try with that first because I wonder why you have the following "unknown" states?? Is it because you are using a EASEE charger? |
Beta Was this translation helpful? Give feedback.
-
|
It shouldn't matter what charger you use since you are using Tesla car to control the current, ie. using Tesla car to switch on the charger and control the current and to switch off the charger when done. So the Tesla car knows when you have switch on or off the charger and that it is ready to charge. The above showed that it is working then? |
Beta Was this translation helpful? Give feedback.

The problem most likely due to incorrect syntax. You defined a string below, not a list.
It should be something like this (examples are in the blueprint entity description).
I doubt it worked after it was triggered due to above inco…