EdJoPaTo

Results 355 comments of EdJoPaTo

> Keep the links coming where possible. https://github.com/EdJoPaTo/website-stalker/actions/runs/1112600663 Using v0.1.8 also fixed it for me. And while I'm already here: Thanks for doing this and its awesome to see the...

@CalvinWilkinson > the main issue the causing the error breaking releases is now fixed in https://github.com/softprops/action-gh-release/releases/tag/v0.1.12 (v1 tag was updated) I think thats why you thought about v0.1.9: > to...

I looked into my script and it uses `--presets ./presets/*.toml`. This is helpful when testing only configs starting with 0 for example as its easily changed into `./presets/0*.toml`. This doesnt...

@jendaz: See #32 ;) Looks like @lucacri is just not willing to accept this 🤔

providing the error might help finding the cause. omitting user and password is possible for sure. You can also set them to NULL. This is basically my minimal setup: ```c++...

The method is expecting a `const char*` and not a `String`. (Basically `C` vs `C++`) You can convert the `String` to a c style `const char*` with `c_str()` like this:...

Personally I use `#define BROKER "hostname"` instead of String constants. This has the benefit of concating multiple ones at compile time like this: ```c #define DEVICE_NAME something #define BASE_TOPIC DEVICE_NAME...

This library is a convenience wrapper around the official ESP8266/ESP32 WiFi methods so it only does what it does. https://github.com/plapointe6/EspMQTTClient/blob/bd829e1352bc970b6fa6a99c7243d9205e2ef700/src/EspMQTTClient.cpp#L559-L571 Maybe the ESP32 WiFi supports what you are looking for?...

> please find a better solution This is an open source project. Others wont just do the work for you. Do tests and suggest one :) Strings in C/C++ assume...

Using a hostname works for me. I have never used IP addresses with this library. My in-home MQTT Broker uses DHCP and has a hostname which I use to connect...