diff --git a/html/pyeasee/charger.html b/html/pyeasee/charger.html index 4941b41..f38a2e1 100644 --- a/html/pyeasee/charger.html +++ b/html/pyeasee/charger.html @@ -91,6 +91,12 @@

Methods

Gets consumption between two dates

+
+async def get_sessions_between_dates(self, from_date: datetime.datetime, to_date) +
+
+

Gets charging sessions between two dates

+
async def get_state(self, raw=False) ‑> ChargerState
@@ -121,6 +127,12 @@

Methods

Pause charging session

+
+async def phaseMode(self, mode: int = 2) +
+
+

Set charging phase mode, 1 = always 1-phase, 2 = auto, 3 = always 3-phase

+
async def reboot(self)
@@ -176,7 +188,7 @@

Methods

Enable and disable smart button in charger settings

-async def smart_charging(self) +async def smart_charging(self, enable: bool)

Set charger smart charging setting

@@ -239,6 +251,22 @@

Ancestors

  • collections.abc.Container
  • +
    +class ChargerSession +(session: Dict[str, Any]) +
    +
    +

    Charger charging session

    +

    Ancestors

    + +
    class ChargerState (state: Dict[str, Any], raw=False) @@ -281,11 +309,13 @@

    Cha
  • get_basic_charge_plan
  • get_config
  • get_consumption_between_dates
  • +
  • get_sessions_between_dates
  • get_state
  • limitToSinglePhaseCharging
  • lockCablePermanently
  • override_schedule
  • pause
  • +
  • phaseMode
  • reboot
  • resume
  • set_access
  • @@ -309,6 +339,9 @@

    ChargerSchedule

  • +

    ChargerSession

    +
  • +
  • ChargerState

  • diff --git a/html/pyeasee/site.html b/html/pyeasee/site.html index bbc5e6e..768d525 100644 --- a/html/pyeasee/site.html +++ b/html/pyeasee/site.html @@ -92,6 +92,12 @@

    Ancestors

    Methods

    +
    +async def get_config(self) +
    +
    +

    Get Equalizer config

    +
    async def get_state(self)
    @@ -100,6 +106,38 @@

    Methods

    +
    +class EqualizerConfig +(config: Dict[str, Any]) +
    +
    +
    +

    Ancestors

    +
      +
    • BaseDict
    • +
    • collections.abc.Mapping
    • +
    • collections.abc.Collection
    • +
    • collections.abc.Sized
    • +
    • collections.abc.Iterable
    • +
    • collections.abc.Container
    • +
    +
    +
    +class EqualizerState +(state: Dict[str, Any]) +
    +
    +
    +

    Ancestors

    +
      +
    • BaseDict
    • +
    • collections.abc.Mapping
    • +
    • collections.abc.Collection
    • +
    • collections.abc.Sized
    • +
    • collections.abc.Iterable
    • +
    • collections.abc.Container
    • +
    +
    class Site (data: Dict[str, Any], easee: Any) @@ -208,10 +246,17 @@

    Circuit

    Equalizer

  • +

    EqualizerConfig

    +
  • +
  • +

    EqualizerState

    +
  • +
  • Site