diff --git a/custom_components/omnilogic/common.py b/custom_components/omnilogic/common.py index f77082f..6d6bd59 100644 --- a/custom_components/omnilogic/common.py +++ b/custom_components/omnilogic/common.py @@ -50,7 +50,7 @@ def __init__( async def _async_update_data(self): """Fetch data from OmniLogic.""" try: - async with async_timeout.timeout(20): + async with async_timeout.timeout(30): data = await self.api.get_telemetry_data() self._timeout_count = 0 diff --git a/custom_components/omnilogic/const.py b/custom_components/omnilogic/const.py index a00a7d7..f1f5194 100644 --- a/custom_components/omnilogic/const.py +++ b/custom_components/omnilogic/const.py @@ -2,7 +2,7 @@ DOMAIN = "omnilogic" CONF_SCAN_INTERVAL = "polling_interval" -DEFAULT_SCAN_INTERVAL = 6 +DEFAULT_SCAN_INTERVAL = 30 DEFAULT_PH_OFFSET = 0 COORDINATOR = "coordinator" OMNI_API = "omni_api" diff --git a/info.md b/info.md index ffbc2ad..2137316 100644 --- a/info.md +++ b/info.md @@ -98,5 +98,9 @@ If you have problems with the integration, the first thing we will need to troub 2. Hit the 'Run' button at the top. 3. Enter your username and password 4. Hit Enter to clear your credentials -5. Look for a file called 'output_116_YOURUSERNAME_telemetry.json' in the left side -6. Post your telemetry when you open an issue in this repository as a code block so we can review and troubleshoot +5. After the script finishes, your file name will be listed in the output (eg. `output_116_5216g89yd5_telemetry.json`) + - Click on the **"Show Files"** on the top left + - Look for the respective file and click on it to open and view the content + - It may be useful to `CTRL+F` for your file name as the sidebar view cannot be expanded + - Copy the telemetry data +7. Post your telemetry when you open an issue in this repository as a json code block so we can review and troubleshoot