Big fan of this homebridge plugin. Other MQTT related plugins were a hard to wrap ones head around, but this couldn't be easier. More of a question as opposed to an issue, but what are the best practices for naming topics for multiple accessories of the same type?
For example, given the following configuration, how should I modify it if I have 2 or 3 accessories that do the same thing?
Should I just name them "fireplace1", "fireplace2", etc. and have topics "fireplace1/getOn", "fireplace2/getOn", etc? I guess that would mean I need to hardcode the "fireplace1" topic component into my accessory, which seems less than ideal...
Big fan of this homebridge plugin. Other MQTT related plugins were a hard to wrap ones head around, but this couldn't be easier. More of a question as opposed to an issue, but what are the best practices for naming topics for multiple accessories of the same type?
For example, given the following configuration, how should I modify it if I have 2 or 3 accessories that do the same thing?
{ "accessory": "mqttthing", "type": "switch", "name": "fireplace", "topics": { "getOn": "fireplace/getOn", "setOn":"fireplace/setOn", }, "integerValue": true }
Should I just name them "fireplace1", "fireplace2", etc. and have topics "fireplace1/getOn", "fireplace2/getOn", etc? I guess that would mean I need to hardcode the "fireplace1" topic component into my accessory, which seems less than ideal...