We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Subscriptions to # topics (feeds) do not seem to work, but regarding to: (https://learn.adafruit.com/adafruit-io/mqtt-api) it should work.
Adafruit_MQTT_Subscribe subInst = Adafruit_MQTT_Subscribe(&mqtt, "test/#"); subInst.setCallback(subInstCallback); mqtt.subscribe(&subInst); void subInstCallback(char *data, uint16_t len) { Serial.println(); Serial.print("----- subInstCallback:BEG ------"); Serial.println(data); Serial.print("----- subInstCallback:END ------"); }
MQTT is connected, of course and processPackets() is called.
Everything works, when I change the feed from "test/#" to "test/1", for example.
Has someone made the same experience?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Subscriptions to # topics (feeds) do not seem to work,
but regarding to:
(https://learn.adafruit.com/adafruit-io/mqtt-api)
it should work.
MQTT is connected, of course and processPackets() is called.
Everything works, when I change the feed from "test/#" to "test/1", for example.
Has someone made the same experience?
The text was updated successfully, but these errors were encountered: