Charging Station Connector

Description.

The message is used to set or get the status of the connector (plug) of the station.

CsConnectorRequest

Topic: josev/cs. Used to get or set the lock status of a connector.

type

object

properties

  • id

type

string

format

uuid

  • name

const

cs_connector

  • type

const

request

  • data

type

object

default

properties

  • evse_id

type

string

  • connector_id

type

number

  • action

enum

lock, unlock, status

Example:

{
    "id": "79ac862e-d0a7-4eef-98b5-c827be3bd669",
    "name": "cs_connector",
    "type": "request",
    "data": {
       "evse_id": "DE*SEV*E123456789",
       "connector_id": 1,
       "action": "lock" # "unlock", #"status"
    }
}

CsConnectorResponse

Topic: cs/josev. Used to respond to a CS Connector request.

type

object

properties

  • id

type

string

format

uuid

  • name

const

cs_connector

  • type

const

response

  • data

type

object

default

properties

  • evse_id

type

string

  • connector_id

type

number

  • status

enum

locked, unlocked, error

  • info

type

string

Example:

{
    "id": "79ac862e-d0a7-4eef-98b5-c827be3bd669",
    "name": "cs_connector",
    "type": "response",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "connector_id": 1,
        "status": "locked" # "unlocked", "error"
        "info": None # optional field, we may fill with contactor info
    }
}