brand_to_cstr()

This commit is contained in:
proddy
2026-05-16 15:46:17 +02:00
parent 0bb27f03f3
commit 824c036f9a
2 changed files with 9 additions and 5 deletions

View File

@@ -2535,7 +2535,7 @@ bool System::command_info(const char * value, const int8_t id, JsonObject output
obj["name"] = emsdevice->name(); // custom name
obj["deviceID"] = Helpers::hextoa(emsdevice->device_id());
obj["productID"] = emsdevice->product_id();
obj["brand"] = emsdevice->brand_to_char();
obj["brand"] = emsdevice->brand_to_cstr();
obj["version"] = emsdevice->version();
obj["entities"] = emsdevice->count_entities();
char result[1000];