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 |
|||
|
type |
string |
|
format |
uuid |
||
|
const |
cs_connector |
|
|
const |
request |
|
|
type |
object |
|
default |
|||
properties |
|||
|
type |
string |
|
|
type |
number |
|
|
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 |
|||
|
type |
string |
|
format |
uuid |
||
|
const |
cs_connector |
|
|
const |
response |
|
|
type |
object |
|
default |
|||
properties |
|||
|
type |
string |
|
|
type |
number |
|
|
enum |
locked, unlocked, error |
|
|
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
}
}