General Information
info/version
Version of the currently running firmware.
| Name | Description |
|---|---|
firmwarestring | The firmware version currently running. See Semantic Versioning format. |
configstring | The version of the configuration currently in use. |
config_typestring | Type of configuration stored on this device. |
info/modules
Initialization state of firmware modules.
info/features
Supported hardware features. See Features for details.
info/name
Name and type of the device
| Name | Description |
|---|---|
namestring | The name of the device. Consists of the type and UID of the device. |
typestring | Type of the device.
|
display_typestring | User-readable type of the device. Indicates the hardware version, variant (Smart, Pro), maximum charging power, and any upgrades, e.g., "WARP2 Charger Pro 11kW +NFC" |
uidstring | UID of the device or the installed ESP (Ethernet) Brick. |
info/display_name
User-readable name of the device.
# $HOST e.g. warp-AbCd
Read
curl http://$HOST/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
curl http://$HOST/info/display_name -d '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
curl http://$HOST/info/display_name -d '"Wallbox Garage links"'
# $BROKER e.g. my_mosquitto.localdomain
# $PREFIX e.g. warp/AbCd
Read
mosquitto_sub -v -C 1 -h $BROKER -t $PREFIX/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
With MQTT on $PREFIX/info/display_name_update
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '"Wallbox Garage links"'
| Name | Description |
|---|---|
display_namestring | The display name. |
info/last_boots
Debug information about the last firmware executions
[
{
"reset_reason": 3,
"boot_count": 1,
"timestamp_min": 28568911,
"uptime": 1648057,
"uptime_overflows": 0
},
// An entry is only recorded after 5 minutes of uptime.
// Between boot 1 and 4, the device was restarted twice within 5 minutes (e.g. due to configuration changes)
{
"reset_reason": 3,
"boot_count": 4,
"timestamp_min": 28568946,
"uptime": 28301027,
"uptime_overflows": 0
}
]
| Index | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[0..9]object | Debug information about a firmware execution
|
info/version
Version of the currently running firmware.
| Name | Description |
|---|---|
firmwarestring | The firmware version currently running. See Semantic Versioning format. |
configstring | The version of the configuration currently in use. |
config_typestring | Type of configuration stored on this device. |
info/modules
Initialization state of firmware modules.
info/features
Supported hardware features. See Features for details.
[
"evse",
"cp_disconnect",
"button_configuration",
"ethernet",
"meters",
"nfc",
"meter",
"meter_all_values",
"meter_phases"
]
info/name
Name and type of the device
| Name | Description |
|---|---|
namestring | The name of the device. Consists of the type and UID of the device. |
typestring | Type of the device.
|
display_typestring | User-readable type of the device. Indicates the hardware version, variant (Smart, Pro), maximum charging power, and any upgrades, e.g., "WARP2 Charger Pro 11kW +NFC" |
uidstring | UID of the device or the installed ESP (Ethernet) Brick. |
info/display_name
User-readable name of the device.
# $HOST e.g. warp2-AbCd
Read
curl http://$HOST/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
curl http://$HOST/info/display_name -d '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
curl http://$HOST/info/display_name -d '"Wallbox Garage links"'
# $BROKER e.g. my_mosquitto.localdomain
# $PREFIX e.g. warp2/AbCd
Read
mosquitto_sub -v -C 1 -h $BROKER -t $PREFIX/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
With MQTT on $PREFIX/info/display_name_update
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '"Wallbox Garage links"'
| Name | Description |
|---|---|
display_namestring | The display name. |
info/last_boots
Debug information about the last firmware executions
[
{
"reset_reason": 3,
"boot_count": 1,
"timestamp_min": 28568911,
"uptime": 1648057,
"uptime_overflows": 0
},
// An entry is only recorded after 5 minutes of uptime.
// Between boot 1 and 4, the device was restarted twice within 5 minutes (e.g. due to configuration changes)
{
"reset_reason": 3,
"boot_count": 4,
"timestamp_min": 28568946,
"uptime": 28301027,
"uptime_overflows": 0
}
]
| Index | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[0..9]object | Debug information about a firmware execution
|
info/version
Version of the currently running firmware.
| Name | Description |
|---|---|
firmwarestring | The firmware version currently running. See Semantic Versioning format. |
configstring | The version of the configuration currently in use. |
config_typestring | Type of configuration stored on this device. |
info/modules
Initialization state of firmware modules.
info/features
Supported hardware features. See Features for details.
[
"evse",
"cp_disconnect",
"button_configuration",
"ethernet",
"meters",
"nfc",
"meter",
"meter_all_values",
"meter_phases",
"rtc"
]
info/name
Name and type of the device
| Name | Description |
|---|---|
namestring | The name of the device. Consists of the type and UID of the device. |
typestring | Type of the device.
|
display_typestring | User-readable type of the device. Indicates the hardware version, variant (Smart, Pro), maximum charging power, and any upgrades, e.g., "WARP2 Charger Pro 11kW +NFC" |
uidstring | UID of the device or the installed ESP (Ethernet) Brick. |
info/display_name
User-readable name of the device.
# $HOST e.g. warp3-AbCd
Read
curl http://$HOST/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
curl http://$HOST/info/display_name -d '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
curl http://$HOST/info/display_name -d '"Wallbox Garage links"'
# $BROKER e.g. my_mosquitto.localdomain
# $PREFIX e.g. warp3/AbCd
Read
mosquitto_sub -v -C 1 -h $BROKER -t $PREFIX/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
With MQTT on $PREFIX/info/display_name_update
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '"Wallbox Garage links"'
| Name | Description |
|---|---|
display_namestring | The display name. |
info/last_boots
Debug information about the last firmware executions
[
{
"reset_reason": 3,
"boot_count": 1,
"timestamp_min": 28568911,
"uptime": 1648057,
"uptime_overflows": 0
},
// An entry is only recorded after 5 minutes of uptime.
// Between boot 1 and 4, the device was restarted twice within 5 minutes (e.g. due to configuration changes)
{
"reset_reason": 3,
"boot_count": 4,
"timestamp_min": 28568946,
"uptime": 28301027,
"uptime_overflows": 0
}
]
| Index | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[0..9]object | Debug information about a firmware execution
|
info/version
Version of the currently running firmware.
| Name | Description |
|---|---|
firmwarestring | The firmware version currently running. See Semantic Versioning format. |
configstring | The version of the configuration currently in use. |
config_typestring | Type of configuration stored on this device. |
info/modules
Initialization state of firmware modules.
info/features
Supported hardware features. See Features for details.
info/name
Name and type of the device
| Name | Description |
|---|---|
namestring | The name of the device. Consists of the type and UID of the device. |
typestring | Type of the device.
|
display_typestring | User-readable type of the device. Indicates the hardware version, variant (Smart, Pro), maximum charging power, and any upgrades, e.g., "WARP2 Charger Pro 11kW +NFC" |
uidstring | UID of the device or the installed ESP (Ethernet) Brick. |
info/display_name
User-readable name of the device.
# $HOST e.g. wem-AbCd
Read
curl http://$HOST/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
curl http://$HOST/info/display_name -d '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
curl http://$HOST/info/display_name -d '"Wallbox Garage links"'
# $BROKER e.g. my_mosquitto.localdomain
# $PREFIX e.g. wem/AbCd
Read
mosquitto_sub -v -C 1 -h $BROKER -t $PREFIX/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
With MQTT on $PREFIX/info/display_name_update
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '"Wallbox Garage links"'
| Name | Description |
|---|---|
display_namestring | The display name. |
info/last_boots
Debug information about the last firmware executions
[
{
"reset_reason": 3,
"boot_count": 1,
"timestamp_min": 28568911,
"uptime": 1648057,
"uptime_overflows": 0
},
// An entry is only recorded after 5 minutes of uptime.
// Between boot 1 and 4, the device was restarted twice within 5 minutes (e.g. due to configuration changes)
{
"reset_reason": 3,
"boot_count": 4,
"timestamp_min": 28568946,
"uptime": 28301027,
"uptime_overflows": 0
}
]
| Index | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[0..9]object | Debug information about a firmware execution
|
info/version
Version of the currently running firmware.
| Name | Description |
|---|---|
firmwarestring | The firmware version currently running. See Semantic Versioning format. |
configstring | The version of the configuration currently in use. |
config_typestring | Type of configuration stored on this device. |
info/modules
Initialization state of firmware modules.
info/features
Supported hardware features. See Features for details.
info/name
Name and type of the device
| Name | Description |
|---|---|
namestring | The name of the device. Consists of the type and UID of the device. |
typestring | Type of the device.
|
display_typestring | User-readable type of the device. Indicates the hardware version, variant (Smart, Pro), maximum charging power, and any upgrades, e.g., "WARP2 Charger Pro 11kW +NFC" |
uidstring | UID of the device or the installed ESP (Ethernet) Brick. |
info/display_name
User-readable name of the device.
# $HOST e.g. wem2-AbCd
Read
curl http://$HOST/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
curl http://$HOST/info/display_name -d '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
curl http://$HOST/info/display_name -d '"Wallbox Garage links"'
# $BROKER e.g. my_mosquitto.localdomain
# $PREFIX e.g. wem2/AbCd
Read
mosquitto_sub -v -C 1 -h $BROKER -t $PREFIX/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
With MQTT on $PREFIX/info/display_name_update
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '"Wallbox Garage links"'
| Name | Description |
|---|---|
display_namestring | The display name. |
info/last_boots
Debug information about the last firmware executions
[
{
"reset_reason": 3,
"boot_count": 1,
"timestamp_min": 28568911,
"uptime": 1648057,
"uptime_overflows": 0
},
// An entry is only recorded after 5 minutes of uptime.
// Between boot 1 and 4, the device was restarted twice within 5 minutes (e.g. due to configuration changes)
{
"reset_reason": 3,
"boot_count": 4,
"timestamp_min": 28568946,
"uptime": 28301027,
"uptime_overflows": 0
}
]
| Index | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[0..9]object | Debug information about a firmware execution
|
info/version
Version of the currently running firmware.
| Name | Description |
|---|---|
firmwarestring | The firmware version currently running. See Semantic Versioning format. |
configstring | The version of the configuration currently in use. |
config_typestring | Type of configuration stored on this device. |
info/modules
Initialization state of firmware modules.
info/features
Supported hardware features. See Features for details.
info/name
Name and type of the device
| Name | Description |
|---|---|
namestring | The name of the device. Consists of the type and UID of the device. |
typestring | Type of the device.
|
display_typestring | User-readable type of the device. Indicates the hardware version, variant (Smart, Pro), maximum charging power, and any upgrades, e.g., "WARP2 Charger Pro 11kW +NFC" |
uidstring | UID of the device or the installed ESP (Ethernet) Brick. |
info/display_name
User-readable name of the device.
# $HOST e.g. warp-AbCd
Read
curl http://$HOST/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
curl http://$HOST/info/display_name -d '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
curl http://$HOST/info/display_name -d '"Wallbox Garage links"'
# $BROKER e.g. my_mosquitto.localdomain
# $PREFIX e.g. warp/AbCd
Read
mosquitto_sub -v -C 1 -h $BROKER -t $PREFIX/info/display_name
{ "display_name": "Wallbox Garage links" }
Write
With MQTT on $PREFIX/info/display_name_update
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '{ "display_name": "Wallbox Garage links" }'
or abbreviated:
mosquitto_pub -h $BROKER -t $PREFIX/info/display_name_update -m '"Wallbox Garage links"'
| Name | Description |
|---|---|
display_namestring | The display name. |
info/last_boots
Debug information about the last firmware executions
[
{
"reset_reason": 3,
"boot_count": 1,
"timestamp_min": 28568911,
"uptime": 1648057,
"uptime_overflows": 0
},
// An entry is only recorded after 5 minutes of uptime.
// Between boot 1 and 4, the device was restarted twice within 5 minutes (e.g. due to configuration changes)
{
"reset_reason": 3,
"boot_count": 4,
"timestamp_min": 28568946,
"uptime": 28301027,
"uptime_overflows": 0
}
]
| Index | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
[0..9]object | Debug information about a firmware execution
|