Add device type string for virtual device

This commit is contained in:
Adam Honse 2021-04-22 16:24:42 -05:00
parent 95f40039eb
commit be1fbc27ca

View file

@ -1465,6 +1465,8 @@ std::string device_type_to_str(device_type type)
return "Light";
case DEVICE_TYPE_SPEAKER:
return "Speaker";
case DEVICE_TYPE_VIRTUAL:
return "Virtual";
default:
return "Unknown";
}