Bert Melis

Results 287 comments of Bert Melis

Yes, the library supports subscribing to multiple topics at once. You have to pass pairs of topic c-strings and qos values. The callback for (un)successful subscribing returns an array of...

Ah, you're not subscribing to multiple topics in one call. Would you share the brokers log? Would it be possible to build your code with debug logging enabled and share...

Let's start with getting the debug output from the ESP. This will already show who is disconnecting: the client or the broker. **Arduino IDE** tools-->core debug level --> verbose edit...

Both ESP32 and ESP8266 are in the "async" organization so both dependencies will be updated. The main async problem -the hardcoded timeout- is not addressed at the moment though.

I know literally nothing about Typescript, but would this work? in `config.ts` add this: ```typescript export const tokensPerMinute = process.env.TOKENS_PER_MINUTE ?? '0'; export const requestsPerMinute = process.env.REQUESTS_PER_MINUTE ?? '0'; ```...