lbbrhzn

Results 37 comments of lbbrhzn

Did you try to send a ChangeAvailability request?

i've created a HACS compatible repository for the home assistant plugin here: https://github.com/lbbrhzn/ocpp I can see BootNitifications, Hartbeat, StatusNotifications from my Wallbox PulsarPlus, but no measurands yet.

> I can't add this repository to HACS, it tells me that the structure is invalid. > > Any solution? Solved now. Please note that this integration is highly experimental....

i added the configuration keys to enums.py, not sure if you need to update your schema_to_enums.py script to prevent them from being overwritten.

Also, might be nice to separate the keys for the different profiles. What would be a good way to do that?

Not sure either. Perhaps that's something you can do in a new pull request?

Ah, great, so the measurands are there. What about the configuration keys?

How about field names of a request or confirmation payload? I would like to do something like: ```python @on(Action.BootNotification) def on_boot_notification(self, **kwargs): device_registry.async_get_or_create( model = kwargs.get(BootNotification.conf.charge_point_model,None), manufacturer = kwargs.get(BootNotification.conf.charge_point_vendor, None),...

It would be great if a lint tool would be able to detect a typo. e.g. ``payload.charge_pont_model``. It looks like the first variant could work that way, but the second...