Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (21 loc) · 690 Bytes

File metadata and controls

32 lines (21 loc) · 690 Bytes

Archived

The juicenet API has been shut down.

There are multiple open source projects available to receive data and control charging directly via UDP.

Python Juicenet

Access to the Juicenet EVSE charger API

Example

import aiohttp
import asyncio
import pyjuicenet

async def main():
  async with aiohttp.ClientSession() as session:
    api = pyjuicenet.Api('ACCESS_TOKEN', session)
    devices = await api.get_devices()
    charger = devices[0]
    await charger.update_state()
    print(charger.voltage) # 240
    await charger.set_override(True) # Charge the car now ignoring the schedule

asyncio.run(main())