At this moment it is only possible to set the Charge Limit of the Peblar charger in whole numbers.
In The API documentation of the Peblar ( Peblar | Developer Information) I can see it is set in miliAmpere.
It would be great that we could set it also in miliAmperes in Home Assistant.
Now if I try to set it to for example 12.839A it will round it down to 12A.
I have made the Peblar integration custom to be able to have the limit set to miliAmps.
Changes in numbers.py
Line 58: Change 1 to 0.001
_attr_native_step = 0.001
Line 88: Change int to float
self.coordinator.config_entry.runtime_data.last_known_charging_limit = float(
Line 103: Add , 3
self.coordinator.data.ev.charge_current_limit / 1000, 3