| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import asyncio
- import logging
- try:
- import websockets
- except ModuleNotFoundError:
- print("This example relies on the 'websockets' package.")
- print("Please install it by running: ")
- print()
- print(" $ pip install websockets")
- import sys
- sys.exit(1)
- from ocpp.v16 import ChargePoint as cp
- from ocpp.v16 import call
- from ocpp.v16.enums import RegistrationStatus
- logging.basicConfig(level=logging.INFO)
- class ChargePoint(cp):
- async def send_boot_notification(self):
- request = call.BootNotificationPayload(
- charge_point_model="Optimus", charge_point_vendor="The Mobility House"
- )
- response = await self.call(request)
- if response.status == RegistrationStatus.accepted:
- print("Connected to central system.")
- async def main():
- async with websockets.connect(
- "ws://localhost:9000/CP_1", subprotocols=["ocpp1.6"]
- ) as ws:
- cp = ChargePoint("CP_1", ws)
- await asyncio.gather(cp.start(), cp.send_boot_notification())
- if __name__ == "__main__":
- # asyncio.run() is used when running this example with Python >= 3.7v
- asyncio.run(main())
|