Giter VIP home page Giter VIP logo

Comments (3)

Zappo-II avatar Zappo-II commented on June 14, 2024 1

FYI, this is what I do (your mileage may vary)...

template:
  - trigger:
    - platform: homeassistant
      event: start
    - platform: state
      entity_id:
        - binary_sensor.twc_vehicle_connected
      from: null
      to: 'on'
    - platform: state
      entity_id:
        - binary_sensor.twc_vehicle_connected
      from: null
      to: 'off'
      for:
        hours: 0
        minutes: 0
        seconds: 30
    - platform: state
      entity_id:
        - binary_sensor.twc_contactor_closed
      from: null
      to: 'off'
      for:
        hours: 0
        minutes: 0
        seconds: 30      
    - platform: state
      entity_id:
        - binary_sensor.twc_contactor_closed
      from: null
      to: 'on'
    action:
      - service: tesla_custom.api
        data:
          command: SITE_DATA
          parameters:
            path_vars:
              site_id: "myteslasiteid-put-yours-here"
        response_variable: MySiteData
    sensor:
      - name: TWC Current VIN
        unique_id: TWC_CurrentVIN
        icon: mdi:car-key
        state: |
          {% if MySiteData is defined -%}
            {% if MySiteData.response.wall_connectors[0].vin is defined -%}
              {% if MySiteData.response.wall_connectors[0].vin == "myvehicleid-put-yours-here" -%}
                VIN: {{ MySiteData.response.wall_connectors[0].vin }} (myvehiclesname-put-yours-here)
              {%- else -%}
                VIN: {{ MySiteData.response.wall_connectors[0].vin }} (Another unknown Tesla)
              {%- endif -%}
            {%- else -%}
              {% if MySiteData.response.wall_connectors[0].wall_connector_state == 2 -%}
                No VIN available (No Car Connected)
              {%- else -%}
                No VIN available (Unknown Car - Not a Tesla)
              {%- endif -%}
            {%- endif %}
          {%- else -%}
            No Data available
          {%- endif -%}

from tesla.

Zappo-II avatar Zappo-II commented on June 14, 2024 1

BTW, to obtain myteslasiteid-put-yours-here call:

service: tesla_custom.api
data:
  command: PRODUCT_LIST
  parameters:
    path_vars:
      user_id: "1"

...and watch out for energy_site_id: in the response...

from tesla.

MindFreeze avatar MindFreeze commented on June 14, 2024

The VIN of the connected car is not exposed on the local API, so it would be very useful to have Wall connectors in this cloud integration as well

from tesla.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.