Get manufacturer name string from device (#290)

This commit is contained in:
Jesse Hills 2022-10-25 17:00:07 +13:00 committed by GitHub
parent ce1e98646c
commit 978c523e09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 212 additions and 202 deletions

View File

@ -204,6 +204,8 @@ message DeviceInfoResponse {
uint32 webserver_port = 10;
uint32 bluetooth_proxy_version = 11;
string manufacturer = 12;
}
message ListEntitiesRequest {

File diff suppressed because one or more lines are too long

View File

@ -101,6 +101,7 @@ class DeviceInfo(APIModelBase):
mac_address: str = ""
compilation_time: str = ""
model: str = ""
manufacturer: str = ""
has_deep_sleep: bool = False
esphome_version: str = ""
project_name: str = ""