pvtom/rscp2mqtt

Limiting SOC

JensHauser opened this issue · 2 comments

With my S10X, I´d like to make use of limiting SOC (Set the maximum SOC to limit charging the battery).

In the docs I found the tags

  • e3dc/limit/charge/soc
  • e3dc/set/limit/charge/soc
    set this one, but it doesn´t work.

I read "it uses the Idle Periods described previously". So, do I need to just switch that on at the device or also define idle periods?

Thanks a lot.

Hello Jens,
you must switch on "Idle Periods" / "Sperrzeiten" at your S10X device.
Nothing else.
Turn on the limiter for charging the battery up to i.e. 80%, use
mosquitto_pub -h mqtt_host -t "e3dc/set/limit/charge/soc" -m 80
If you like to set it also for the next days, use
mosquitto_pub -h mqtt_host -t "e3dc/set/limit/charge/durable" -m true
(if it's "false" (default) the limiter will only work for the current day)

Best regards
Thomas

Hi Thomas,
thanks, it works like you described. I just missed to switch it on.
BR Jens