In the BYOT MQTT message format, the topic for sending sensor data is:
v1/username/things/clientID/data/channel
Can a single channel be used to send multiple different sensor data?
In my topology, I might have a gateway, with several bluetooth sensor nodes attached, each having multiple sensors on it (Temperature, Pressure, Humidity).
Should I do this? I could send three messages with different data on the same topic (channel), for example:
v1/username/things/clientID/data/0
temp,c=value
v1/username/things/clientID/data/0
press,psi=value
v1/username/things/clientID/data/0
rel_hum,p=value
Or would I need to separate each sensor by channel?
v1/username/things/clientID/data/0
temp,c=value
v1/username/things/clientID/data/1
press,psi=value
v1/username/things/clientID/data/2
rel_hum,p=value