I have two MQTT sensors (A
and B
) that I would like to show up as a single device with two entities – is it possible to do this without using discovery?
I have this in my configuration but it doesn’t create a new device, just shows two sensors:
sensor:
- platform: mqtt
name: "A"
state_topic: "/home/A"
device:
manufacturer: "Test"
name: "Test name"
identifiers: abc123
model: testdev
unique_id: "123abc"
- platform: mqtt
name: "B"
state_topic: "/home/B"
device:
manufacturer: "Test"
name: "Test name"
identifiers: abc123
model: testdev
unique_id: "456abc"