mjcumming / HomieV3

Homie V3 Implementation in Python
MIT License
5 stars 7 forks source link

Ensure booleans are sent according to Homie spec #11

Closed rfaelens closed 4 years ago

rfaelens commented 4 years ago

Homie specifies booleans should be sent as the string literals "true" or "false" Paho-mqtt instead sends them as "True" or "False" This small commit corrects that problem

Fixes #10