Search found 11 matches
- Thu Nov 17, 2016 8:43 pm
- Forum: ESP8266 boards
- Topic: UMQTT - Can it support multiple publish statements?
- Replies: 1
- Views: 1376
Re: UMQTT - Can it support multiple publish statements?
Hi, I'm sending three values using three different publishes after each other. And I had the same problem, so I tried adding a short sleep before sending the next publish: mqttc.publish(TOPIC_DS1_T, "%3.2f" % ds1_t) time.sleep_ms(20) mqttc.publish(TOPIC_DHT1_T, "%3.2f" % dht1_t) time.sleep_ms(20) mq...