add support for schuko/type-E charge sockets to C++ SDK

Signed-off-by: Séverin Lemaignan <severin@guakamole.org>
This commit is contained in:
Séverin Lemaignan
2025-11-25 22:42:12 +01:00
committed by x7z4w
parent 26cb42651c
commit 610737d295

View File

@@ -93,9 +93,9 @@ public:
/** List of supported sockets, ~ordered from high-power to low-power. /** List of supported sockets, ~ordered from high-power to low-power.
* This order can be used in the UIs. * This order can be used in the UIs.
*/ */
static constexpr std::array<std::string_view, 12> SUPPORTED_TYPES = { static constexpr std::array<std::string_view, 14> SUPPORTED_TYPES = {
"mcs", "type2_combo", "chademo", "nacs", "type1", "gb_dc", "mcs", "type2_combo", "chademo", "nacs", "type1", "gb_dc", "chaoji",
"chaoji", "type3c", "type2_cable", "type2", "gb_ac", "type3a"}; "type3c", "type2_cable", "type2", "gb_ac", "type3a", "typee", "schuko"};
/** Return a list of OSM attributes that have changed between the current /** Return a list of OSM attributes that have changed between the current
* list of sockets and the provided old list. * list of sockets and the provided old list.