Control Pilot Status

Description.

Used by the CS to inform JOSEV about changes in the CP status.

Tip

Josev’s SLAC subscribes to cs/josev and filters for cp_status message

OCPP subscribes to cs/josev and filters for cp_status message.

CpStatusUpdate

Topic: cs/josev. Used to update the control pilot status.

type

object

properties

  • id

type

string

format

uuid

  • name

const

cp_status

  • type

const

update

  • data

type

object

properties

  • evse_id

type

string

  • connector_id

type

integer

  • state

enum

A1, A2, B1, B2, C1, C2, D1, D2, E, F

  • max_voltage

type

number

  • min_voltage

type

number

  • duty_cycle

type

number

maximum

100

minimum

0

Example:

{
  "id": "b7973c02-187d-4bb0-a3cd-ed2851ac47f6",
  "name": "cp_status",
  "type": "update",
  "data": {
    "evse_id": "DE*SEV*E123456789",
    "connector_id": 1,
    "state": "A1",
    "max_voltage": 12.0, # float Optional
    "min_voltage": 0.05, # float Optional
    "duty_cycle": 100.0 # float Optional
  }
}