homebridge-plugins / homebridge-roomba2

Homebridge plugin to connect iRobot Roomba devices with Homebridge/HomeKit.
MIT License
144 stars 17 forks source link

Describe Purpose/Use Case for Auto Refresh & Keep Alive #6

Closed a-rodriguez closed 3 years ago

a-rodriguez commented 3 years ago

More of a question, when or why would I need/want to use Auto Refresh and Keep Alive?

Also, thank you for this great plugin!

iRayanKhan commented 3 years ago

Hey @a-rodriguez,

This bit from the sty plugin should explain the refresh modes:

This plugins supports these refresh modes:

NONE (autoRefreshEnabled and keepAlive both set to false) - no auto refresh, we will connect to roomba and poll status when requested by home app. Please note that this will cause "Updating" status for all homebridge accessories.

AUTO REFRESH (autoRefreshEnabled set to true) - we will connect to roomba, every pollingInterval seconds, and store the status in cache. if pollingInterval = cacheTTL - 10 (or more), this will make sure we will always have a valid status.

KEEP ALIVE (keepAlive set to true) - we will keep a connection to roomba, this will cause app to fail to connect to roomba in local network mode (cloud mode will work just fine, even in your home wifi). This will lead to better performance (status will refresh faster, and toggle will work faster as well). Keep in mind this will increase the Roomba battery consumption.