Myelectricaldata , où sont passé les sensors?

bonjour,
je suis en train de bidouiller avec Myelectricaldata et les cartes apexcharts-card,
.
je ne trouve pas où sont les sensors de Myelectricaldata , …
avec enedis, je les trouvais dans les entités, mais là avec Myelectricaldata , je trouve rien …
j’ai juste

update.myelectricaldata_update

Suivant le tuto de FROICi , et l’exemple https://forum.hacf.fr/t/myelectricaldata/18975/468?page=24
on a bien

entity: sensor.myelectricaldata_consumption_<PDL#>

.
qui se transforme en :

entity.attributes.daily[index]]
ou
entity.attributes.dailyweek_costHC
ou
entity.attributes.dailyweek_costHP

mais ,comment, ou où, peut on trouver ces « entités data_génerato attributes »
ou comment fait on ces formules ? :pleading_face:
je voudrais juste trouver le total heures creuses et pleines par jours …
.
j’ai été voir
https://www.myelectricaldata.fr/docs#/,
https://github.com/MyElectricalData/myelectricaldata/wiki/03.-Configuration
j’y trouve rien

pour ceux que ca intéresse :
( et pour memo )
.

.
consommation total en Kwh

    data_generator: |
      return entity.attributes.dailyweek.map((dailyweek, index) => {     
                return [new Date(dailyweek).getTime(), entity.attributes.daily[index]];
              });

.
.
consommation en kwh hp

    data_generator: |
      return entity.attributes.dailyweek.map((dailyweek,
                          index) => {     
                                    return [new Date(dailyweek).getTime(), entity.attributes.dailyweek_HP[index]];
                                  });

.
.
consommation en Kwh HC

    data_generator: |
      return entity.attributes.dailyweek.map((dailyweek,
                          index) => {     
                                    return [new Date(dailyweek).getTime(), entity.attributes.dailyweek_HCindex]];
                                  });

.
.

cout consommation heure creuses en €

    data_generator: |
      return entity.attributes.dailyweek.map((dailyweek, index) => {     
                return [new Date(dailyweek).getTime(), entity.attributes.dailyweek_costHC[index]];
              });

.
Coût consommation heures pleines en €

    data_generator: |
      return entity.attributes.dailyweek.map((dailyweek, index) => {     
                return [new Date(dailyweek).getTime(), entity.attributes.dailyweek_costHP[index]];
              });