-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
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
MQTT Topic depth? #39
Comments
I had a similar problem with very long topics (i.e. /home/firstfloor/livingroom/windows/left/down etc.), especially when I had many of them (states/commands/sensors, so on). At first I tried shortening the topics, but I still had problems. Apparently you might have lots of SRAM when compiling, but when your program runs on the Arduino, it consumes more SRAM than that and runs out of memory, causing all sorts of problems. So I decided to put everything in PROGMEM like so: const char PROGMEM superLongTopic[] = "/super/long/topic/that/goes/on/and/on/and/on/and/on"; and then you need some function to bring them back from PROGMEM: #define MAX_STRING 65 //your longest possible topic. Careful, this is actually consuming SRAM So, when you need your topic, you call getString(superLongTopic) |
Hello, When I upload software to esp8266 I get an error that is below. Please help me !!!. pi@raspberrypi /usr/share/arduino/libraries/espduino $ sudo esp8266/tools/esptool.py -p /dev/ttyUSB0 write_flash 0x00000 esp8266/release/0x00000.bin 0x40000 esp8266/release/0x40000.bin |
Hey ymaglaras, thanks for your response and you're right. I tried your snippet and it works :) So my problem is not a ESPduino problem but my (arduino) problem... :) Edit: Well i think that isnt my problem... |
Hey friends,
i got a problem with my MQTT connection. I sent a message through MQTT.fx (desktop client) a message to the topic /network/mode (message: 1). On the Arduino i only get this:
nothing more... my callback method isnt called by espduino. In my desktop client I get the message normaly. If i try to sent a message to /mode then I get a message and my callback method working normaly...
I think there is a problem with multiple level in topics?
Does someone has the same problem?
As mqtt broker I use mosquitto (on a unix system).
The text was updated successfully, but these errors were encountered: