Wildcard usage
Hello,
I am trying to use wildcard for the following topic tree (in micropython and kodular):
casa
- interruptores
-
- switch1
-
-
- estado:0
-
-
-
- modo:1
-
-
- switch2
-
-
- estado:1
-
-
-
- modo:2
-
- sensores
-
- temperatura
-
-
- hora:“11:13:00”
-
-
-
- grados: 17.5
-
When I subscribe at casa/# I receive the information about all the topics, as well as I receive information when I use the paths:
casa/interruptores/switch1/#
casa/interruptores/switch2/#
However, when I try to receive the information only from the switches (switch1, switch2… up to switchn) using:
casa/interruptores/#
do not receive any information.
Will I have to do anything else to achieve this? Any configuration changes I need to make?
I will appreciate your help.