Allen Derusha
Allen Derusha
This is all developed in PlatformIO and the project should be directly portable with no code changes, just drag the .ino into `./src`, pull in your libraries, and it will...
Sounds good. I'm keeping the codebase Arduino IDE-native because I feel like that's the lowest-friction option for new users, but personally I can't stand working in that environment :D Splitting...
WOW!
> @zdar did you use nextion LCD? or maybe other types could be used? The HASP project fundamentally relies on the Nextion command protocol, so unless another LCD panel also...
This project meets the requirements I laid out for it, so I probably won't be adding additional features. However, I'll keep this open in case anyone wants to jump on...
The keepalive interval is 10 seconds and should result in something around 30-60 seconds before the system knows the device is offline. You don't want that number much lower because...
If you check out lines [152-157](https://github.com/aderusha/MQTTCarPresence/blob/master/MQTTCarPresence/MQTTCarPresence.ino#L152-L157) you'll find a group of commands to publish configuration and state to MQTT. [The publish() function](https://pubsubclient.knolleary.net/api.html#publish2) accepts an optional third parameter for setting the...
It's simply reporting the value provided to it by the ESP8266. You're talking about a radio that was sold for a dollar, so adjust your expectations about the stability of...
In that case something is publishing that value. Try logging MQTT messages on your broker and see if you can't find what sent that value over.
Is there any chance one or more devices might have retain on, while another doesn't? This should be trackable if you leave MQTT Explorer running and check the message history.