bachya / aioambient

🌤 A clean, async-friendly library for interacting with the Ambient Weather API
MIT License
32 stars 9 forks source link

Issues with continusous run and reconnecting on disconnect #523

Open kyrlon opened 1 week ago

kyrlon commented 1 week ago

I see that there was an issue mentioned about reconnecting, but after a prolonged time, I get a disconnect and have to restart everything to have a stable connection. Below is the error message I get:

INFO:aioambient:Received packet PING data
INFO:aioambient:Received packet PING data
INFO:aioambient:Sending packet PONG data
INFO:aioambient:Received packet PING data
INFO:aioambient:Sending packet PONG data
INFO:aioambient:Watchdog expired – calling reconnect
INFO:aioambient:Sending packet MESSAGE data 1
INFO:aioambient:Sending packet CLOSE data None
INFO:aioambient:Engine.IO connection dropped
INFO:asyncio:Client has disconnected from the websocket
INFO:aioambient:Write loop: WebSocket connection was closed, aborting
INFO:aioambient:Exiting write loop task
WARNING:aioambient:Server sent close packet data None, aborting
INFO:aioambient:Waiting for write loop task to end                                                                                                          INFO:aioambient:Exiting read loop task                                                                                                                      INFO:aioambient:Attempting WebSocket connection to wss://rt2.ambientweather.net/socket.io/?api=1&applicationKey=[KEY_HERE]&transport=websocket&EIO=4                                                                                                              
INFO:aioambient:WebSocket connection accepted with {'sid': 'zR2WAc9J_NXoQK3EZcs6', 'upgrades': [], 'pingInterval': 25000, 'pingTimeout': 20000}             INFO:aioambient:Engine.IO connection established                                                                                                            INFO:aioambient:Sending packet MESSAGE data 0{}                                                                                                             INFO:aioambient:Received packet MESSAGE data 4{"message":"applicationKey-invalid"}                                                                          INFO:aioambient:Connection to namespace / was rejected                                                                                                      INFO:aioambient:Sending packet CLOSE data None                                                                                                              INFO:aioambient:Engine.IO connection dropped                                                                                                                INFO:aioambient:Write loop: WebSocket connection was closed, aborting                                                                                       INFO:aioambient:Exiting write loop task                                                                                                                     WARNING:aioambient:Server sent close packet data None, aborting                                                                                             INFO:aioambient:Waiting for write loop task to end
INFO:aioambient:Exiting read loop task                                                                                                                      ERROR:asyncio:Task exception was never retrieved                                                                                                            future: <Task finished name='Task-9302' coro=<WebsocketWatchdog.on_expire() done, defined at /home/kyrlon/.venv/lib/python3.8/site-packages/aioambient/websocket.py:41> exception=WebsocketError(ConnectionError('One or more namespaces failed to connect'))>
Traceback (most recent call last):
  File "/home/kyrlon/.venv/lib/python3.8/site-packages/aioambient/websocket.py", line 156, in connect
    await self._sio.connect(
  File "/home/kyrlon/.venv/lib/python3.8/site-packages/socketio/async_client.py", line 175, in connect
    raise exceptions.ConnectionError(
socketio.exceptions.ConnectionError: One or more namespaces failed to connect

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/kyrlon/.venv/lib/python3.8/site-packages/aioambient/websocket.py", line 44, in on_expire
    await self._action()
  File "/home/kyrlon/.venv/lib/python3.8/site-packages/aioambient/websocket.py", line 177, in reconnect
    await self.connect()
  File "/home/kyrlon/.venv/lib/python3.8/site-packages/aioambient/websocket.py", line 166, in connect
    raise WebsocketError(err) from err
aioambient.errors.WebsocketError: One or more namespaces failed to connect

Any suggestions on this issue are welcomed!

bachya commented 1 week ago

What version of the library are you using?

kyrlon commented 1 week ago

Python3 version: 3.8.10

aioambient==2021.12.0

bachya commented 1 week ago

That's quite an old version; try upgrading to the latest (2024.01.0) and see if that resolves your issue. Note that you'll likely need to upgrade your Python version: we support the most recent three versions, so you'll need to go to a minimum of 3.10.

kyrlon commented 1 week ago

Wow. I think that is definitely the problem and a complete oversight on my end. I'll update my python3 to the supported version to have the right module.

Edit:

Hopefully this fixes the issues. From the logger I had, it seemed that the connection was ok for approximately 26 hours, 45 minutes, and 43 seconds...😗

kyrlon commented 1 week ago

After about 29 hours, 45 minutes, and 29 seconds. , I still receive a similar error:

2024-07-03 08:40:47,375 [MainThread  ] [ERROR]  Task exception was never retrieved
future: <Task finished name='Task-11008' coro=<WebsocketWatchdog.on_expire() done, defined at /home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py:50> exception=WebsocketError(ConnectionError('One or more namespaces failed to connect'))>
Traceback (most recent call last):
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 226, in connect
    await self._sio.connect(
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/socketio/async_client.py", line 175, in connect
    raise exceptions.ConnectionError(
socketio.exceptions.ConnectionError: One or more namespaces failed to connect

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 53, in on_expire
    await self._action()
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 245, in reconnect
    await self.connect()
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 234, in connect
    raise WebsocketError(err) from err
aioambient.errors.WebsocketError: One or more namespaces failed to connect

For context I am spinning up an api that will provide the data for access from network with the following python code:

from __future__ import annotations

import logging
from typing import Any
import asyncio

from aioambient import Websocket
from aioambient.errors import WebsocketError

import json
from pathlib import Path
import inspect
import time

from quart import Quart

app = Quart(__name__)

CURRENT_FILE_PATH = Path(inspect.getfile(lambda: None)).parent
_LOGGER = logging.getLogger("asyncio")

fileName = "session_%s" % (int(time.time()))
fileHandler = logging.FileHandler("{0}/{1}.log".format(CURRENT_FILE_PATH, fileName))
logFormatter = logging.Formatter("%(asctime)s [%(threadName)-12.12s] [%(levelname)-5.5s]  %(message)s")
fileHandler.setFormatter(logFormatter)

consoleHandler = logging.StreamHandler()
consoleHandler.setFormatter(logFormatter)
_LOGGER.addHandler(fileHandler)

with open(CURRENT_FILE_PATH / "AUTH.json") as fd:
    auth = json.load(fd)

API_KEY = auth["AMBIENT_API_KEY"]
APP_KEY = auth["AMBIENT_APPLICATION_KEY"]

BASE = [{}]

def print_data(data: dict[str, Any]) -> None:
    """Print data as it is received.

    Args:
    ----
        data: The websocket data received.

    """
    BASE[0] = data
    _LOGGER.info("Data received: %s", data)

def print_goodbye() -> None:
    """Print a simple "goodbye" message."""
    _LOGGER.info(f"Client has disconnected from the websocket")

def print_hello() -> None:
    """Print a simple "hello" message."""
    _LOGGER.info("Client has connected to the websocket")

def print_subscribed(data: dict[str, Any]) -> None:
    """Print subscription data as it is received.

    Args:
    ----
        data: The websocket data received.

    """
    # BASE[0] = data
    _LOGGER.info("Client has subscribed: %s", data)

async def main() -> None:
    """Run the websocket example."""
    logging.basicConfig(level=logging.INFO)

    websocket = Websocket(APP_KEY, API_KEY)
    websocket.on_connect(print_hello)
    websocket.on_data(print_data)
    websocket.on_disconnect(print_goodbye)
    websocket.on_subscribed(print_subscribed)

    try:
        await websocket.connect()
    except WebsocketError:
        _LOGGER.exception("There was a websocket error")
        return

    while True:
        await asyncio.sleep(5)

@app.before_serving
async def startup():
    app.add_background_task(main)

@app.route("/kestrel_d3_api")
async def json():
    return BASE[0]

if __name__ == "__main__":
    app.run("0.0.0.0")
And below is the log from this session (and attachment for download as well...)

2024-07-02 02:55:18,033 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 02:55:18,183 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 73.1, 'heatindexf': 72.5, 'dateutc': 1719842160000, 'densityaltitudeft': 2049, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 55.45, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-01T13:56:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 02:57:03,885 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.9, 'dateutc': 1719889020000, 'densityaltitudeft': 2166, 'humidity': 55, 'baromabsin': 29.1, 'dewPoint': 57.44, 'tz': 'America/New_York', 'date': '2024-07-02T02:57:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 02:58:03,663 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.9, 'dateutc': 1719889080000, 'densityaltitudeft': 2154, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 56.93, 'tz': 'America/New_York', 'date': '2024-07-02T02:58:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 02:59:03,828 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.9, 'dateutc': 1719889140000, 'densityaltitudeft': 2169, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 56.93, 'tz': 'America/New_York', 'date': '2024-07-02T02:59:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:00:03,773 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.9, 'dateutc': 1719889200000, 'densityaltitudeft': 2169, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 56.93, 'tz': 'America/New_York', 'date': '2024-07-02T03:00:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:01:03,832 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.9, 'dateutc': 1719889260000, 'densityaltitudeft': 2169, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 56.93, 'tz': 'America/New_York', 'date': '2024-07-02T03:01:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:02:03,762 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 73.9, 'dateutc': 1719889320000, 'densityaltitudeft': 2159, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.02, 'tz': 'America/New_York', 'date': '2024-07-02T03:02:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:03:03,742 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 73.9, 'dateutc': 1719889380000, 'densityaltitudeft': 2164, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.02, 'tz': 'America/New_York', 'date': '2024-07-02T03:03:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:06:19,976 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'dateutc': 1719889560000, 'tz': 'America/New_York', 'date': '2024-07-02T03:06:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:07:03,755 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 73.9, 'dateutc': 1719889620000, 'densityaltitudeft': 2169, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 57.02, 'tz': 'America/New_York', 'date': '2024-07-02T03:07:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:08:03,716 [MainThread  ] [INFO ]  Data received: {'tempf': 74.9, 'heatindexf': 74.1, 'dateutc': 1719889680000, 'densityaltitudeft': 2179, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.12, 'tz': 'America/New_York', 'date': '2024-07-02T03:08:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:09:03,847 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 73.9, 'dateutc': 1719889740000, 'densityaltitudeft': 2174, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 57.02, 'tz': 'America/New_York', 'date': '2024-07-02T03:09:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:10:03,761 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 74.1, 'dateutc': 1719889800000, 'densityaltitudeft': 2169, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 57.02, 'tz': 'America/New_York', 'date': '2024-07-02T03:10:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:11:03,650 [MainThread  ] [INFO ]  Data received: {'tempf': 74.9, 'heatindexf': 74.1, 'dateutc': 1719889860000, 'densityaltitudeft': 2164, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.12, 'tz': 'America/New_York', 'date': '2024-07-02T03:11:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:12:03,823 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.9, 'dateutc': 1719889920000, 'densityaltitudeft': 2164, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 56.93, 'tz': 'America/New_York', 'date': '2024-07-02T03:12:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:13:03,721 [MainThread  ] [INFO ]  Data received: {'tempf': 75, 'heatindexf': 74.1, 'dateutc': 1719889980000, 'densityaltitudeft': 2176, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.21, 'tz': 'America/New_York', 'date': '2024-07-02T03:13:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:14:03,691 [MainThread  ] [INFO ]  Data received: {'tempf': 74.9, 'heatindexf': 74.1, 'dateutc': 1719890040000, 'densityaltitudeft': 2176, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.12, 'tz': 'America/New_York', 'date': '2024-07-02T03:14:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:15:03,627 [MainThread  ] [INFO ]  Data received: {'tempf': 74.9, 'heatindexf': 74.1, 'dateutc': 1719890100000, 'densityaltitudeft': 2186, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 57.12, 'tz': 'America/New_York', 'date': '2024-07-02T03:15:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:16:03,673 [MainThread  ] [INFO ]  Data received: {'tempf': 75, 'heatindexf': 74.1, 'dateutc': 1719890160000, 'densityaltitudeft': 2184, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 57.21, 'tz': 'America/New_York', 'date': '2024-07-02T03:16:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:17:03,616 [MainThread  ] [INFO ]  Data received: {'tempf': 75, 'heatindexf': 74.3, 'dateutc': 1719890220000, 'densityaltitudeft': 2186, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 57.21, 'tz': 'America/New_York', 'date': '2024-07-02T03:17:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:18:03,644 [MainThread  ] [INFO ]  Data received: {'tempf': 75.3, 'heatindexf': 74.1, 'dateutc': 1719890280000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.1, 'dewPoint': 57.49, 'tz': 'America/New_York', 'date': '2024-07-02T03:18:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:19:00,374 [MainThread  ] [INFO ]  Data received: {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 03:33:15,305 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 03:33:16,663 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 03:33:16,770 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 03:46:41,138 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 03:46:44,106 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 03:46:44,914 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 04:01:44,915 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 04:01:46,224 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 04:01:46,326 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 04:16:46,328 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 04:16:47,662 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 04:16:47,771 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 04:31:47,773 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 04:31:49,062 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 04:31:49,167 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 04:46:49,168 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 04:46:50,496 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 04:46:50,605 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 05:01:50,606 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 05:01:51,966 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 05:01:52,079 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 05:16:52,080 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 05:16:53,360 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 05:16:53,466 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 05:31:53,469 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 05:31:54,826 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 05:31:54,933 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 05:46:54,934 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 05:46:56,368 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 05:46:56,483 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 06:01:56,485 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 06:01:57,816 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 06:01:57,920 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 06:16:57,922 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 06:16:59,409 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 06:16:59,524 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 06:31:59,525 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 06:32:00,900 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 06:32:01,015 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 06:47:01,016 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 06:47:02,562 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 06:47:02,665 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 07:02:02,666 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 07:02:04,025 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 07:02:04,132 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 07:17:04,133 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 07:17:05,449 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 07:17:05,560 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 07:32:05,561 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 07:32:06,907 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 07:32:07,010 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 07:47:07,012 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 07:47:08,321 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 07:47:08,424 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 08:02:08,425 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 08:02:09,717 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 08:02:09,825 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 08:17:09,826 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 08:17:11,140 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 08:17:11,245 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 08:32:11,246 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 08:32:12,547 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 08:32:12,655 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 08:47:12,656 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 08:47:14,113 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 08:47:14,218 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 09:02:14,219 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 09:02:15,508 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 09:02:15,610 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 09:17:15,611 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 09:17:17,113 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 09:17:17,226 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 09:32:17,227 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 09:32:18,514 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 09:32:18,626 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 09:47:18,627 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 09:47:19,897 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 09:47:20,009 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 10:02:20,010 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 10:02:21,305 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 10:02:21,415 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 10:17:21,416 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 10:17:22,692 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 10:17:22,797 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 10:32:22,798 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 10:32:24,146 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 10:32:24,258 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 10:47:24,260 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 10:47:25,549 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 10:47:25,656 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 11:02:25,657 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 11:02:27,136 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 11:02:27,254 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 11:17:27,255 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 11:17:28,540 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 11:17:28,647 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 11:32:28,649 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 11:32:29,947 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 11:32:30,073 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 11:47:30,075 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 11:47:31,374 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 11:47:31,478 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 12:02:31,480 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 12:02:32,756 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 12:02:32,863 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 12:17:32,864 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 12:17:34,164 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 12:17:34,266 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 12:32:34,267 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 12:32:37,024 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 12:32:37,629 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 12:47:37,631 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 12:47:38,935 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 12:47:39,072 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 13:02:39,073 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 13:02:40,375 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 13:02:40,478 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 13:17:40,479 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 13:17:41,775 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 13:17:41,887 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 13:32:41,888 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 13:32:47,242 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 13:32:47,353 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 13:47:47,354 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 13:47:48,665 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 13:47:48,776 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 14:02:48,777 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 14:02:50,125 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 14:02:50,237 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 14:17:50,238 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 14:17:51,593 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 14:17:51,702 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 14:32:51,703 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 14:32:53,016 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 14:32:53,119 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 14:35:35,318 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 14:35:36,176 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 14:35:36,282 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 14:50:36,283 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 14:50:37,664 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 14:50:37,797 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 15:05:37,798 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 15:05:39,166 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 15:05:39,277 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 15:20:39,279 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 15:20:40,574 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 15:20:40,680 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 15:35:40,681 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 15:35:42,034 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 15:35:42,142 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 15:48:17,811 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 15:48:19,015 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 15:48:19,125 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 16:03:19,127 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 16:03:20,410 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 16:03:20,518 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 16:18:20,520 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 16:18:21,850 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 16:18:21,963 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 16:33:21,965 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 16:33:23,405 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 16:33:23,531 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 16:42:14,058 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 16:42:15,452 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 16:42:15,557 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 16:57:15,559 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 16:57:16,947 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 16:57:17,064 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 17:12:17,064 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 17:12:18,454 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 17:12:18,565 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 17:27:18,566 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 17:27:19,860 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 17:27:19,966 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 17:42:19,968 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 17:42:21,560 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 17:42:21,675 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 17:57:21,676 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 17:57:22,971 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 17:57:23,077 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 75.1, 'heatindexf': 74.3, 'dateutc': 1719890340000, 'densityaltitudeft': 2181, 'humidity': 54, 'baromabsin': 29.11, 'dewPoint': 57.3, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T03:19:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 18:08:04,112 [MainThread  ] [INFO ]  Data received: {'tempf': 73.3, 'heatindexf': 72.5, 'dateutc': 1719943680000, 'densityaltitudeft': 2121, 'humidity': 52, 'baromabsin': 29.05, 'dewPoint': 54.6, 'tz': 'America/New_York', 'date': '2024-07-02T18:08:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:09:03,750 [MainThread  ] [INFO ]  Data received: {'tempf': 73.3, 'heatindexf': 72.5, 'dateutc': 1719943740000, 'densityaltitudeft': 2125, 'humidity': 52, 'baromabsin': 29.05, 'dewPoint': 54.6, 'tz': 'America/New_York', 'date': '2024-07-02T18:09:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:10:03,744 [MainThread  ] [INFO ]  Data received: {'tempf': 73.4, 'heatindexf': 72.7, 'dateutc': 1719943800000, 'densityaltitudeft': 2129, 'humidity': 52, 'baromabsin': 29.05, 'dewPoint': 54.69, 'tz': 'America/New_York', 'date': '2024-07-02T18:10:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:11:04,100 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719943860000, 'densityaltitudeft': 2136, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:11:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:12:04,130 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719943920000, 'densityaltitudeft': 2131, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:12:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:13:04,005 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719943980000, 'densityaltitudeft': 2131, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.87, 'tz': 'America/New_York', 'date': '2024-07-02T18:13:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:14:03,960 [MainThread  ] [INFO ]  Data received: {'tempf': 73.4, 'heatindexf': 72.7, 'dateutc': 1719944040000, 'densityaltitudeft': 2131, 'humidity': 52, 'baromabsin': 29.05, 'dewPoint': 54.69, 'tz': 'America/New_York', 'date': '2024-07-02T18:14:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:15:03,771 [MainThread  ] [INFO ]  Data received: {'tempf': 73.4, 'heatindexf': 72.7, 'dateutc': 1719944100000, 'densityaltitudeft': 2131, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.69, 'tz': 'America/New_York', 'date': '2024-07-02T18:15:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:16:03,720 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719944160000, 'densityaltitudeft': 2141, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:16:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:17:03,769 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719944220000, 'densityaltitudeft': 2151, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.97, 'tz': 'America/New_York', 'date': '2024-07-02T18:17:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:18:03,688 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719944280000, 'densityaltitudeft': 2136, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:18:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:19:03,678 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719944340000, 'densityaltitudeft': 2139, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:19:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:20:03,826 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719944400000, 'densityaltitudeft': 2139, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.87, 'tz': 'America/New_York', 'date': '2024-07-02T18:20:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:21:03,670 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719944460000, 'densityaltitudeft': 2144, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:21:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:22:03,700 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719944520000, 'densityaltitudeft': 2146, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.87, 'tz': 'America/New_York', 'date': '2024-07-02T18:22:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:23:03,899 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719944580000, 'densityaltitudeft': 2144, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:23:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:24:03,753 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719944640000, 'densityaltitudeft': 2141, 'humidity': 52, 'baromabsin': 29.04, 'dewPoint': 54.78, 'tz': 'America/New_York', 'date': '2024-07-02T18:24:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:25:03,816 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719944700000, 'densityaltitudeft': 2169, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.25, 'tz': 'America/New_York', 'date': '2024-07-02T18:25:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:26:03,960 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719944760000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:26:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:27:03,644 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719944820000, 'densityaltitudeft': 2149, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:27:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:28:03,809 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719944880000, 'densityaltitudeft': 2154, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:28:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:29:03,847 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719944940000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:29:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:30:03,888 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945000000, 'densityaltitudeft': 2144, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:30:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:31:03,783 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719945060000, 'densityaltitudeft': 2151, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:31:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:32:03,936 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945120000, 'densityaltitudeft': 2154, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:32:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:33:03,666 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945180000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:33:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:34:03,823 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945240000, 'densityaltitudeft': 2149, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:34:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:35:03,795 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719945300000, 'densityaltitudeft': 2151, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T18:35:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:36:03,705 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719945360000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T18:36:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:37:03,755 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945420000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:37:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:38:04,215 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719945480000, 'densityaltitudeft': 2164, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T18:38:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:39:03,928 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719945540000, 'densityaltitudeft': 2164, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T18:39:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:40:04,176 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719945600000, 'densityaltitudeft': 2154, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T18:40:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:41:03,939 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.7, 'dateutc': 1719945660000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:41:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:42:04,035 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719945720000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T18:42:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:43:03,699 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719945780000, 'densityaltitudeft': 2171, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T18:43:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:44:03,986 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945840000, 'densityaltitudeft': 2164, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:44:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:45:03,916 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945900000, 'densityaltitudeft': 2169, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:45:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:46:03,794 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719945960000, 'densityaltitudeft': 2166, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:46:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:47:03,893 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719946020000, 'densityaltitudeft': 2169, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:47:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:48:03,670 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719946080000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.04, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:48:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:49:03,874 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719946140000, 'densityaltitudeft': 2154, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:49:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:50:03,958 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946200000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:50:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:51:03,843 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946260000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:51:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:52:03,993 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719946320000, 'densityaltitudeft': 2154, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T18:52:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:53:03,902 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946380000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:53:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:54:04,164 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946440000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:54:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:55:03,935 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719946500000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.25, 'tz': 'America/New_York', 'date': '2024-07-02T18:55:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:56:03,954 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946560000, 'densityaltitudeft': 2156, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:56:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:57:03,991 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719946620000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.25, 'tz': 'America/New_York', 'date': '2024-07-02T18:57:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:58:04,393 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946680000, 'densityaltitudeft': 2166, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T18:58:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 18:59:04,062 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719946740000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T18:59:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:00:03,809 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946800000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:00:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:01:04,306 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946860000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:01:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:02:04,200 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.7, 'dateutc': 1719946920000, 'densityaltitudeft': 2156, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:02:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:03:04,279 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719946980000, 'densityaltitudeft': 2154, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:03:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:04:04,208 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947040000, 'densityaltitudeft': 2156, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:04:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:05:04,462 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719947100000, 'densityaltitudeft': 2171, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.25, 'tz': 'America/New_York', 'date': '2024-07-02T19:05:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:06:04,288 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719947160000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.25, 'tz': 'America/New_York', 'date': '2024-07-02T19:06:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:07:04,200 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947220000, 'densityaltitudeft': 2164, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:07:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:08:04,082 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947280000, 'densityaltitudeft': 2159, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:08:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:09:03,802 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719947340000, 'densityaltitudeft': 2166, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:09:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:10:03,846 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719947400000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:10:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:11:04,257 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719947460000, 'densityaltitudeft': 2166, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:11:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:12:03,884 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719947520000, 'densityaltitudeft': 2169, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:12:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:13:03,877 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947580000, 'densityaltitudeft': 2166, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:13:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:14:03,851 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947640000, 'densityaltitudeft': 2166, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:14:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:15:04,138 [MainThread  ] [INFO ]  Data received: {'tempf': 73.5, 'heatindexf': 72.7, 'dateutc': 1719947700000, 'densityaltitudeft': 2161, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.25, 'tz': 'America/New_York', 'date': '2024-07-02T19:15:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:16:03,680 [MainThread  ] [INFO ]  Data received: {'tempf': 73.6, 'heatindexf': 72.9, 'dateutc': 1719947760000, 'densityaltitudeft': 2164, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.34, 'tz': 'America/New_York', 'date': '2024-07-02T19:16:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:17:04,114 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947820000, 'densityaltitudeft': 2171, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:17:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:18:03,836 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947880000, 'densityaltitudeft': 2169, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:18:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:19:03,699 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719947940000, 'densityaltitudeft': 2176, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:19:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:20:03,996 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719948000000, 'densityaltitudeft': 2176, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:20:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:21:04,274 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948060000, 'densityaltitudeft': 2181, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:21:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:22:03,929 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948120000, 'densityaltitudeft': 2176, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:22:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:23:04,107 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719948180000, 'densityaltitudeft': 2179, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:23:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:24:04,129 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719948240000, 'densityaltitudeft': 2176, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:24:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:25:03,824 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719948300000, 'densityaltitudeft': 2186, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:25:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:26:03,810 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948360000, 'densityaltitudeft': 2184, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:26:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:27:04,113 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948420000, 'densityaltitudeft': 2176, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:27:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:28:03,874 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948480000, 'densityaltitudeft': 2181, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:28:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:29:04,133 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719948540000, 'densityaltitudeft': 2184, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:29:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:30:04,218 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948600000, 'densityaltitudeft': 2176, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:30:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:31:03,879 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719948660000, 'densityaltitudeft': 2181, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:31:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:32:03,881 [MainThread  ] [INFO ]  Data received: {'tempf': 73.7, 'heatindexf': 72.9, 'dateutc': 1719948720000, 'densityaltitudeft': 2186, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.43, 'tz': 'America/New_York', 'date': '2024-07-02T19:32:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:33:03,865 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948780000, 'densityaltitudeft': 2199, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:33:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:34:04,057 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719948840000, 'densityaltitudeft': 2174, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:34:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:35:04,151 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948900000, 'densityaltitudeft': 2176, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:35:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:36:04,438 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719948960000, 'densityaltitudeft': 2179, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:36:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:37:03,827 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949020000, 'densityaltitudeft': 2184, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:37:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:38:03,926 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719949080000, 'densityaltitudeft': 2181, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:38:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:39:03,810 [MainThread  ] [INFO ]  Data received: {'tempf': 73.8, 'heatindexf': 72.9, 'dateutc': 1719949140000, 'densityaltitudeft': 2189, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.52, 'tz': 'America/New_York', 'date': '2024-07-02T19:39:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:40:03,663 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719949200000, 'densityaltitudeft': 2181, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:40:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:41:03,777 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719949260000, 'densityaltitudeft': 2181, 'humidity': 51, 'baromabsin': 29.03, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:41:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:42:03,865 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719949320000, 'densityaltitudeft': 2189, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:42:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:43:04,249 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949380000, 'densityaltitudeft': 2191, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:43:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:44:03,789 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719949440000, 'densityaltitudeft': 2191, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:44:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:45:03,956 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949500000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:45:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:46:03,701 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 73, 'dateutc': 1719949560000, 'densityaltitudeft': 2199, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:46:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:47:03,776 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949620000, 'densityaltitudeft': 2196, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:47:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:48:04,132 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949680000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:48:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:49:03,817 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 72.9, 'dateutc': 1719949740000, 'densityaltitudeft': 2199, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:49:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:50:03,782 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949800000, 'densityaltitudeft': 2199, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:50:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:51:03,708 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719949860000, 'densityaltitudeft': 2196, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T19:51:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:52:03,966 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949920000, 'densityaltitudeft': 2196, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:52:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:53:03,718 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719949980000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:53:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:54:03,919 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719950040000, 'densityaltitudeft': 2206, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T19:54:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:55:03,928 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950100000, 'densityaltitudeft': 2199, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:55:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:56:03,806 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950160000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:56:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:57:03,802 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719950220000, 'densityaltitudeft': 2201, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T19:57:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:58:04,122 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950280000, 'densityaltitudeft': 2196, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:58:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 19:59:04,171 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950340000, 'densityaltitudeft': 2206, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T19:59:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:00:04,266 [MainThread  ] [INFO ]  Data received: {'tempf': 73.9, 'heatindexf': 72.9, 'dateutc': 1719950400000, 'densityaltitudeft': 2209, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T20:00:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:01:04,010 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950460000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:01:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:02:03,931 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719950520000, 'densityaltitudeft': 2189, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:02:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:03:04,072 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950580000, 'densityaltitudeft': 2184, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:03:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:04:04,283 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950640000, 'densityaltitudeft': 2196, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:04:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:05:03,934 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719950700000, 'densityaltitudeft': 2209, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T20:05:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:06:04,116 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719950760000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:06:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:07:03,716 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950820000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:07:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:08:04,069 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719950880000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:08:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:09:03,871 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719950940000, 'densityaltitudeft': 2199, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:09:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:10:03,801 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719951000000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:10:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:11:04,186 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719951060000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:11:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:12:03,983 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719951120000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T20:12:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:13:04,420 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719951180000, 'densityaltitudeft': 2206, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:13:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:14:03,824 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719951240000, 'densityaltitudeft': 2199, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T20:14:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:15:03,885 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719951300000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T20:15:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:16:04,051 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719951360000, 'densityaltitudeft': 2209, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:16:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:17:03,866 [MainThread  ] [INFO ]  Data received: {'tempf': 74, 'heatindexf': 73, 'dateutc': 1719951420000, 'densityaltitudeft': 2209, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.71, 'tz': 'America/New_York', 'date': '2024-07-02T20:17:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:18:04,111 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719951480000, 'densityaltitudeft': 2214, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:18:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:19:04,157 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719951540000, 'densityaltitudeft': 2214, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T20:19:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:20:04,140 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719951600000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:20:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:21:04,117 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719951660000, 'densityaltitudeft': 2204, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T20:21:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:22:03,782 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719951720000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:22:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:23:03,966 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719951780000, 'densityaltitudeft': 2214, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:23:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:24:03,742 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719951840000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:24:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:25:04,101 [MainThread  ] [INFO ]  Data received: {'tempf': 74.3, 'heatindexf': 73.2, 'dateutc': 1719951900000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.98, 'tz': 'America/New_York', 'date': '2024-07-02T20:25:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:26:04,084 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719951960000, 'densityaltitudeft': 2201, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:26:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:27:04,571 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719952020000, 'densityaltitudeft': 2201, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:27:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:28:04,205 [MainThread  ] [INFO ]  Data received: {'tempf': 74.1, 'heatindexf': 73, 'dateutc': 1719952080000, 'densityaltitudeft': 2214, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.8, 'tz': 'America/New_York', 'date': '2024-07-02T20:28:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:29:04,010 [MainThread  ] [INFO ]  Data received: {'tempf': 74.3, 'heatindexf': 73.2, 'dateutc': 1719952140000, 'densityaltitudeft': 2224, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.98, 'tz': 'America/New_York', 'date': '2024-07-02T20:29:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:30:04,107 [MainThread  ] [INFO ]  Data received: {'tempf': 74.2, 'heatindexf': 73.2, 'dateutc': 1719952200000, 'densityaltitudeft': 2224, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 54.89, 'tz': 'America/New_York', 'date': '2024-07-02T20:30:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:31:04,230 [MainThread  ] [INFO ]  Data received: {'tempf': 74.3, 'heatindexf': 73.4, 'dateutc': 1719952260000, 'densityaltitudeft': 2224, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.98, 'tz': 'America/New_York', 'date': '2024-07-02T20:31:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:32:04,314 [MainThread  ] [INFO ]  Data received: {'tempf': 74.3, 'heatindexf': 73.4, 'dateutc': 1719952320000, 'densityaltitudeft': 2219, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.98, 'tz': 'America/New_York', 'date': '2024-07-02T20:32:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:33:04,174 [MainThread  ] [INFO ]  Data received: {'tempf': 74.3, 'heatindexf': 73.2, 'dateutc': 1719952380000, 'densityaltitudeft': 2211, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.98, 'tz': 'America/New_York', 'date': '2024-07-02T20:33:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:34:04,051 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952440000, 'densityaltitudeft': 2226, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:34:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:35:04,239 [MainThread  ] [INFO ]  Data received: {'tempf': 74.3, 'heatindexf': 73.2, 'dateutc': 1719952500000, 'densityaltitudeft': 2216, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 54.98, 'tz': 'America/New_York', 'date': '2024-07-02T20:35:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:36:04,278 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952560000, 'densityaltitudeft': 2224, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:36:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:37:04,083 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952620000, 'densityaltitudeft': 2229, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:37:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:38:03,951 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952680000, 'densityaltitudeft': 2224, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:38:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:39:04,014 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952740000, 'densityaltitudeft': 2229, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:39:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:40:04,349 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952800000, 'densityaltitudeft': 2224, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:40:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:41:04,231 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952860000, 'densityaltitudeft': 2221, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:41:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:42:04,101 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719952920000, 'densityaltitudeft': 2226, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T20:42:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:43:03,794 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719952980000, 'densityaltitudeft': 2226, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:43:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:44:03,902 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719953040000, 'densityaltitudeft': 2236, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:44:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:45:03,931 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719953100000, 'densityaltitudeft': 2231, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T20:45:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:46:04,164 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719953160000, 'densityaltitudeft': 2231, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T20:46:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:47:04,087 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719953220000, 'densityaltitudeft': 2231, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T20:47:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:48:04,163 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719953280000, 'densityaltitudeft': 2241, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:48:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:49:04,112 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719953340000, 'densityaltitudeft': 2229, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:49:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:57:44,629 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'dateutc': 1719953820000, 'tz': 'America/New_York', 'date': '2024-07-02T20:57:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:58:03,697 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719953880000, 'densityaltitudeft': 2246, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T20:58:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 20:59:04,094 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719953940000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T20:59:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:00:03,989 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.6, 'dateutc': 1719954000000, 'densityaltitudeft': 2236, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:00:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:01:04,013 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719954060000, 'densityaltitudeft': 2229, 'humidity': 51, 'baromabsin': 29.02, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:01:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:02:03,916 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719954120000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:02:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:03:03,838 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719954180000, 'densityaltitudeft': 2249, 'humidity': 50, 'baromabsin': 29.01, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T21:03:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:04:03,926 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719954240000, 'densityaltitudeft': 2246, 'humidity': 50, 'baromabsin': 29.01, 'dewPoint': 54.72, 'tz': 'America/New_York', 'date': '2024-07-02T21:04:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:05:04,115 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719954300000, 'densityaltitudeft': 2254, 'humidity': 50, 'baromabsin': 29.01, 'dewPoint': 54.62, 'tz': 'America/New_York', 'date': '2024-07-02T21:05:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:06:03,866 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719954360000, 'densityaltitudeft': 2256, 'humidity': 50, 'baromabsin': 29.01, 'dewPoint': 54.72, 'tz': 'America/New_York', 'date': '2024-07-02T21:06:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:07:04,224 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 73.6, 'dateutc': 1719954420000, 'densityaltitudeft': 2254, 'humidity': 50, 'baromabsin': 29.01, 'dewPoint': 54.9, 'tz': 'America/New_York', 'date': '2024-07-02T21:07:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:08:04,083 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.6, 'dateutc': 1719954480000, 'densityaltitudeft': 2271, 'humidity': 50, 'baromabsin': 29, 'dewPoint': 54.81, 'tz': 'America/New_York', 'date': '2024-07-02T21:08:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:09:03,826 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.6, 'dateutc': 1719954540000, 'densityaltitudeft': 2254, 'humidity': 50, 'baromabsin': 29.01, 'dewPoint': 54.81, 'tz': 'America/New_York', 'date': '2024-07-02T21:09:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:10:03,823 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 73.6, 'dateutc': 1719954600000, 'densityaltitudeft': 2256, 'humidity': 50, 'baromabsin': 29.01, 'dewPoint': 54.9, 'tz': 'America/New_York', 'date': '2024-07-02T21:10:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:11:03,833 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719954660000, 'densityaltitudeft': 2254, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:11:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:12:03,888 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719954720000, 'densityaltitudeft': 2254, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:12:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:13:03,987 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719954780000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:13:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:14:03,871 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719954840000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:14:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:15:03,796 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719954900000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:15:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:16:04,097 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719954960000, 'densityaltitudeft': 2256, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:16:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:17:03,709 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955020000, 'densityaltitudeft': 2256, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:17:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:18:03,869 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955080000, 'densityaltitudeft': 2241, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:18:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:19:04,199 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719955140000, 'densityaltitudeft': 2254, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:19:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:20:03,949 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.6, 'dateutc': 1719955200000, 'densityaltitudeft': 2251, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.35, 'tz': 'America/New_York', 'date': '2024-07-02T21:20:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:21:03,904 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719955260000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:21:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:22:03,986 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955320000, 'densityaltitudeft': 2254, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:22:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:23:03,901 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.6, 'dateutc': 1719955380000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.35, 'tz': 'America/New_York', 'date': '2024-07-02T21:23:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:24:04,016 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719955440000, 'densityaltitudeft': 2246, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:24:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:25:04,160 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719955500000, 'densityaltitudeft': 2244, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:25:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:26:04,109 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719955560000, 'densityaltitudeft': 2259, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:26:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:27:04,169 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955620000, 'densityaltitudeft': 2246, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:27:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:28:04,015 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719955680000, 'densityaltitudeft': 2254, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:28:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:29:04,125 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955740000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:29:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:30:04,056 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955800000, 'densityaltitudeft': 2241, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:30:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:31:03,967 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955860000, 'densityaltitudeft': 2244, 'humidity': 51, 'baromabsin': 29.01, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:31:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:32:03,699 [MainThread  ] [INFO ]  Data received: {'tempf': 74.5, 'heatindexf': 73.6, 'dateutc': 1719955920000, 'densityaltitudeft': 2254, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.17, 'tz': 'America/New_York', 'date': '2024-07-02T21:32:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:33:03,853 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719955980000, 'densityaltitudeft': 2256, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:33:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:34:04,019 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719956040000, 'densityaltitudeft': 2249, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:34:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:35:03,897 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719956100000, 'densityaltitudeft': 2246, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:35:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:36:03,682 [MainThread  ] [INFO ]  Data received: {'tempf': 74.4, 'heatindexf': 73.4, 'dateutc': 1719956160000, 'densityaltitudeft': 2264, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:36:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:37:03,974 [MainThread  ] [INFO ]  Data received: {'tempf': 74.6, 'heatindexf': 73.6, 'dateutc': 1719956220000, 'densityaltitudeft': 2259, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.26, 'tz': 'America/New_York', 'date': '2024-07-02T21:37:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:38:03,809 [MainThread  ] [INFO ]  Data received: {'tempf': 74.7, 'heatindexf': 73.6, 'dateutc': 1719956280000, 'densityaltitudeft': 2274, 'humidity': 51, 'baromabsin': 29, 'dewPoint': 55.35, 'tz': 'America/New_York', 'date': '2024-07-02T21:38:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:39:03,767 [MainThread  ] [INFO ]  Data received: {'tempf': 74.8, 'heatindexf': 73.9, 'dateutc': 1719956340000, 'densityaltitudeft': 2306, 'humidity': 55, 'baromabsin': 29, 'dewPoint': 57.53, 'tz': 'America/New_York', 'date': '2024-07-02T21:39:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:40:04,187 [MainThread  ] [INFO ]  Data received: {'tempf': 75.5, 'heatindexf': 74.7, 'dateutc': 1719956400000, 'densityaltitudeft': 2336, 'humidity': 56, 'baromabsin': 29, 'dewPoint': 58.69, 'tz': 'America/New_York', 'date': '2024-07-02T21:40:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:41:03,909 [MainThread  ] [INFO ]  Data received: {'tempf': 75.8, 'heatindexf': 75.2, 'dateutc': 1719956460000, 'densityaltitudeft': 2379, 'humidity': 56, 'baromabsin': 28.99, 'dewPoint': 58.97, 'tz': 'America/New_York', 'date': '2024-07-02T21:41:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:42:03,946 [MainThread  ] [INFO ]  Data received: {'tempf': 76.2, 'heatindexf': 75.6, 'dateutc': 1719956520000, 'densityaltitudeft': 2399, 'humidity': 56, 'baromabsin': 29, 'dewPoint': 59.34, 'tz': 'America/New_York', 'date': '2024-07-02T21:42:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:43:03,879 [MainThread  ] [INFO ]  Data received: {'tempf': 76.5, 'heatindexf': 76.1, 'dateutc': 1719956580000, 'densityaltitudeft': 2334, 'humidity': 56, 'baromabsin': 29.07, 'dewPoint': 59.62, 'tz': 'America/New_York', 'date': '2024-07-02T21:43:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:44:04,057 [MainThread  ] [INFO ]  Data received: {'tempf': 76.8, 'heatindexf': 76.3, 'dateutc': 1719956640000, 'densityaltitudeft': 2362, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 59.9, 'tz': 'America/New_York', 'date': '2024-07-02T21:44:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:45:03,798 [MainThread  ] [INFO ]  Data received: {'tempf': 77, 'heatindexf': 76.8, 'dateutc': 1719956700000, 'densityaltitudeft': 2392, 'humidity': 56, 'baromabsin': 29.05, 'dewPoint': 60.08, 'tz': 'America/New_York', 'date': '2024-07-02T21:45:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:46:03,688 [MainThread  ] [INFO ]  Data received: {'tempf': 77.4, 'heatindexf': 77.4, 'dateutc': 1719956760000, 'densityaltitudeft': 2409, 'humidity': 57, 'baromabsin': 29.05, 'dewPoint': 60.95, 'tz': 'America/New_York', 'date': '2024-07-02T21:46:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:47:03,895 [MainThread  ] [INFO ]  Data received: {'tempf': 77.6, 'heatindexf': 77.5, 'dateutc': 1719956820000, 'densityaltitudeft': 2412, 'humidity': 56, 'baromabsin': 29.08, 'dewPoint': 60.64, 'tz': 'America/New_York', 'date': '2024-07-02T21:47:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:48:03,669 [MainThread  ] [INFO ]  Data received: {'tempf': 77.9, 'heatindexf': 78.1, 'dateutc': 1719956880000, 'densityaltitudeft': 2417, 'humidity': 56, 'baromabsin': 29.09, 'dewPoint': 60.92, 'tz': 'America/New_York', 'date': '2024-07-02T21:48:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:49:04,011 [MainThread  ] [INFO ]  Data received: {'tempf': 78.2, 'heatindexf': 78.3, 'dateutc': 1719956940000, 'densityaltitudeft': 2389, 'humidity': 56, 'baromabsin': 29.12, 'dewPoint': 61.2, 'tz': 'America/New_York', 'date': '2024-07-02T21:49:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:50:03,784 [MainThread  ] [INFO ]  Data received: {'tempf': 78.2, 'heatindexf': 78.6, 'dateutc': 1719957000000, 'densityaltitudeft': 2417, 'humidity': 56, 'baromabsin': 29.11, 'dewPoint': 61.2, 'tz': 'America/New_York', 'date': '2024-07-02T21:50:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:51:03,938 [MainThread  ] [INFO ]  Data received: {'tempf': 78.4, 'heatindexf': 78.6, 'dateutc': 1719957060000, 'densityaltitudeft': 2387, 'humidity': 56, 'baromabsin': 29.14, 'dewPoint': 61.38, 'tz': 'America/New_York', 'date': '2024-07-02T21:51:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:52:03,701 [MainThread  ] [INFO ]  Data received: {'tempf': 78.6, 'heatindexf': 79.2, 'dateutc': 1719957120000, 'densityaltitudeft': 2414, 'humidity': 56, 'baromabsin': 29.14, 'dewPoint': 61.57, 'tz': 'America/New_York', 'date': '2024-07-02T21:52:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:53:03,827 [MainThread  ] [INFO ]  Data received: {'tempf': 79, 'heatindexf': 79.7, 'dateutc': 1719957180000, 'densityaltitudeft': 2359, 'humidity': 56, 'baromabsin': 29.19, 'dewPoint': 61.94, 'tz': 'America/New_York', 'date': '2024-07-02T21:53:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:54:03,870 [MainThread  ] [INFO ]  Data received: {'tempf': 79.2, 'heatindexf': 79.9, 'dateutc': 1719957240000, 'densityaltitudeft': 2439, 'humidity': 56, 'baromabsin': 29.14, 'dewPoint': 62.13, 'tz': 'America/New_York', 'date': '2024-07-02T21:54:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:55:03,734 [MainThread  ] [INFO ]  Data received: {'tempf': 79.4, 'heatindexf': 80.2, 'dateutc': 1719957300000, 'densityaltitudeft': 2409, 'humidity': 56, 'baromabsin': 29.18, 'dewPoint': 62.31, 'tz': 'America/New_York', 'date': '2024-07-02T21:55:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:56:04,071 [MainThread  ] [INFO ]  Data received: {'tempf': 79.5, 'heatindexf': 80.2, 'dateutc': 1719957360000, 'densityaltitudeft': 2382, 'humidity': 56, 'baromabsin': 29.21, 'dewPoint': 62.41, 'tz': 'America/New_York', 'date': '2024-07-02T21:56:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:57:03,690 [MainThread  ] [INFO ]  Data received: {'tempf': 79.8, 'heatindexf': 80.6, 'dateutc': 1719957420000, 'densityaltitudeft': 2454, 'humidity': 56, 'baromabsin': 29.17, 'dewPoint': 62.69, 'tz': 'America/New_York', 'date': '2024-07-02T21:57:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:58:04,000 [MainThread  ] [INFO ]  Data received: {'tempf': 79.9, 'heatindexf': 81, 'dateutc': 1719957480000, 'densityaltitudeft': 2392, 'humidity': 56, 'baromabsin': 29.23, 'dewPoint': 62.78, 'tz': 'America/New_York', 'date': '2024-07-02T21:58:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 21:59:03,793 [MainThread  ] [INFO ]  Data received: {'tempf': 80.1, 'heatindexf': 81.1, 'dateutc': 1719957540000, 'densityaltitudeft': 2434, 'humidity': 56, 'baromabsin': 29.21, 'dewPoint': 62.96, 'tz': 'America/New_York', 'date': '2024-07-02T21:59:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:00:03,858 [MainThread  ] [INFO ]  Data received: {'tempf': 80.2, 'heatindexf': 81.1, 'dateutc': 1719957600000, 'densityaltitudeft': 2427, 'humidity': 56, 'baromabsin': 29.23, 'dewPoint': 63.06, 'tz': 'America/New_York', 'date': '2024-07-02T22:00:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:01:03,812 [MainThread  ] [INFO ]  Data received: {'tempf': 80.7, 'heatindexf': 82, 'dateutc': 1719957660000, 'densityaltitudeft': 2457, 'humidity': 56, 'baromabsin': 29.22, 'dewPoint': 63.52, 'tz': 'America/New_York', 'date': '2024-07-02T22:01:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:02:03,707 [MainThread  ] [INFO ]  Data received: {'tempf': 80.8, 'heatindexf': 82.2, 'dateutc': 1719957720000, 'densityaltitudeft': 2572, 'humidity': 57, 'baromabsin': 29.13, 'dewPoint': 64.12, 'tz': 'America/New_York', 'date': '2024-07-02T22:02:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:03:03,849 [MainThread  ] [INFO ]  Data received: {'tempf': 81.1, 'heatindexf': 82.4, 'dateutc': 1719957780000, 'densityaltitudeft': 2554, 'humidity': 57, 'baromabsin': 29.15, 'dewPoint': 64.4, 'tz': 'America/New_York', 'date': '2024-07-02T22:03:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:04:03,638 [MainThread  ] [INFO ]  Data received: {'tempf': 81.2, 'heatindexf': 82.8, 'dateutc': 1719957840000, 'densityaltitudeft': 2492, 'humidity': 57, 'baromabsin': 29.21, 'dewPoint': 64.49, 'tz': 'America/New_York', 'date': '2024-07-02T22:04:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:05:03,853 [MainThread  ] [INFO ]  Data received: {'tempf': 81.3, 'heatindexf': 82.8, 'dateutc': 1719957900000, 'densityaltitudeft': 2497, 'humidity': 57, 'baromabsin': 29.23, 'dewPoint': 64.59, 'tz': 'America/New_York', 'date': '2024-07-02T22:05:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:06:03,788 [MainThread  ] [INFO ]  Data received: {'tempf': 81.4, 'heatindexf': 82.9, 'dateutc': 1719957960000, 'densityaltitudeft': 2519, 'humidity': 57, 'baromabsin': 29.22, 'dewPoint': 64.68, 'tz': 'America/New_York', 'date': '2024-07-02T22:06:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:07:03,805 [MainThread  ] [INFO ]  Data received: {'tempf': 81.6, 'heatindexf': 83.3, 'dateutc': 1719958020000, 'densityaltitudeft': 2587, 'humidity': 57, 'baromabsin': 29.17, 'dewPoint': 64.87, 'tz': 'America/New_York', 'date': '2024-07-02T22:07:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:08:03,790 [MainThread  ] [INFO ]  Data received: {'tempf': 82, 'heatindexf': 83.8, 'dateutc': 1719958080000, 'densityaltitudeft': 2675, 'humidity': 57, 'baromabsin': 29.11, 'dewPoint': 65.24, 'tz': 'America/New_York', 'date': '2024-07-02T22:08:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:09:03,779 [MainThread  ] [INFO ]  Data received: {'tempf': 82, 'heatindexf': 84, 'dateutc': 1719958140000, 'densityaltitudeft': 2677, 'humidity': 57, 'baromabsin': 29.13, 'dewPoint': 65.24, 'tz': 'America/New_York', 'date': '2024-07-02T22:09:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:10:04,018 [MainThread  ] [INFO ]  Data received: {'tempf': 82.2, 'heatindexf': 84.4, 'dateutc': 1719958200000, 'densityaltitudeft': 2692, 'humidity': 57, 'baromabsin': 29.12, 'dewPoint': 65.42, 'tz': 'America/New_York', 'date': '2024-07-02T22:10:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:11:03,924 [MainThread  ] [INFO ]  Data received: {'tempf': 82.5, 'heatindexf': 84.6, 'dateutc': 1719958260000, 'densityaltitudeft': 2761, 'humidity': 56, 'baromabsin': 29.07, 'dewPoint': 65.19, 'tz': 'America/New_York', 'date': '2024-07-02T22:11:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:12:03,922 [MainThread  ] [INFO ]  Data received: {'tempf': 82.7, 'heatindexf': 84.9, 'dateutc': 1719958320000, 'densityaltitudeft': 2781, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.38, 'tz': 'America/New_York', 'date': '2024-07-02T22:12:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:13:03,867 [MainThread  ] [INFO ]  Data received: {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z', 'macAddress': '[MAC ADDR  HERE]'}
2024-07-02 22:28:03,868 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 22:28:05,250 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 22:28:05,368 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 22:43:05,369 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 22:43:06,740 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 22:43:06,853 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 22:58:06,854 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 22:58:08,143 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 22:58:08,243 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 23:13:08,245 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 23:13:09,538 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 23:13:09,645 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 23:28:09,646 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 23:28:11,023 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 23:28:11,127 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 23:43:11,127 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 23:43:12,509 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 23:43:12,619 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-02 23:58:12,620 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-02 23:58:14,004 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-02 23:58:14,109 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 00:13:14,110 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 00:13:15,526 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 00:13:15,667 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 00:28:15,670 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 00:28:17,045 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 00:28:17,197 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 00:43:17,200 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 00:43:18,587 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 00:43:18,712 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 00:58:18,713 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 00:58:20,030 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 00:58:20,136 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 01:13:20,137 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 01:13:21,514 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 01:13:21,617 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 01:28:21,619 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 01:28:23,083 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 01:28:23,211 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 01:43:23,213 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 01:43:24,513 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 01:43:24,620 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 01:58:24,621 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 01:58:25,916 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 01:58:26,021 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 02:13:26,022 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 02:13:27,323 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 02:13:27,433 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 02:28:27,434 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 02:28:28,812 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 02:28:28,915 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 02:43:28,917 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 02:43:30,275 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 02:43:30,393 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 02:58:30,394 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 02:58:31,684 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 02:58:31,787 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 03:13:31,788 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 03:13:33,104 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 03:13:33,211 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 03:25:15,190 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 03:25:16,815 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 03:25:16,919 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 03:40:16,921 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 03:40:18,234 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 03:40:18,363 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 03:55:18,364 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 03:55:19,658 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 03:55:19,758 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 04:10:19,760 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 04:10:21,133 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 04:10:21,256 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 04:25:21,257 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 04:25:22,555 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 04:25:22,717 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 04:40:22,719 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 04:40:24,033 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 04:40:24,156 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 04:55:24,157 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 04:55:25,502 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 04:55:25,608 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 05:01:44,843 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 05:01:46,380 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 05:01:46,485 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 05:16:46,486 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 05:16:47,784 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 05:16:47,886 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 05:31:47,887 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 05:31:49,227 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 05:31:49,332 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 05:46:49,333 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 05:46:50,628 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 05:46:50,739 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 06:01:50,740 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 06:01:52,084 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 06:01:52,195 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 06:16:52,198 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 06:16:53,550 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 06:16:53,671 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 06:31:53,672 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 06:31:55,023 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 06:31:55,130 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 06:46:55,131 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 06:46:56,484 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 06:46:56,587 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 07:01:56,588 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 07:01:57,883 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 07:01:57,993 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 07:16:57,995 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 07:16:59,307 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 07:16:59,411 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 07:31:59,412 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 07:32:00,697 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 07:32:00,812 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 07:44:17,361 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 07:44:18,617 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 07:44:18,724 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 07:59:18,726 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 07:59:20,005 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 07:59:20,110 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 08:10:37,094 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 08:10:38,153 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 08:10:38,262 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 08:25:38,263 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 08:25:39,550 [MainThread  ] [INFO ]  Client has connected to the websocket
2024-07-03 08:25:39,655 [MainThread  ] [INFO ]  Client has subscribed: {'devices': [{'macAddress': '[MAC ADDR  HERE]', 'lastData': {'tempf': 82.9, 'heatindexf': 85.3, 'dateutc': 1719958380000, 'densityaltitudeft': 2804, 'humidity': 56, 'baromabsin': 29.06, 'dewPoint': 65.57, 'deviceId': '[DEV ID  HERE]', 'tz': 'America/New_York', 'date': '2024-07-02T22:13:00.000Z'}, 'info': {'name': 'kESTREL DROP 3', 'coords': {'coords': {'lat': 33.7488, 'lon': -84.3877}, 'address': 'Atlanta, GA, USA', 'location': 'Atlanta', 'elevation': 318.4681701660156, 'address_components': [{'long_name': 'Atlanta', 'short_name': 'Atlanta', 'types': ['locality', 'political']}, {'long_name': 'Fulton County', 'short_name': 'Fulton County', 'types': ['administrative_area_level_2', 'political']}, {'long_name': 'Georgia', 'short_name': 'GA', 'types': ['administrative_area_level_1', 'political']}, {'long_name': 'United States', 'short_name': 'US', 'types': ['country', 'political']}], 'geo': {'type': 'Point', 'coordinates': [-84.388, 33.74877]}}}, 'apiKey': '[API KEY  HERE]'}], 'method': 'subscribe'}
2024-07-03 08:40:39,656 [MainThread  ] [INFO ]  Client has disconnected from the websocket
2024-07-03 08:40:47,375 [MainThread  ] [ERROR]  Task exception was never retrieved
future:  exception=WebsocketError(ConnectionError('One or more namespaces failed to connect'))>
Traceback (most recent call last):
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 226, in connect
    await self._sio.connect(
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/socketio/async_client.py", line 175, in connect
    raise exceptions.ConnectionError(
socketio.exceptions.ConnectionError: One or more namespaces failed to connect

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 53, in on_expire
    await self._action()
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 245, in reconnect
    await self.connect()
  File "/home/kyrlon/.venv/lib/python3.11/site-packages/aioambient/websocket.py", line 234, in connect
    raise WebsocketError(err) from err
aioambient.errors.WebsocketError: One or more namespaces failed to connect

session_1719888917.log