How to use the ocpp.charge_point.ChargePoint function in ocpp

To help you get started, we’ve selected a few ocpp examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mobilityhouse / ocpp / ocpp / v20 / __init__.py View on Github external
from ocpp.charge_point import ChargePoint as cp
from ocpp.v20 import call_result, call


class ChargePoint(cp):
    _call = call
    _call_result = call_result
    _ocpp_version = '2.0'
github mobilityhouse / ocpp / ocpp / v16 / __init__.py View on Github external
from ocpp.charge_point import ChargePoint as cp
from ocpp.v16 import call_result, call


class ChargePoint(cp):
    _call = call
    _call_result = call_result
    _ocpp_version = '1.6'