EV Charger Card - How to use attributes

I am not able to figure out how to integrate all that Easee Wallbox attributes into that EV Charger card. I selected all attributes in the integration

This is my “Card config”

I understand that I have to add the attributes I would like to be shown directly in YAML but I am not understanding how to do that:

I would like to let my card look like that one from the Github of the code:

i have the same problem, plz help!

thx a lot

Did any one resolve this on how to use the stats etc

I have documented my use of the statistics on the EV charger card here:

My Wallbox is just a dumb 32A charger but using Emporia Vue2 power monitoring I now have this card…

Card yaml:

type: custom:charger-card
brand: other
entity: sensor.wallbox_32a_charger
customImage: /local/images/32A Wallbox (2).png
customCardTheme: theme_custom
chargerImage: White
show_leds: true
show_collapsibles: false
details:
  name:
    entity_id: sensor.wallbox_32a_charger
    attribute: name
  location:
    entity_id: sensor.wallbox_32a_charger
    attribute: site_name
  status:
    entity_id: sensor.wallbox_32a_charger
  statetext:
    'off': Idle
    'on': Charging
  info_left:
    - entity_id: sensor.circuit_11_power
      text: power
      unit_show: true
  info_right:
    - entity_id: sensor.household_voltage
      text: voltage
      unit_show: true
  stats:
    default:
      - entity_id: calculated
        calc_function: sum
        calc_entities:
          - entity_id: sensor.32a_car_charging_session_step_1
          - entity_id: sensor.32a_car_charging_session_step_2
        text: This Session
        unit_show: true
        unit: kWh
        round: 1
      - entity_id: calculated
        calc_function: sum
        calc_entities:
          - entity_id: input_number.32a_car_charger_last_session_step_1
          - entity_id: input_number.32a_car_charger_last_session_step_2
        text: Last Session
        unit_show: true
        unit: kWh
        round: 1
      - entity_id: calculated
        calc_function: sum
        calc_entities:
          - entity_id: sensor.32a_car_charger_monthly_energy_step_1
          - entity_id: sensor.32a_car_charger_monthly_energy_step_2
        text: This Month
        unit_show: true
        unit: kWh
        round: 1
      - entity_id: sensor.32a_car_charger_monthly_energy_step_1
        text: Step 1
        unit_show: true
        unit: kWh
        round: 1
      - entity_id: sensor.32a_car_charger_monthly_energy_step_2
        text: Step 2
        unit_show: true
        unit: kWh
        round: 1
card_mod:
  class: inline-card

When defining “round: 0”, I still get 1 digit after the comma. Is it possible to round and display to the closest integer without displaying comma values in the card?

1 Like