Skip to content

Instantly share code, notes, and snippets.

@symbioquine
Last active April 30, 2025 15:13
Show Gist options
  • Select an option

  • Save symbioquine/9aa3eb5e95414ef81a51e518076ff128 to your computer and use it in GitHub Desktop.

Select an option

Save symbioquine/9aa3eb5e95414ef81a51e518076ff128 to your computer and use it in GitHub Desktop.
rtldavis testing
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"kernelspec": {
"name": "python",
"display_name": "Python (Pyodide)",
"language": "python"
},
"language_info": {
"codemirror_mode": {
"name": "python",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8"
}
},
"nbformat_minor": 5,
"nbformat": 4,
"cells": [
{
"id": "b2265ebe-c6bf-4ee2-b900-61407d5c8ec8",
"cell_type": "code",
"source": "import re\nimport struct\nfrom datetime import datetime, timezone, timedelta, date, time\nfrom pathlib import Path\n\n# 04:48:13.538613 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:2056 Transmitter:0}\nhop_pattern = re.compile(r'(?P<timestamp>\\d\\d:\\d\\d:\\d\\d\\.\\d+) Hop: \\{ChannelIdx:(?P<chanidx>\\d+) ChannelFreq:(?P<chanfreq>\\d+) FreqError:(?P<freqerr>\\d+) Transmitter:(?P<transmitter>\\d+)\\}')\n\n# 04:48:13.538602 300073FFC38B5AA2 29799 0 0 0 0 msg.ID=0\ndata_pattern = re.compile(r'(?P<timestamp>\\d\\d:\\d\\d:\\d\\d\\.\\d+) (?P<data>[0-9A-F]+) (?P<seqnum0>\\d+) (?P<seqnum1>\\d+) (?P<seqnum2>\\d+) (?P<seqnum3>\\d+) (?P<numinits>\\d+) msg\\.ID=(?P<msgid>\\d+)')\n\n# https://github.com/dekay/im-me/blob/master/pocketwx/src/protocol.txt#L51\ndatastruct = struct.Struct('>BBB3sH')\n\ncrc_table = [\n 0x0, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,\n 0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,\n 0x1231, 0x210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,\n 0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,\n 0x2462, 0x3443, 0x420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,\n 0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,\n 0x3653, 0x2672, 0x1611, 0x630, 0x76d7, 0x66f6, 0x5695, 0x46b4,\n 0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,\n 0x48c4, 0x58e5, 0x6886, 0x78a7, 0x840, 0x1861, 0x2802, 0x3823,\n 0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,\n 0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0xa50, 0x3a33, 0x2a12,\n 0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,\n 0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0xc60, 0x1c41,\n 0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,\n 0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0xe70,\n 0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,\n 0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,\n 0x1080, 0xa1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,\n 0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,\n 0x2b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,\n 0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,\n 0x34e2, 0x24c3, 0x14a0, 0x481, 0x7466, 0x6447, 0x5424, 0x4405,\n 0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,\n 0x26d3, 0x36f2, 0x691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,\n 0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,\n 0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x8e1, 0x3882, 0x28a3,\n 0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,\n 0x4a75, 0x5a54, 0x6a37, 0x7a16, 0xaf1, 0x1ad0, 0x2ab3, 0x3a92,\n 0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,\n 0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0xcc1,\n 0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,\n 0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0xed1, 0x1ef0,\n]\n\ndef calculate_crc(rawdata):\n crc = 0x0000\n for data in rawdata[:-2]:\n crc_table_idx = ((crc >> 8) ^ data) & 0xffff\n crc = (crc_table [crc_table_idx] ^ (crc << 8)) & 0xffff\n return crc\n\ndef decode_raw_sensor_data(sensor_type, raw_sensor_data):\n byte3, byte4, byte5 = raw_sensor_data\n\n if sensor_type == 2:\n # Volts (Not sure how this is helpful except in monitoring health of the unit's power supply)\n return ('cap_voltage', ((byte3 * 0x04) + ((byte4 & 0xC0) / 0x40)) / 0x64, 'V')\n\n elif sensor_type == 4:\n # UV index value - https://en.wikipedia.org/wiki/Ultraviolet_index (Note: Davis Vantage Vue ISS doesn't capture/report this)\n return ('uv_index', ((byte3 << 8 + byte4) >> 6) / 50.0, 'uv idx')\n\n elif sensor_type == 5:\n rain_mm_per_tip = 0.254 # 0.01\" for US non-metric version (Would be 0.2 mm with metric variant of Vue ISS)\n # Based on https://github.com/lheijst/weewx-rtldavis/blob/2f3b4b344fd70ab253aabfa837b0ffc76570c075/bin/user/rtldavis.py#L1121-L1156\n time_between_tips_raw = ((byte4 & 0x30) << 4) + byte3 # typical: 64-1022\n\n # No rain\n if (time_between_tips_raw == 0x3FF):\n rain_rate = 0\n\n # Heavy rain\n elif ((byte4 & 0x40) == 0):\n # Typical value: 64/16 - 1020/16 = 4 - 63.8 (180.0 - 11.1 mm/h)\n time_between_tips = time_between_tips_raw / 16.0\n rain_rate = (3600.0 / time_between_tips) * rain_mm_per_tip\n\n # Light rain\n else:\n # Typical value: 64 - 1022 (11.1 - 0.8 mm/h)\n time_between_tips = time_between_tips_raw\n rain_rate = (3600.0 / time_between_tips) * rain_mm_per_tip\n\n # Momentary rainfall rate expressed as inches/hour\n # i.e. if it kept raining at the current rate for one hour\n # the value here would equal the accumulated inches of\n # rain for that same hour.\n return ('rain_rate', rain_rate / 25.4, 'in/hr')\n\n elif sensor_type == 6:\n # W/m2 (Note: Davis Vantage Vue ISS doesn't capture/report this)\n return ('solar_irradiation', ((byte3 << 8 + byte4) >> 6) * 1.757936, 'W/m2')\n\n elif sensor_type == 7:\n # Volts (Is this useful? - Maybe as a rough indication of how \"sunny\" it is or detecting bird poop on solar cell?)\n return ('panel_voltage', ((byte3 * 0x04) + ((byte4 & 0xC0) / 0x40)) / 0x64, 'V')\n\n elif sensor_type == 8:\n # Degrees F\n return ('temperature', struct.unpack('>hx', raw_sensor_data)[0] / 160, 'F')\n\n elif sensor_type == 9:\n # 10 minute observed wind gusts in mph\n return ('10m_wind_gust', float(byte3 & 0xf0 >> 4 ) * 1.60934, 'mph')\n\n elif sensor_type == 10:\n return ('outside_humidity', round((((byte4 >> 4) << 8) + byte3) / 10.0, 2), '%RH')\n\n elif sensor_type == 14:\n # Current tip count (Multiply deltas in tip count by rain_mm_per_tip to get accumulated rain - see sensor_type #5)\n return ('rain_tips', byte3, 'count')\n\n return (None, None, None)\n\nclass RtlDavisDataLine(object):\n def __init__(self, idx, rawline, datamatch):\n self.idx = idx\n self.rawline = rawline\n self.datamatch = datamatch\n self.timestamp = time.fromisoformat(datamatch.group('timestamp'))\n self.decoded = None\n self._decode_error = None\n\n def decode(self):\n if self.decoded is not None:\n return self.decoded\n\n if self._decode_error is not None:\n return None\n\n try:\n rawdata_hex = self.datamatch.group('data')\n \n rawdata = bytes.fromhex(rawdata_hex)\n \n header, windspeed, raw_winddir, raw_sensor_data, expected_crc = datastruct.unpack(rawdata)\n \n crc = calculate_crc(rawdata)\n \n if crc != expected_crc:\n raise ValueError(\"CRC mismatch:\" + rawline)\n\n sensor_type = header >> 4\n transmitter_id = header & 0b0111\n lowbatt = (header & 0b1000) >> 3\n \n winddir = round(raw_winddir * 360 / 255, 1)\n\n sensor_name, sensor_value, sensor_unit = decode_raw_sensor_data(sensor_type, raw_sensor_data)\n\n self.decoded = {\n 'transmitter_id': transmitter_id,\n 'lowbatt': lowbatt,\n 'windspeed': windspeed,\n 'winddir': winddir,\n 'sensor_type': sensor_type,\n 'sensor_name': sensor_name,\n 'sensor_value': sensor_value,\n 'sensor_unit': sensor_unit,\n 'raw_sensor_data': raw_sensor_data,\n }\n\n return self.decoded\n except Exception as e:\n self._decode_error = e\n return None\n\n @property\n def decode_error(self):\n self.decode()\n return self._decode_error\n\n @property\n def transmitter_id(self):\n decoded = self.decode() or {}\n return decoded.get('transmitter_id', None)\n\n @property\n def lowbatt(self):\n decoded = self.decode() or {}\n return decoded.get('lowbatt', None)\n\n @property\n def windspeed(self):\n decoded = self.decode() or {}\n return decoded.get('windspeed', None)\n\n @property\n def winddir(self):\n decoded = self.decode() or {}\n return decoded.get('winddir', None)\n\n @property\n def sensor_type(self):\n decoded = self.decode() or {}\n return decoded.get('sensor_type', None)\n\n @property\n def sensor_name(self):\n decoded = self.decode() or {}\n return decoded.get('sensor_name', None)\n\n @property\n def sensor_value(self):\n decoded = self.decode() or {}\n return decoded.get('sensor_value', None)\n\n @property\n def sensor_unit(self):\n decoded = self.decode() or {}\n return decoded.get('sensor_unit', None)\n\n @property\n def raw_sensor_data(self):\n decoded = self.decode() or {}\n return decoded.get('raw_sensor_data', None)\n\n def __repr__(self):\n if self.decoded is not None:\n return \"RtlDavisDataLine({}, {}, {})\".format(self.idx, self.timestamp, self.decoded)\n\n if self.decode_error is not None:\n return \"RtlDavisDataLine({}, {}, err!)\".format(self.idx, self.timestamp)\n\n return \"RtlDavisDataLine({}, {}, ?)\".format(self.idx, self.timestamp)\n\ndef iterate_rtl_davis_datalines(fp):\n for idx, rawline in enumerate(fp):\n # Trim the whitespace/newline\n rawline = rawline.strip()\n\n # hopmatch = hop_pattern.fullmatch(rawline.strip())\n # if hopmatch is not None:\n # # print(\"Hop:\", hopmatch)\n # continue\n\n # Performance optimization to avoid full regex search on channel hop lines\n if \"ChannelIdx\" in rawline:\n continue\n\n datamatch = data_pattern.fullmatch(rawline)\n if datamatch is None:\n # print(rawline)\n continue\n\n # print(\"Data:\", datamatch.groupdict())\n\n yield RtlDavisDataLine(idx, rawline, datamatch)\n\nwith open(Path('./2025_04_27_rtldavis_testing.txt')) as fp:\n for dataline in iterate_rtl_davis_datalines(fp):\n if dataline.decode_error is not None:\n print(\"Decode error:\", dataline.decode_error)\n\n elif dataline.sensor_name is not None:\n print(\"{} wsp={:<3} dir={:<5.1f} sensor=[{:<24} {} {}]\".format(\n dataline.timestamp, dataline.windspeed, dataline.winddir, dataline.sensor_name + ':', dataline.sensor_value, dataline.sensor_unit))\n\n else:\n print(\"{} wsp={:<3} dir={:<5.1f} sensor=[unknown({}): {!r}]\".format(\n dataline.timestamp, dataline.windspeed, dataline.winddir, dataline.sensor_type, dataline.raw_sensor_data))\n",
"metadata": {
"trusted": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "07:01:50.896634 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:01:53.460565 wsp=0 dir=210.4 sensor=[panel_voltage: 5.68 V]\n07:01:56.022262 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:01:58.584197 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:02:01.148081 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:02:03.710105 wsp=0 dir=210.4 sensor=[unknown(3): b'\\xff\\xc3\\x80']\n07:02:08.835552 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:02:11.397716 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:02:13.959569 wsp=0 dir=210.4 sensor=[10m_wind_gust: 0.0 mph]\n07:02:16.523564 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:02:19.085391 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:02:21.647330 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:02:24.210903 wsp=0 dir=210.4 sensor=[outside_humidity: 90.0 %RH]\n07:02:26.772836 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:02:29.334886 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:02:31.898430 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:02:34.460581 wsp=0 dir=210.4 sensor=[cap_voltage: 5.43 V]\n07:02:37.022551 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:02:39.586414 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:02:42.148320 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:02:44.710387 wsp=0 dir=210.4 sensor=[panel_voltage: 5.76 V]\n07:02:47.272235 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:02:49.835782 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:02:52.397692 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:02:54.959645 wsp=0 dir=210.4 sensor=[unknown(3): b'\\xff\\xc3\\x80']\n07:02:57.523691 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:03:00.085490 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:03:02.647558 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:03:05.211193 wsp=0 dir=210.4 sensor=[10m_wind_gust: 0.0 mph]\n07:03:07.773115 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:03:10.334951 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:03:12.898823 wsp=0 dir=210.4 sensor=[temperature: 46.06875 F]\n07:03:15.460654 wsp=0 dir=210.4 sensor=[outside_humidity: 90.0 %RH]\n07:03:18.022575 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:03:20.586441 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:03:25.710305 wsp=0 dir=210.4 sensor=[cap_voltage: 5.49 V]\n07:03:28.274138 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:03:30.835967 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:03:33.397900 wsp=0 dir=210.4 sensor=[temperature: 46.15625 F]\n07:03:35.961461 wsp=0 dir=210.4 sensor=[panel_voltage: 5.85 V]\n07:03:38.523403 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:03:41.085379 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:03:43.649345 wsp=0 dir=210.4 sensor=[temperature: 46.16875 F]\n07:03:48.773273 wsp=0 dir=200.5 sensor=[rain_tips: 128 count]\n07:03:51.337056 wsp=0 dir=189.2 sensor=[rain_rate: 0.0 in/hr]\n07:03:53.898811 wsp=0 dir=204.7 sensor=[temperature: 46.16875 F]\n07:03:56.460912 wsp=0 dir=204.7 sensor=[10m_wind_gust: 0.0 mph]\n07:03:59.024679 wsp=0 dir=204.7 sensor=[rain_tips: 128 count]\n07:04:01.586634 wsp=0 dir=203.3 sensor=[rain_rate: 0.0 in/hr]\n07:04:04.148523 wsp=0 dir=206.1 sensor=[temperature: 46.26875 F]\n07:04:06.712258 wsp=0 dir=213.2 sensor=[outside_humidity: 89.8 %RH]\n07:04:09.274186 wsp=0 dir=203.3 sensor=[rain_tips: 128 count]\n07:04:11.836137 wsp=0 dir=200.5 sensor=[rain_rate: 0.0 in/hr]\n07:04:14.398079 wsp=0 dir=200.5 sensor=[temperature: 46.16875 F]\n07:04:16.961663 wsp=0 dir=200.5 sensor=[cap_voltage: 5.56 V]\n07:04:19.523607 wsp=0 dir=201.9 sensor=[rain_tips: 128 count]\n07:04:22.085519 wsp=0 dir=201.9 sensor=[rain_rate: 0.0 in/hr]\n07:04:24.649521 wsp=0 dir=201.9 sensor=[temperature: 46.16875 F]\n07:04:27.211562 wsp=0 dir=201.9 sensor=[panel_voltage: 5.87 V]\n07:04:29.773429 wsp=0 dir=201.9 sensor=[rain_tips: 128 count]\n07:04:32.337218 wsp=0 dir=193.4 sensor=[rain_rate: 0.0 in/hr]\n07:04:34.898994 wsp=0 dir=151.1 sensor=[temperature: 46.26875 F]\n07:04:37.460893 wsp=0 dir=153.9 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:04:40.024839 wsp=0 dir=153.9 sensor=[rain_tips: 128 count]\n07:04:42.586454 wsp=0 dir=153.9 sensor=[rain_rate: 0.0 in/hr]\n07:04:45.148381 wsp=0 dir=153.9 sensor=[temperature: 46.15625 F]\n07:04:47.712371 wsp=0 dir=163.8 sensor=[10m_wind_gust: 0.0 mph]\n07:04:50.274292 wsp=0 dir=217.4 sensor=[rain_tips: 128 count]\n07:04:52.836321 wsp=0 dir=217.4 sensor=[rain_rate: 0.0 in/hr]\n07:04:55.399929 wsp=0 dir=184.9 sensor=[temperature: 46.25625 F]\n07:04:57.961866 wsp=0 dir=220.2 sensor=[outside_humidity: 89.9 %RH]\n07:05:00.523815 wsp=0 dir=184.9 sensor=[rain_tips: 128 count]\n07:05:03.087795 wsp=0 dir=180.7 sensor=[rain_rate: 0.0 in/hr]\n07:05:05.649761 wsp=0 dir=183.5 sensor=[temperature: 46.25625 F]\n07:05:08.211705 wsp=0 dir=183.5 sensor=[cap_voltage: 5.62 V]\n07:05:10.775343 wsp=0 dir=183.5 sensor=[rain_tips: 128 count]\n07:05:13.337195 wsp=0 dir=183.5 sensor=[rain_rate: 0.0 in/hr]\n07:05:15.899130 wsp=0 dir=183.5 sensor=[temperature: 46.26875 F]\n07:05:18.462779 wsp=0 dir=183.5 sensor=[panel_voltage: 5.93 V]\n07:05:21.024673 wsp=0 dir=224.5 sensor=[rain_tips: 128 count]\n07:05:23.586629 wsp=0 dir=218.8 sensor=[rain_rate: 0.0 in/hr]\n07:05:28.712533 wsp=0 dir=232.9 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:05:31.274478 wsp=0 dir=218.8 sensor=[rain_tips: 128 count]\n07:05:33.838113 wsp=0 dir=218.8 sensor=[rain_rate: 0.0 in/hr]\n07:05:36.400194 wsp=0 dir=200.5 sensor=[temperature: 46.25625 F]\n07:05:38.962056 wsp=0 dir=196.2 sensor=[10m_wind_gust: 0.0 mph]\n07:05:41.523928 wsp=0 dir=156.7 sensor=[rain_tips: 128 count]\n07:05:44.087897 wsp=0 dir=169.4 sensor=[rain_rate: 0.0 in/hr]\n07:05:46.649806 wsp=0 dir=166.6 sensor=[temperature: 46.36875 F]\n07:05:49.211815 wsp=0 dir=151.1 sensor=[outside_humidity: 89.6 %RH]\n07:05:51.775401 wsp=0 dir=151.1 sensor=[rain_tips: 128 count]\n07:05:54.337343 wsp=0 dir=151.1 sensor=[rain_rate: 0.0 in/hr]\n07:05:59.463052 wsp=0 dir=151.1 sensor=[cap_voltage: 5.68 V]\n07:06:02.024839 wsp=0 dir=151.1 sensor=[rain_tips: 128 count]\n07:06:04.586888 wsp=0 dir=151.1 sensor=[rain_rate: 0.0 in/hr]\n07:06:07.150798 wsp=0 dir=151.1 sensor=[temperature: 46.35625 F]\n07:06:09.712757 wsp=0 dir=151.1 sensor=[panel_voltage: 5.9 V]\n07:06:12.274629 wsp=0 dir=151.1 sensor=[rain_tips: 128 count]\n07:06:14.838397 wsp=0 dir=151.1 sensor=[rain_rate: 0.0 in/hr]\n07:06:17.400238 wsp=0 dir=145.4 sensor=[temperature: 46.36875 F]\n07:06:19.962151 wsp=0 dir=145.4 sensor=[unknown(3): b'\\xff\\xc3\\x80']\n07:06:22.525862 wsp=0 dir=145.4 sensor=[rain_tips: 128 count]\n07:06:25.087708 wsp=0 dir=145.4 sensor=[rain_rate: 0.0 in/hr]\n07:06:27.649746 wsp=0 dir=145.4 sensor=[temperature: 46.36875 F]\n07:06:30.213684 wsp=0 dir=145.4 sensor=[10m_wind_gust: 0.0 mph]\n07:06:32.775646 wsp=0 dir=145.4 sensor=[rain_tips: 128 count]\n07:06:35.337478 wsp=0 dir=145.4 sensor=[rain_rate: 0.0 in/hr]\n07:06:37.901245 wsp=0 dir=145.4 sensor=[temperature: 46.36875 F]\n07:06:40.463106 wsp=0 dir=241.4 sensor=[outside_humidity: 89.5 %RH]\n07:06:43.024987 wsp=0 dir=241.4 sensor=[rain_tips: 128 count]\n07:06:45.589089 wsp=0 dir=237.2 sensor=[rain_rate: 0.0 in/hr]\n07:06:48.150947 wsp=0 dir=237.2 sensor=[temperature: 46.45625 F]\n07:06:53.276597 wsp=0 dir=234.4 sensor=[rain_tips: 128 count]\n07:06:55.838450 wsp=0 dir=234.4 sensor=[rain_rate: 0.0 in/hr]\n07:06:58.400493 wsp=0 dir=228.7 sensor=[temperature: 46.45625 F]\n07:07:00.964098 wsp=0 dir=170.8 sensor=[panel_voltage: 5.91 V]\n07:07:03.525986 wsp=0 dir=169.4 sensor=[rain_tips: 128 count]\n07:07:06.087975 wsp=0 dir=169.4 sensor=[rain_rate: 0.0 in/hr]\n07:07:08.649741 wsp=0 dir=169.4 sensor=[temperature: 46.46875 F]\n07:07:11.213823 wsp=0 dir=169.4 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:07:13.775850 wsp=0 dir=169.4 sensor=[rain_tips: 128 count]\n07:07:16.337677 wsp=0 dir=169.4 sensor=[rain_rate: 0.0 in/hr]\n07:07:18.901323 wsp=0 dir=166.6 sensor=[temperature: 46.46875 F]\n07:07:21.463257 wsp=0 dir=166.6 sensor=[10m_wind_gust: 0.0 mph]\n07:07:24.025224 wsp=0 dir=183.5 sensor=[rain_tips: 128 count]\n07:07:26.589311 wsp=0 dir=242.8 sensor=[rain_rate: 0.0 in/hr]\n07:07:29.150799 wsp=0 dir=242.8 sensor=[temperature: 46.45625 F]\n07:07:31.712663 wsp=0 dir=210.4 sensor=[outside_humidity: 89.5 %RH]\n07:07:34.276646 wsp=0 dir=206.1 sensor=[rain_tips: 128 count]\n07:07:36.838679 wsp=0 dir=218.8 sensor=[rain_rate: 0.0 in/hr]\n07:07:39.400606 wsp=0 dir=228.7 sensor=[temperature: 46.45625 F]\n07:07:41.964265 wsp=0 dir=232.9 sensor=[cap_voltage: 5.79 V]\n07:07:49.652075 wsp=0 dir=197.6 sensor=[temperature: 46.55625 F]\n07:07:52.213939 wsp=0 dir=197.6 sensor=[panel_voltage: 5.96 V]\n07:07:54.775843 wsp=0 dir=218.8 sensor=[rain_tips: 128 count]\n07:07:57.339605 wsp=0 dir=217.4 sensor=[rain_rate: 0.0 in/hr]\n07:07:59.901476 wsp=0 dir=211.8 sensor=[temperature: 46.56875 F]\n07:08:02.463574 wsp=0 dir=211.8 sensor=[unknown(3): b'\\xff\\xc3\\x80']\n07:08:05.027034 wsp=0 dir=211.8 sensor=[rain_tips: 128 count]\n07:08:07.589011 wsp=0 dir=211.8 sensor=[rain_rate: 0.0 in/hr]\n07:08:10.150895 wsp=0 dir=230.1 sensor=[temperature: 46.55625 F]\n07:08:12.714852 wsp=0 dir=230.1 sensor=[10m_wind_gust: 0.0 mph]\n07:08:15.276803 wsp=0 dir=230.1 sensor=[rain_tips: 128 count]\n07:08:17.838725 wsp=0 dir=213.2 sensor=[rain_rate: 0.0 in/hr]\n07:08:20.402384 wsp=0 dir=203.3 sensor=[temperature: 46.56875 F]\n07:08:22.964387 wsp=0 dir=204.7 sensor=[outside_humidity: 89.3 %RH]\n07:08:25.526299 wsp=0 dir=204.7 sensor=[rain_tips: 128 count]\n07:08:28.090357 wsp=0 dir=282.4 sensor=[rain_rate: 0.0 in/hr]\n07:08:30.652298 wsp=0 dir=278.1 sensor=[temperature: 46.55625 F]\n07:08:33.214223 wsp=0 dir=271.1 sensor=[cap_voltage: 5.84 V]\n07:08:35.776226 wsp=0 dir=271.1 sensor=[rain_tips: 128 count]\n07:08:38.339881 wsp=0 dir=271.1 sensor=[rain_rate: 0.0 in/hr]\n07:08:40.901697 wsp=0 dir=271.1 sensor=[temperature: 46.56875 F]\n07:08:43.463501 wsp=0 dir=237.2 sensor=[panel_voltage: 6.0 V]\n07:08:46.027161 wsp=0 dir=230.1 sensor=[rain_tips: 128 count]\n07:08:48.589229 wsp=0 dir=203.3 sensor=[rain_rate: 0.0 in/hr]\n07:08:51.151007 wsp=0 dir=206.1 sensor=[temperature: 46.55625 F]\n07:08:53.715043 wsp=0 dir=206.1 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:08:56.277012 wsp=0 dir=206.1 sensor=[rain_tips: 128 count]\n07:08:58.838873 wsp=0 dir=206.1 sensor=[rain_rate: 0.0 in/hr]\n07:09:03.964468 wsp=0 dir=206.1 sensor=[10m_wind_gust: 0.0 mph]\n07:09:06.526365 wsp=0 dir=204.7 sensor=[rain_tips: 128 count]\n07:09:09.090201 wsp=0 dir=204.7 sensor=[rain_rate: 0.0 in/hr]\n07:09:11.652163 wsp=0 dir=204.7 sensor=[temperature: 46.66875 F]\n07:09:14.213944 wsp=0 dir=204.7 sensor=[outside_humidity: 89.2 %RH]\n07:09:16.777873 wsp=0 dir=206.1 sensor=[rain_tips: 128 count]\n07:09:19.339906 wsp=0 dir=199.1 sensor=[rain_rate: 0.0 in/hr]\n07:09:21.901670 wsp=0 dir=214.6 sensor=[temperature: 46.65625 F]\n07:09:24.465420 wsp=0 dir=234.4 sensor=[cap_voltage: 5.9 V]\n07:09:27.027346 wsp=0 dir=248.5 sensor=[rain_tips: 128 count]\n07:09:29.589374 wsp=0 dir=227.3 sensor=[rain_rate: 0.0 in/hr]\n07:09:32.153452 wsp=0 dir=230.1 sensor=[temperature: 46.66875 F]\n07:09:34.715183 wsp=0 dir=213.2 sensor=[panel_voltage: 6.01 V]\n07:09:37.277115 wsp=0 dir=214.6 sensor=[rain_tips: 128 count]\n07:09:39.840730 wsp=1 dir=214.6 sensor=[rain_rate: 0.0 in/hr]\n07:09:42.402740 wsp=0 dir=214.6 sensor=[temperature: 46.65625 F]\n07:09:44.964518 wsp=0 dir=216.0 sensor=[unknown(3): b'\\xff\\xc1\\x83']\n07:09:47.528310 wsp=0 dir=216.0 sensor=[rain_tips: 128 count]\n07:09:50.090138 wsp=0 dir=216.0 sensor=[rain_rate: 0.0 in/hr]\n07:09:52.651927 wsp=0 dir=216.0 sensor=[temperature: 46.75625 F]\n07:09:55.216232 wsp=0 dir=216.0 sensor=[10m_wind_gust: 1.60934 mph]\n07:09:57.777993 wsp=0 dir=213.2 sensor=[rain_tips: 128 count]\n07:10:00.339839 wsp=0 dir=206.1 sensor=[rain_rate: 0.0 in/hr]\n07:10:02.901800 wsp=0 dir=206.1 sensor=[temperature: 46.76875 F]\n07:10:05.465495 wsp=0 dir=207.5 sensor=[outside_humidity: 89.0 %RH]\n07:10:08.027392 wsp=0 dir=207.5 sensor=[rain_tips: 128 count]\n07:10:10.589319 wsp=0 dir=207.5 sensor=[rain_rate: 0.0 in/hr]\n07:10:13.153335 wsp=0 dir=207.5 sensor=[temperature: 46.75625 F]\n07:10:15.714971 wsp=0 dir=207.5 sensor=[cap_voltage: 5.95 V]\n07:10:18.276820 wsp=0 dir=207.5 sensor=[rain_tips: 128 count]\n07:10:20.840718 wsp=0 dir=207.5 sensor=[rain_rate: 0.0 in/hr]\n07:10:23.402629 wsp=0 dir=207.5 sensor=[temperature: 46.75625 F]\n07:10:25.964658 wsp=0 dir=237.2 sensor=[panel_voltage: 6.02 V]\n07:10:28.528317 wsp=0 dir=237.2 sensor=[rain_tips: 128 count]\n07:10:31.090290 wsp=0 dir=237.2 sensor=[rain_rate: 0.0 in/hr]\n07:10:33.652092 wsp=0 dir=234.4 sensor=[temperature: 46.75625 F]\n07:10:36.216074 wsp=0 dir=220.2 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:10:38.778096 wsp=0 dir=218.8 sensor=[rain_tips: 128 count]\n07:10:41.339986 wsp=0 dir=252.7 sensor=[rain_rate: 0.0 in/hr]\n07:10:43.903534 wsp=0 dir=220.2 sensor=[temperature: 46.76875 F]\n07:10:51.591249 wsp=0 dir=216.0 sensor=[rain_rate: 0.0 in/hr]\n07:10:54.153020 wsp=0 dir=217.4 sensor=[temperature: 46.76875 F]\n07:10:56.714963 wsp=0 dir=214.6 sensor=[outside_humidity: 88.9 %RH]\n07:10:59.279074 wsp=0 dir=227.3 sensor=[rain_tips: 128 count]\n07:11:01.840846 wsp=0 dir=213.2 sensor=[rain_rate: 0.0 in/hr]\n07:11:04.402662 wsp=0 dir=214.6 sensor=[temperature: 46.75625 F]\n07:11:06.966436 wsp=0 dir=223.1 sensor=[cap_voltage: 6.0 V]\n07:11:09.528248 wsp=0 dir=225.9 sensor=[rain_tips: 128 count]\n07:11:12.090133 wsp=0 dir=214.6 sensor=[rain_rate: 0.0 in/hr]\n07:11:14.654268 wsp=0 dir=216.0 sensor=[temperature: 46.75625 F]\n07:11:17.216137 wsp=0 dir=218.8 sensor=[panel_voltage: 6.08 V]\n07:11:19.778112 wsp=0 dir=225.9 sensor=[rain_tips: 128 count]\n07:11:22.341713 wsp=0 dir=213.2 sensor=[rain_rate: 0.0 in/hr]\n07:11:24.903819 wsp=0 dir=213.2 sensor=[temperature: 46.75625 F]\n07:11:27.465643 wsp=0 dir=213.2 sensor=[unknown(3): b'\\xff\\xc1\\x83']\n07:11:30.027385 wsp=0 dir=197.6 sensor=[rain_tips: 128 count]\n07:11:32.591092 wsp=0 dir=213.2 sensor=[rain_rate: 0.0 in/hr]\n07:11:35.153054 wsp=0 dir=196.2 sensor=[temperature: 46.86875 F]\n07:11:37.714970 wsp=0 dir=197.6 sensor=[10m_wind_gust: 1.60934 mph]\n07:11:40.278910 wsp=0 dir=197.6 sensor=[rain_tips: 128 count]\n07:11:42.840836 wsp=0 dir=197.6 sensor=[rain_rate: 0.0 in/hr]\n07:11:45.402745 wsp=0 dir=194.8 sensor=[temperature: 46.85625 F]\n07:11:47.966395 wsp=0 dir=193.4 sensor=[outside_humidity: 88.5 %RH]\n07:11:50.528356 wsp=0 dir=194.8 sensor=[rain_tips: 128 count]\n07:11:53.090249 wsp=0 dir=194.8 sensor=[rain_rate: 0.0 in/hr]\n07:11:55.653971 wsp=0 dir=192.0 sensor=[temperature: 46.86875 F]\n07:11:58.215824 wsp=0 dir=192.0 sensor=[cap_voltage: 6.05 V]\n07:12:00.777750 wsp=0 dir=193.4 sensor=[rain_tips: 128 count]\n07:12:03.341756 wsp=0 dir=201.9 sensor=[rain_rate: 0.0 in/hr]\n07:12:05.903650 wsp=0 dir=201.9 sensor=[temperature: 46.86875 F]\n07:12:08.465604 wsp=0 dir=203.3 sensor=[panel_voltage: 6.12 V]\n07:12:13.591254 wsp=0 dir=203.3 sensor=[rain_rate: 0.0 in/hr]\n07:12:16.153098 wsp=0 dir=203.3 sensor=[temperature: 46.85625 F]\n07:12:18.717233 wsp=0 dir=203.3 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:12:21.278981 wsp=0 dir=204.7 sensor=[rain_tips: 128 count]\n07:12:23.840916 wsp=0 dir=204.7 sensor=[rain_rate: 0.0 in/hr]\n07:12:26.404792 wsp=0 dir=204.7 sensor=[temperature: 46.95625 F]\n07:12:31.528580 wsp=0 dir=199.1 sensor=[rain_tips: 128 count]\n07:12:36.654067 wsp=0 dir=199.1 sensor=[temperature: 46.95625 F]\n07:12:39.215905 wsp=0 dir=199.1 sensor=[outside_humidity: 88.6 %RH]\n07:12:41.780178 wsp=0 dir=199.1 sensor=[rain_tips: 128 count]\n07:12:44.341852 wsp=0 dir=196.2 sensor=[rain_rate: 0.0 in/hr]\n07:12:46.903731 wsp=0 dir=194.8 sensor=[temperature: 46.95625 F]\n07:12:49.465689 wsp=0 dir=196.2 sensor=[cap_voltage: 6.1 V]\n07:12:52.029414 wsp=0 dir=165.2 sensor=[rain_tips: 128 count]\n07:12:54.591218 wsp=0 dir=211.8 sensor=[rain_rate: 0.0 in/hr]\n07:13:04.840650 wsp=0 dir=210.4 sensor=[rain_rate: 0.0 in/hr]\n07:13:07.404785 wsp=0 dir=210.4 sensor=[temperature: 46.96875 F]\n07:13:09.966660 wsp=0 dir=210.4 sensor=[unknown(3): b'\\xff\\xc3\\x83']\n07:13:12.528582 wsp=0 dir=210.4 sensor=[rain_tips: 128 count]\n07:13:15.092266 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:13:17.654178 wsp=0 dir=208.9 sensor=[temperature: 46.95625 F]\n07:13:20.216001 wsp=0 dir=208.9 sensor=[10m_wind_gust: 1.60934 mph]\n07:13:25.342036 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:13:27.903823 wsp=0 dir=208.9 sensor=[temperature: 46.95625 F]\n07:13:30.467500 wsp=0 dir=208.9 sensor=[outside_humidity: 88.4 %RH]\n07:13:33.029475 wsp=0 dir=208.9 sensor=[rain_tips: 128 count]\n07:13:35.591390 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:13:38.155241 wsp=0 dir=208.9 sensor=[temperature: 47.05625 F]\n07:13:40.717124 wsp=0 dir=211.8 sensor=[cap_voltage: 6.15 V]\n07:13:43.278877 wsp=0 dir=211.8 sensor=[rain_tips: 128 count]\n07:13:45.842871 wsp=0 dir=211.8 sensor=[rain_rate: 0.0 in/hr]\n07:13:48.404868 wsp=0 dir=211.8 sensor=[temperature: 46.96875 F]\n07:13:50.966731 wsp=0 dir=211.8 sensor=[panel_voltage: 6.23 V]\n07:13:53.530402 wsp=0 dir=211.8 sensor=[rain_tips: 128 count]\n07:13:56.092346 wsp=1 dir=217.4 sensor=[rain_rate: 0.0 in/hr]\n07:13:58.654175 wsp=0 dir=235.8 sensor=[temperature: 47.05625 F]\n07:14:01.218174 wsp=0 dir=227.3 sensor=[unknown(3): b'\\xff\\xc3\\x83']\n07:14:03.780125 wsp=0 dir=221.6 sensor=[rain_tips: 128 count]\n07:14:06.342163 wsp=0 dir=214.6 sensor=[rain_rate: 0.0 in/hr]\n07:14:08.905787 wsp=0 dir=208.9 sensor=[temperature: 47.06875 F]\n07:14:11.467613 wsp=0 dir=210.4 sensor=[10m_wind_gust: 1.60934 mph]\n07:14:21.717023 wsp=0 dir=208.9 sensor=[outside_humidity: 88.2 %RH]\n07:14:24.278907 wsp=0 dir=170.8 sensor=[rain_tips: 128 count]\n07:14:26.842998 wsp=0 dir=216.0 sensor=[rain_rate: 0.0 in/hr]\n07:14:29.404816 wsp=0 dir=216.0 sensor=[temperature: 47.05625 F]\n07:14:31.966813 wsp=0 dir=217.4 sensor=[cap_voltage: 6.21 V]\n07:14:34.530422 wsp=0 dir=208.9 sensor=[rain_tips: 128 count]\n07:14:37.092338 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:14:39.654335 wsp=0 dir=189.2 sensor=[temperature: 47.05625 F]\n07:14:42.218008 wsp=0 dir=190.6 sensor=[panel_voltage: 6.27 V]\n07:14:44.779938 wsp=0 dir=197.6 sensor=[rain_tips: 128 count]\n07:14:47.341780 wsp=0 dir=211.8 sensor=[rain_rate: 0.0 in/hr]\n07:14:49.905743 wsp=0 dir=241.4 sensor=[temperature: 47.05625 F]\n07:14:52.467748 wsp=0 dir=242.8 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:14:55.029606 wsp=0 dir=242.8 sensor=[rain_tips: 128 count]\n07:14:57.593377 wsp=0 dir=242.8 sensor=[rain_rate: 0.0 in/hr]\n07:15:00.155253 wsp=0 dir=242.8 sensor=[temperature: 47.06875 F]\n07:15:02.717121 wsp=0 dir=242.8 sensor=[10m_wind_gust: 1.60934 mph]\n07:15:05.281282 wsp=0 dir=242.8 sensor=[rain_tips: 128 count]\n07:15:07.843149 wsp=0 dir=241.4 sensor=[rain_rate: 0.0 in/hr]\n07:15:12.968839 wsp=0 dir=213.2 sensor=[outside_humidity: 88.4 %RH]\n07:15:15.530517 wsp=0 dir=213.2 sensor=[rain_tips: 128 count]\n07:15:18.092465 wsp=0 dir=216.0 sensor=[rain_rate: 0.0 in/hr]\n07:15:20.656088 wsp=0 dir=214.6 sensor=[temperature: 47.06875 F]\n07:15:23.218057 wsp=0 dir=200.5 sensor=[cap_voltage: 6.26 V]\n07:15:25.779954 wsp=0 dir=208.9 sensor=[rain_tips: 128 count]\n07:15:28.343926 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:15:30.905981 wsp=0 dir=186.4 sensor=[temperature: 47.05625 F]\n07:15:36.029655 wsp=0 dir=196.2 sensor=[rain_tips: 128 count]\n07:15:38.593418 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:15:43.717148 wsp=0 dir=193.4 sensor=[unknown(3): b'\\xff\\xc1\\x83']\n07:15:46.281128 wsp=0 dir=196.2 sensor=[rain_tips: 128 count]\n07:15:48.842825 wsp=0 dir=197.6 sensor=[rain_rate: 0.0 in/hr]\n07:15:53.968661 wsp=0 dir=217.4 sensor=[10m_wind_gust: 1.60934 mph]\n07:15:56.530574 wsp=0 dir=223.1 sensor=[rain_tips: 128 count]\n07:15:59.092490 wsp=0 dir=223.1 sensor=[rain_rate: 0.0 in/hr]\n07:16:01.656275 wsp=0 dir=223.1 sensor=[temperature: 47.06875 F]\n07:16:04.218082 wsp=0 dir=223.1 sensor=[outside_humidity: 88.1 %RH]\n07:16:06.780113 wsp=0 dir=218.8 sensor=[rain_tips: 128 count]\n07:16:09.344016 wsp=0 dir=203.3 sensor=[rain_rate: 0.0 in/hr]\n07:16:11.905912 wsp=0 dir=211.8 sensor=[temperature: 47.06875 F]\n07:16:14.467971 wsp=0 dir=213.2 sensor=[cap_voltage: 6.33 V]\n07:16:17.031562 wsp=0 dir=213.2 sensor=[rain_tips: 128 count]\n07:16:22.155318 wsp=0 dir=214.6 sensor=[temperature: 47.16875 F]\n07:16:24.719129 wsp=0 dir=186.4 sensor=[panel_voltage: 5.41 V]\n07:16:27.280955 wsp=0 dir=186.4 sensor=[rain_tips: 128 count]\n07:16:29.842870 wsp=0 dir=214.6 sensor=[rain_rate: 0.0 in/hr]\n07:16:32.406847 wsp=0 dir=206.1 sensor=[temperature: 47.16875 F]\n07:16:34.968752 wsp=0 dir=201.9 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:16:37.530802 wsp=0 dir=203.3 sensor=[rain_tips: 128 count]\n07:16:40.094348 wsp=0 dir=203.3 sensor=[rain_rate: 0.0 in/hr]\n07:16:42.656252 wsp=0 dir=203.3 sensor=[temperature: 47.15625 F]\n07:16:45.218195 wsp=0 dir=203.3 sensor=[10m_wind_gust: 1.60934 mph]\n07:16:47.782285 wsp=0 dir=203.3 sensor=[rain_tips: 128 count]\n07:16:50.344148 wsp=0 dir=203.3 sensor=[rain_rate: 0.0 in/hr]\n07:16:52.906110 wsp=0 dir=203.3 sensor=[temperature: 47.05625 F]\n07:16:55.469741 wsp=0 dir=204.7 sensor=[outside_humidity: 88.2 %RH]\n07:16:58.031732 wsp=0 dir=207.5 sensor=[rain_tips: 128 count]\n07:17:00.593497 wsp=0 dir=207.5 sensor=[rain_rate: 0.0 in/hr]\n07:17:03.155428 wsp=0 dir=207.5 sensor=[temperature: 47.15625 F]\n07:17:05.719096 wsp=0 dir=207.5 sensor=[cap_voltage: 6.39 V]\n07:17:08.281035 wsp=0 dir=207.5 sensor=[rain_tips: 128 count]\n07:17:10.842962 wsp=0 dir=207.5 sensor=[rain_rate: 0.0 in/hr]\n07:17:13.406917 wsp=0 dir=207.5 sensor=[temperature: 47.15625 F]\n07:17:15.968928 wsp=0 dir=208.9 sensor=[panel_voltage: 5.38 V]\n07:17:18.530805 wsp=0 dir=208.9 sensor=[rain_tips: 128 count]\n07:17:21.094444 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:17:23.656456 wsp=0 dir=208.9 sensor=[temperature: 47.15625 F]\n07:17:26.218300 wsp=0 dir=208.9 sensor=[unknown(3): b'\\xff\\xc1\\x80']\n07:17:28.781935 wsp=0 dir=208.9 sensor=[rain_tips: 128 count]\n07:17:31.344044 wsp=0 dir=208.9 sensor=[rain_rate: 0.0 in/hr]\n07:17:33.905769 wsp=0 dir=208.9 sensor=[temperature: 47.15625 F]\n"
}
],
"execution_count": 150
}
]
}
07:00:26.239793 rtldavis.go VERSION=0.15
07:00:26.239842 tr=1 fc=0 ppm=0 gain=0 maxmissed=51 ex=0 receiveWindow=300 actChan=[0] maxChan=1
07:00:26.239848 undefined=false verbose=false disableAfc=false deviceString=0
07:00:26.239875 BitRate: 19200
07:00:26.239879 SymbolLength: 14
07:00:26.239880 SampleRate: 268800
07:00:26.239882 Preamble: 1100101110001001
07:00:26.239883 PreambleSymbols: 16
07:00:26.239884 PreambleLength: 224
07:00:26.239885 PacketSymbols: 80
07:00:26.239887 PacketLength: 1120
07:00:26.239888 BlockSize: 512
07:00:26.239889 BufferLength: 2048
Found Rafael Micro R820T tuner
07:00:26.617072 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:0 Transmitter:0}
Exact sample rate is: 268800.001367 Hz
07:00:26.742540 GetTunerGain: 0 Db
07:00:26.742554 SetFreqCorrection 0 ppm Successful
07:00:26.745925 Init channels: wait max 135 seconds for a message of each transmitter
07:01:48.334662 TRANSMITTER 0 SEEN
07:01:48.334694 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:0 Transmitter:0}
07:01:50.896634 8000951CCB005256 2 0 0 0 0 msg.ID=0
07:01:50.896690 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:0 Transmitter:0}
07:01:53.460565 7000958E0380DBC6 3 0 0 0 0 msg.ID=0
07:01:53.460593 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:0 Transmitter:0}
07:01:56.022262 E000958003009FEB 4 0 0 0 0 msg.ID=0
07:01:56.022321 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:0 Transmitter:0}
07:01:58.584197 500095FF73009827 5 0 0 0 0 msg.ID=0
07:01:58.584258 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:0 Transmitter:0}
07:02:01.148081 8000951CCB005256 6 0 0 0 0 msg.ID=0
07:02:01.148103 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:0 Transmitter:0}
07:02:03.710105 300095FFC38048BA 7 0 0 0 0 msg.ID=0
07:02:03.710168 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:0 Transmitter:0}
07:02:06.635570 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
07:02:06.635605 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:0 Transmitter:0}
07:02:08.835552 500095FF73009827 8 0 0 0 0 msg.ID=0
07:02:08.835575 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:0 Transmitter:0}
07:02:11.397716 8000951CCB005256 9 0 0 0 0 msg.ID=0
07:02:11.397775 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:0 Transmitter:0}
07:02:13.959569 900095000300E12D 10 0 0 0 0 msg.ID=0
07:02:13.959604 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:0 Transmitter:0}
07:02:16.523564 E000958003009FEB 11 0 0 0 0 msg.ID=0
07:02:16.523631 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:0 Transmitter:0}
07:02:19.085391 500095FF73009827 12 0 0 0 0 msg.ID=0
07:02:19.085414 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:0 Transmitter:0}
07:02:21.647330 8000951CCB005256 13 0 0 0 0 msg.ID=0
07:02:21.647357 Hop: {ChannelIdx:5 ChannelFreq:904928090 FreqError:0 Transmitter:0}
07:02:24.210903 A00095843B00A507 14 0 0 0 0 msg.ID=0
07:02:24.210919 Hop: {ChannelIdx:27 ChannelFreq:915966601 FreqError:0 Transmitter:0}
07:02:26.772836 E000958003009FEB 15 0 0 0 0 msg.ID=0
07:02:26.772851 Hop: {ChannelIdx:38 ChannelFreq:921485856 FreqError:0 Transmitter:0}
07:02:29.334886 500095FF73009827 16 0 0 0 0 msg.ID=0
07:02:29.334945 Hop: {ChannelIdx:10 ChannelFreq:907436843 FreqError:0 Transmitter:0}
07:02:31.898430 8000951CCB005256 17 0 0 0 0 msg.ID=0
07:02:31.898442 Hop: {ChannelIdx:49 ChannelFreq:927005112 FreqError:0 Transmitter:0}
07:02:34.460581 20009587C3802397 18 0 0 0 0 msg.ID=0
07:02:34.460641 Hop: {ChannelIdx:21 ChannelFreq:912956099 FreqError:0 Transmitter:0}
07:02:37.022551 E000958003009FEB 19 0 0 0 0 msg.ID=0
07:02:37.022626 Hop: {ChannelIdx:2 ChannelFreq:903422839 FreqError:0 Transmitter:0}
07:02:39.586414 500095FF73009827 20 0 0 0 0 msg.ID=0
07:02:39.586438 Hop: {ChannelIdx:30 ChannelFreq:917471852 FreqError:0 Transmitter:0}
07:02:42.148320 8000951CCB005256 21 0 0 0 0 msg.ID=0
07:02:42.148343 Hop: {ChannelIdx:42 ChannelFreq:923492858 FreqError:0 Transmitter:0}
07:02:44.710387 70009590038083A4 22 0 0 0 0 msg.ID=0
07:02:44.710434 Hop: {ChannelIdx:14 ChannelFreq:909443845 FreqError:0 Transmitter:0}
07:02:47.272235 E000958003009FEB 23 0 0 0 0 msg.ID=0
07:02:47.272281 Hop: {ChannelIdx:48 ChannelFreq:926503361 FreqError:0 Transmitter:0}
07:02:47.274056 duplicate packet: E000958003009FEB
07:02:49.835782 500095FF73009827 24 0 0 0 0 msg.ID=0
07:02:49.835811 Hop: {ChannelIdx:7 ChannelFreq:905931591 FreqError:0 Transmitter:0}
07:02:52.397692 8000951CCB005256 25 0 0 0 0 msg.ID=0
07:02:52.397716 Hop: {ChannelIdx:24 ChannelFreq:914461350 FreqError:0 Transmitter:0}
07:02:54.959645 300095FFC38048BA 26 0 0 0 0 msg.ID=0
07:02:54.959682 Hop: {ChannelIdx:34 ChannelFreq:919478854 FreqError:0 Transmitter:0}
07:02:57.523691 E000958003009FEB 27 0 0 0 0 msg.ID=0
07:02:57.523721 Hop: {ChannelIdx:45 ChannelFreq:924998110 FreqError:0 Transmitter:0}
07:03:00.085490 500095FF73009827 28 0 0 0 0 msg.ID=0
07:03:00.085512 Hop: {ChannelIdx:1 ChannelFreq:902921088 FreqError:0 Transmitter:0}
07:03:02.647558 8000951CCB005256 29 0 0 0 0 msg.ID=0
07:03:02.647601 Hop: {ChannelIdx:17 ChannelFreq:910949096 FreqError:0 Transmitter:0}
07:03:05.211193 900095000300E12D 30 0 0 0 0 msg.ID=0
07:03:05.211218 Hop: {ChannelIdx:39 ChannelFreq:921987607 FreqError:0 Transmitter:0}
07:03:07.773115 E000958003009FEB 31 0 0 0 0 msg.ID=0
07:03:07.773138 Hop: {ChannelIdx:26 ChannelFreq:915464850 FreqError:0 Transmitter:0}
07:03:10.334951 500095FF73009827 32 0 0 0 0 msg.ID=0
07:03:10.334972 Hop: {ChannelIdx:9 ChannelFreq:906935092 FreqError:0 Transmitter:0}
07:03:12.898823 8000951CCB005256 33 0 0 0 0 msg.ID=0
07:03:12.898880 Hop: {ChannelIdx:31 ChannelFreq:917973603 FreqError:0 Transmitter:0}
07:03:15.460654 A00095843B00A507 34 0 0 0 0 msg.ID=0
07:03:15.460696 Hop: {ChannelIdx:50 ChannelFreq:927506862 FreqError:0 Transmitter:0}
07:03:18.022575 E000958003009FEB 35 0 0 0 0 msg.ID=0
07:03:18.022595 Hop: {ChannelIdx:37 ChannelFreq:920984106 FreqError:0 Transmitter:0}
07:03:20.586441 500095FF73009827 36 0 0 0 0 msg.ID=0
07:03:20.586471 Hop: {ChannelIdx:12 ChannelFreq:908440344 FreqError:0 Transmitter:0}
07:03:23.512174 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
07:03:23.512232 Hop: {ChannelIdx:20 ChannelFreq:912454348 FreqError:0 Transmitter:0}
07:03:25.710305 200095894180456C 37 0 0 0 0 msg.ID=0
07:03:25.710325 Hop: {ChannelIdx:33 ChannelFreq:918977104 FreqError:0 Transmitter:0}
07:03:28.274138 E00095800100F989 38 0 0 0 0 msg.ID=0
07:03:28.274187 Hop: {ChannelIdx:4 ChannelFreq:904426340 FreqError:0 Transmitter:0}
07:03:30.835967 500095FF7100FE45 39 0 0 0 0 msg.ID=0
07:03:30.835989 Hop: {ChannelIdx:43 ChannelFreq:923994609 FreqError:0 Transmitter:0}
07:03:33.397900 8000951CD9003747 40 0 0 0 0 msg.ID=0
07:03:33.397922 Hop: {ChannelIdx:28 ChannelFreq:916468351 FreqError:0 Transmitter:0}
07:03:35.961461 700095924180866A 41 0 0 0 0 msg.ID=0
07:03:35.961476 Hop: {ChannelIdx:15 ChannelFreq:909945595 FreqError:0 Transmitter:0}
07:03:38.523403 E000958003009FEB 42 0 0 0 0 msg.ID=0
07:03:38.523426 Hop: {ChannelIdx:35 ChannelFreq:919980605 FreqError:0 Transmitter:0}
07:03:41.085379 500095FF7100FE45 43 0 0 0 0 msg.ID=0
07:03:41.085421 Hop: {ChannelIdx:6 ChannelFreq:905429841 FreqError:0 Transmitter:0}
07:03:43.649345 8000951CDB005125 44 0 0 0 0 msg.ID=0
07:03:43.649359 Hop: {ChannelIdx:40 ChannelFreq:922489357 FreqError:0 Transmitter:0}
07:03:46.574980 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0]
07:03:46.575008 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:0 Transmitter:0}
07:03:48.773273 E0008E8003009A53 45 0 0 0 0 msg.ID=0
07:03:48.773293 Hop: {ChannelIdx:23 ChannelFreq:913959599 FreqError:0 Transmitter:0}
07:03:51.337056 500086FF7300185C 46 0 0 0 0 msg.ID=0
07:03:51.337108 Hop: {ChannelIdx:46 ChannelFreq:925499860 FreqError:0 Transmitter:0}
07:03:53.898811 8000911CDB009BD4 47 0 0 0 0 msg.ID=0
07:03:53.898839 Hop: {ChannelIdx:18 ChannelFreq:911450847 FreqError:0 Transmitter:0}
07:03:56.460912 9000910001004DBE 48 0 0 0 0 msg.ID=0
07:03:56.460990 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:353 Transmitter:0}
07:03:59.024679 E000918001003378 49 0 0 0 0 msg.ID=0
07:03:59.024694 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:489 Transmitter:0}
07:04:01.586634 500090FF71004200 50 0 0 0 0 msg.ID=0
07:04:01.586661 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:428 Transmitter:0}
07:04:04.148523 8000921CEB00059D 51 0 0 0 0 msg.ID=0
07:04:04.148541 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:564 Transmitter:0}
07:04:06.712258 A00097823B00FACF 52 0 0 0 0 msg.ID=0
07:04:06.712283 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:360 Transmitter:0}
07:04:09.274186 E0009080030023AE 53 0 0 0 0 msg.ID=0
07:04:09.274210 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:417 Transmitter:0}
07:04:11.836137 50008EFF73009D9F 54 0 0 0 0 msg.ID=0
07:04:11.836166 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:575 Transmitter:0}
07:04:14.398079 80008E1CDB00549D 55 0 0 0 0 msg.ID=0
07:04:14.398108 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:0 Transmitter:0}
07:04:14.399808 duplicate packet: 80008E1CDB00549D
07:04:16.961663 20008E8B0380451A 56 0 0 0 0 msg.ID=0
07:04:16.961679 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:392 Transmitter:0}
07:04:19.523607 E0008F8001008A85 57 0 0 0 0 msg.ID=0
07:04:19.523631 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:458 Transmitter:0}
07:04:22.085519 50008FFF71008D49 58 0 0 0 0 msg.ID=0
07:04:22.085534 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:373 Transmitter:0}
07:04:24.649521 80008F1CDB002229 59 0 0 0 0 msg.ID=0
07:04:24.649539 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:565 Transmitter:0}
07:04:27.211562 70008F92C380889C 60 0 0 0 0 msg.ID=0
07:04:27.211595 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:374 Transmitter:0}
07:04:29.773429 E0008F800300ECE7 61 0 0 0 0 msg.ID=0
07:04:29.773452 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:465 Transmitter:0}
07:04:32.337218 500089FF7300CCB2 62 0 0 0 0 msg.ID=0
07:04:32.337266 Hop: {ChannelIdx:5 ChannelFreq:904928090 FreqError:266 Transmitter:0}
07:04:34.898994 80006B1CEB0069A7 63 0 0 0 0 msg.ID=0
07:04:34.899014 Hop: {ChannelIdx:27 ChannelFreq:915966601 FreqError:589 Transmitter:0}
07:04:37.460893 30006DFFC1803456 64 0 0 0 0 msg.ID=0
07:04:37.460924 Hop: {ChannelIdx:38 ChannelFreq:921485856 FreqError:342 Transmitter:0}
07:04:40.024839 E0006D800100E307 65 0 0 0 0 msg.ID=0
07:04:40.024858 Hop: {ChannelIdx:10 ChannelFreq:907436843 FreqError:416 Transmitter:0}
07:04:42.586454 50006DFF7100E4CB 66 0 0 0 0 msg.ID=0
07:04:42.586471 Hop: {ChannelIdx:49 ChannelFreq:927005112 FreqError:459 Transmitter:0}
07:04:45.148381 80006D1CD9002DC9 67 0 0 0 0 msg.ID=0
07:04:45.148397 Hop: {ChannelIdx:21 ChannelFreq:912956099 FreqError:507 Transmitter:0}
07:04:47.712371 9000740001007511 68 0 0 0 0 msg.ID=0
07:04:47.712386 Hop: {ChannelIdx:2 ChannelFreq:903422839 FreqError:345 Transmitter:0}
07:04:50.274292 E0009A8003004B05 69 0 0 0 0 msg.ID=0
07:04:50.274306 Hop: {ChannelIdx:30 ChannelFreq:917471852 FreqError:444 Transmitter:0}
07:04:52.836321 50009AFF71002AAB 70 0 0 0 0 msg.ID=0
07:04:52.836350 Hop: {ChannelIdx:42 ChannelFreq:923492858 FreqError:354 Transmitter:0}
07:04:55.399929 8000831CE9000EEC 71 0 0 0 0 msg.ID=0
07:04:55.399953 Hop: {ChannelIdx:14 ChannelFreq:909443845 FreqError:592 Transmitter:0}
07:04:57.961866 A0009C833900B582 72 0 0 0 0 msg.ID=0
07:04:57.961897 Hop: {ChannelIdx:48 ChannelFreq:926503361 FreqError:876 Transmitter:0}
07:05:00.523815 E00083800100C5B7 73 0 0 0 0 msg.ID=0
07:05:00.523838 Hop: {ChannelIdx:7 ChannelFreq:905931591 FreqError:462 Transmitter:0}
07:05:03.087795 500080FF710059A7 74 0 0 0 0 msg.ID=0
07:05:03.087831 Hop: {ChannelIdx:24 ChannelFreq:914461350 FreqError:556 Transmitter:0}
07:05:05.649761 8000821CE9007858 75 0 0 0 0 msg.ID=0
07:05:05.649789 Hop: {ChannelIdx:34 ChannelFreq:919478854 FreqError:538 Transmitter:0}
07:05:08.211705 2000828C8180F242 76 0 0 0 0 msg.ID=0
07:05:08.211759 Hop: {ChannelIdx:45 ChannelFreq:924998110 FreqError:339 Transmitter:0}
07:05:10.775343 E00082800100B303 77 0 0 0 0 msg.ID=0
07:05:10.775371 Hop: {ChannelIdx:1 ChannelFreq:902921088 FreqError:443 Transmitter:0}
07:05:13.337195 500082FF7100B4CF 78 0 0 0 0 msg.ID=0
07:05:13.337219 Hop: {ChannelIdx:17 ChannelFreq:910949096 FreqError:363 Transmitter:0}
07:05:15.899130 8000821CEB001E3A 79 0 0 0 0 msg.ID=0
07:05:15.899149 Hop: {ChannelIdx:39 ChannelFreq:921987607 FreqError:475 Transmitter:0}
07:05:18.462779 7000829443801822 80 0 0 0 0 msg.ID=0
07:05:18.462793 Hop: {ChannelIdx:26 ChannelFreq:915464850 FreqError:411 Transmitter:0}
07:05:21.024673 E0009F800300F740 81 0 0 0 0 msg.ID=0
07:05:21.024688 Hop: {ChannelIdx:9 ChannelFreq:906935092 FreqError:427 Transmitter:0}
07:05:23.586629 50009BFF73003A7D 82 0 0 0 0 msg.ID=0
07:05:23.586652 Hop: {ChannelIdx:31 ChannelFreq:917973603 FreqError:183 Transmitter:0}
07:05:26.512678 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0]
07:05:26.512738 Hop: {ChannelIdx:50 ChannelFreq:927506862 FreqError:569 Transmitter:0}
07:05:28.712533 3000A5FFC1800231 83 0 0 0 0 msg.ID=0
07:05:28.712549 Hop: {ChannelIdx:37 ChannelFreq:920984106 FreqError:380 Transmitter:0}
07:05:31.274478 E0009B8001005BD3 84 0 0 0 0 msg.ID=0
07:05:31.274492 Hop: {ChannelIdx:12 ChannelFreq:908440344 FreqError:0 Transmitter:0}
07:05:33.838113 50009BFF71005C1F 85 0 0 0 0 msg.ID=0
07:05:33.838127 Hop: {ChannelIdx:20 ChannelFreq:912454348 FreqError:445 Transmitter:0}
07:05:36.400194 80008E1CE90FC685 86 0 0 0 0 msg.ID=0
07:05:36.400246 Hop: {ChannelIdx:33 ChannelFreq:918977104 FreqError:222 Transmitter:0}
07:05:38.962056 90008B006108B490 87 0 0 0 0 msg.ID=0
07:05:38.962095 Hop: {ChannelIdx:4 ChannelFreq:904426340 FreqError:237 Transmitter:0}
07:05:41.523928 E0006F800303586E 88 0 0 0 0 msg.ID=0
07:05:41.523947 Hop: {ChannelIdx:43 ChannelFreq:923994609 FreqError:345 Transmitter:0}
07:05:44.087897 500078FF71004329 89 0 0 0 0 msg.ID=0
07:05:44.087910 Hop: {ChannelIdx:28 ChannelFreq:916468351 FreqError:444 Transmitter:0}
07:05:46.649806 8000761CFB0048F5 90 0 0 0 0 msg.ID=0
07:05:46.649821 Hop: {ChannelIdx:15 ChannelFreq:909945595 FreqError:567 Transmitter:0}
07:05:49.211815 A0006B803B0044D0 91 0 0 0 0 msg.ID=0
07:05:49.211833 Hop: {ChannelIdx:35 ChannelFreq:919980605 FreqError:290 Transmitter:0}
07:05:51.775401 E0006B800100C49E 92 0 0 0 0 msg.ID=0
07:05:51.775414 Hop: {ChannelIdx:6 ChannelFreq:905429841 FreqError:242 Transmitter:0}
07:05:54.337343 50006BFF7100C352 93 0 0 0 0 msg.ID=0
07:05:54.337356 Hop: {ChannelIdx:40 ChannelFreq:922489357 FreqError:0 Transmitter:0}
07:05:57.262985 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0]
07:05:57.263043 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:343 Transmitter:0}
07:05:59.463052 20006B8E0180F027 94 0 0 0 0 msg.ID=0
07:05:59.463079 Hop: {ChannelIdx:23 ChannelFreq:913959599 FreqError:471 Transmitter:0}
07:06:02.024839 E0006B800100C49E 95 0 0 0 0 msg.ID=0
07:06:02.024869 Hop: {ChannelIdx:46 ChannelFreq:925499860 FreqError:405 Transmitter:0}
07:06:04.586888 50006BFF7100C352 96 0 0 0 0 msg.ID=0
07:06:04.586934 Hop: {ChannelIdx:18 ChannelFreq:911450847 FreqError:667 Transmitter:0}
07:06:07.150798 80006B1CF9000CB6 97 0 0 0 0 msg.ID=0
07:06:07.150817 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:820 Transmitter:0}
07:06:09.712757 70006B938380FC7B 98 0 0 0 0 msg.ID=0
07:06:09.712783 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:495 Transmitter:0}
07:06:12.274629 E0006B800300A2FC 99 0 0 0 0 msg.ID=0
07:06:12.274643 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:839 Transmitter:0}
07:06:14.838397 50006BFF7300A530 100 0 0 0 0 msg.ID=0
07:06:14.838425 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:1036 Transmitter:0}
07:06:17.400238 8000671CFB0025E6 101 0 0 0 0 msg.ID=0
07:06:17.400263 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:845 Transmitter:0}
07:06:19.962151 300067FFC3803A9F 102 0 0 0 0 msg.ID=0
07:06:19.962166 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:921 Transmitter:0}
07:06:22.525862 E00067800300EDCE 103 0 0 0 0 msg.ID=0
07:06:22.525898 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:908 Transmitter:0}
07:06:25.087708 500067FF7300EA02 104 0 0 0 0 msg.ID=0
07:06:25.087724 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:675 Transmitter:0}
07:06:27.649746 8000671CFB0025E6 105 0 0 0 0 msg.ID=0
07:06:27.649776 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:518 Transmitter:0}
07:06:30.213684 9000670003180031 106 0 0 0 0 msg.ID=0
07:06:30.213707 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:617 Transmitter:0}
07:06:32.775646 E00067800300EDCE 107 0 0 0 0 msg.ID=0
07:06:32.775659 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:576 Transmitter:0}
07:06:35.337478 500067FF7300EA02 108 0 0 0 0 msg.ID=0
07:06:35.337511 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:901 Transmitter:0}
07:06:37.901245 8000671CFB0025E6 109 0 0 0 0 msg.ID=0
07:06:37.901278 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:895 Transmitter:0}
07:06:40.463106 A000AB7F39005E75 110 0 0 0 0 msg.ID=0
07:06:40.463120 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:867 Transmitter:0}
07:06:43.024987 E000AB800100773A 111 0 0 0 0 msg.ID=0
07:06:43.025001 Hop: {ChannelIdx:5 ChannelFreq:904928090 FreqError:702 Transmitter:0}
07:06:45.589089 5000A8FF7100EB2A 112 0 0 0 0 msg.ID=0
07:06:45.589110 Hop: {ChannelIdx:27 ChannelFreq:915966601 FreqError:894 Transmitter:0}
07:06:48.150947 8000A81D0900003F 113 0 0 0 0 msg.ID=0
07:06:48.150961 Hop: {ChannelIdx:38 ChannelFreq:921485856 FreqError:513 Transmitter:0}
07:06:51.076650 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0]
07:06:51.076677 Hop: {ChannelIdx:10 ChannelFreq:907436843 FreqError:819 Transmitter:0}
07:06:53.276597 E000A68001004EBC 114 0 0 0 0 msg.ID=0
07:06:53.276610 Hop: {ChannelIdx:49 ChannelFreq:927005112 FreqError:730 Transmitter:0}
07:06:55.838450 5000A6FF73002F12 115 0 0 0 0 msg.ID=0
07:06:55.838464 Hop: {ChannelIdx:21 ChannelFreq:912956099 FreqError:574 Transmitter:0}
07:06:58.400493 8000A21D09006894 116 0 0 0 0 msg.ID=0
07:06:58.400556 Hop: {ChannelIdx:2 ChannelFreq:903422839 FreqError:395 Transmitter:0}
07:07:00.964098 70007993C3800778 117 0 0 0 0 msg.ID=0
07:07:00.964122 Hop: {ChannelIdx:30 ChannelFreq:917471852 FreqError:815 Transmitter:0}
07:07:03.525986 E000788003002287 118 0 0 0 0 msg.ID=0
07:07:03.526001 Hop: {ChannelIdx:42 ChannelFreq:923492858 FreqError:817 Transmitter:0}
07:07:06.087975 500078FF7300254B 119 0 0 0 0 msg.ID=0
07:07:06.088012 Hop: {ChannelIdx:14 ChannelFreq:909443845 FreqError:743 Transmitter:0}
07:07:08.649741 8000781D0B00CE5E 120 0 0 0 0 msg.ID=0
07:07:08.649756 Hop: {ChannelIdx:48 ChannelFreq:926503361 FreqError:1323 Transmitter:0}
07:07:11.213823 300078FFC18093B4 121 0 0 0 0 msg.ID=0
07:07:11.213838 Hop: {ChannelIdx:7 ChannelFreq:905931591 FreqError:848 Transmitter:0}
07:07:13.775850 E0007880010044E5 122 0 0 0 0 msg.ID=0
07:07:13.775898 Hop: {ChannelIdx:24 ChannelFreq:914461350 FreqError:813 Transmitter:0}
07:07:16.337677 500078FF7300254B 123 0 0 0 0 msg.ID=0
07:07:16.337700 Hop: {ChannelIdx:34 ChannelFreq:919478854 FreqError:661 Transmitter:0}
07:07:18.901323 8000761D0B006C04 124 0 0 0 0 msg.ID=0
07:07:18.901340 Hop: {ChannelIdx:45 ChannelFreq:924998110 FreqError:393 Transmitter:0}
07:07:21.463257 9000760003285B71 125 0 0 0 0 msg.ID=0
07:07:21.463274 Hop: {ChannelIdx:1 ChannelFreq:902921088 FreqError:903 Transmitter:0}
07:07:24.025224 E00082800100B303 126 0 0 0 0 msg.ID=0
07:07:24.025250 Hop: {ChannelIdx:17 ChannelFreq:910949096 FreqError:711 Transmitter:0}
07:07:26.589311 5000ACFF730047B9 127 0 0 0 0 msg.ID=0
07:07:26.589352 Hop: {ChannelIdx:39 ChannelFreq:921987607 FreqError:618 Transmitter:0}
07:07:29.150799 8000AC1D0900CACE 128 0 0 0 0 msg.ID=0
07:07:29.150827 Hop: {ChannelIdx:26 ChannelFreq:915464850 FreqError:465 Transmitter:0}
07:07:31.712663 A000957F3B00B6A4 129 0 0 0 0 msg.ID=0
07:07:31.712678 Hop: {ChannelIdx:9 ChannelFreq:906935092 FreqError:880 Transmitter:0}
07:07:34.276646 E00092800100A8A4 130 0 0 0 0 msg.ID=0
07:07:34.276662 Hop: {ChannelIdx:31 ChannelFreq:917973603 FreqError:183 Transmitter:0}
07:07:36.838679 50009BFF73003A7D 131 0 0 0 0 msg.ID=0
07:07:36.838694 Hop: {ChannelIdx:50 ChannelFreq:927506862 FreqError:778 Transmitter:0}
07:07:39.400606 8000A21D09006894 132 0 0 0 0 msg.ID=0
07:07:39.400651 Hop: {ChannelIdx:37 ChannelFreq:920984106 FreqError:796 Transmitter:0}
07:07:41.964265 2000A590C180AFEF 133 0 0 0 0 msg.ID=0
07:07:41.964292 Hop: {ChannelIdx:12 ChannelFreq:908440344 FreqError:463 Transmitter:0}
07:07:44.890117 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0]
07:07:44.890140 Hop: {ChannelIdx:20 ChannelFreq:912454348 FreqError:616 Transmitter:0}
07:07:47.452151 ID:0 packet missed (2), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0]
07:07:47.452191 Hop: {ChannelIdx:33 ChannelFreq:918977104 FreqError:413 Transmitter:0}
07:07:49.652075 80008C1D1900FEF3 134 0 0 0 0 msg.ID=0
07:07:49.652092 Hop: {ChannelIdx:4 ChannelFreq:904426340 FreqError:751 Transmitter:0}
07:07:52.213939 70008C9503808084 135 0 0 0 0 msg.ID=0
07:07:52.213953 Hop: {ChannelIdx:43 ChannelFreq:923994609 FreqError:541 Transmitter:0}
07:07:54.775843 E0009B8003003DB1 136 0 0 0 0 msg.ID=0
07:07:54.775859 Hop: {ChannelIdx:28 ChannelFreq:916468351 FreqError:934 Transmitter:0}
07:07:57.339605 50009AFF71002AAB 137 0 0 0 0 msg.ID=0
07:07:57.339628 Hop: {ChannelIdx:15 ChannelFreq:909945595 FreqError:782 Transmitter:0}
07:07:59.901476 8000961D1B00EB9D 138 0 0 0 0 msg.ID=0
07:07:59.901516 Hop: {ChannelIdx:35 ChannelFreq:919980605 FreqError:787 Transmitter:0}
07:08:02.463574 300096FFC380D366 139 0 0 0 0 msg.ID=0
07:08:02.463681 Hop: {ChannelIdx:6 ChannelFreq:905429841 FreqError:514 Transmitter:0}
07:08:05.027034 E000968003000437 140 0 0 0 0 msg.ID=0
07:08:05.027053 Hop: {ChannelIdx:40 ChannelFreq:922489357 FreqError:0 Transmitter:0}
07:08:07.589011 500096FF730003FB 141 0 0 0 0 msg.ID=0
07:08:07.589034 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:679 Transmitter:0}
07:08:10.150895 8000A31D19001D53 142 0 0 0 0 msg.ID=0
07:08:10.150910 Hop: {ChannelIdx:23 ChannelFreq:913959599 FreqError:973 Transmitter:0}
07:08:12.714852 9000A30003385D06 143 0 0 0 0 msg.ID=0
07:08:12.714867 Hop: {ChannelIdx:46 ChannelFreq:925499860 FreqError:636 Transmitter:0}
07:08:15.276803 E000A3800300949B 144 0 0 0 0 msg.ID=0
07:08:15.276816 Hop: {ChannelIdx:18 ChannelFreq:911450847 FreqError:1089 Transmitter:0}
07:08:17.838725 500097FF7100132D 145 0 0 0 0 msg.ID=0
07:08:17.838739 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:1240 Transmitter:0}
07:08:20.402384 8000901D1B00CC04 146 0 0 0 0 msg.ID=0
07:08:20.402407 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:1119 Transmitter:0}
07:08:22.964387 A000917D3B001235 147 0 0 0 0 msg.ID=0
07:08:22.964430 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:878 Transmitter:0}
07:08:25.526299 E00091800300551A 148 0 0 0 0 msg.ID=0
07:08:25.526324 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:1392 Transmitter:0}
07:08:28.090357 5000C8FF7100B2F8 149 0 0 0 0 msg.ID=0
07:08:28.090389 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:1237 Transmitter:0}
07:08:30.652298 8000C51D19006318 150 0 0 0 0 msg.ID=0
07:08:30.652329 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:1296 Transmitter:0}
07:08:33.214223 2000C0920380542E 151 0 0 0 0 msg.ID=0
07:08:33.214271 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:865 Transmitter:0}
07:08:35.776226 E000C08003005695 152 0 0 0 0 msg.ID=0
07:08:35.776272 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:1105 Transmitter:0}
07:08:38.339881 5000C0FF73005159 153 0 0 0 0 msg.ID=0
07:08:38.339962 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:695 Transmitter:0}
07:08:40.901697 8000C01D1B00B93F 154 0 0 0 0 msg.ID=0
07:08:40.901733 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:1037 Transmitter:0}
07:08:43.463501 7000A8960380246B 155 0 0 0 0 msg.ID=0
07:08:43.463523 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:588 Transmitter:0}
07:08:46.027161 E000A3800300949B 156 0 0 0 0 msg.ID=0
07:08:46.027176 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:1283 Transmitter:0}
07:08:48.589229 500090FF73002462 157 0 0 0 0 msg.ID=0
07:08:48.589258 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:1205 Transmitter:0}
07:08:51.151007 8000921D1900470E 158 0 0 0 0 msg.ID=0
07:08:51.151020 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:1126 Transmitter:0}
07:08:53.715043 300092FFC1807FF5 159 0 0 0 0 msg.ID=0
07:08:53.715059 Hop: {ChannelIdx:5 ChannelFreq:904928090 FreqError:895 Transmitter:0}
07:08:56.277012 E00092800100A8A4 160 0 0 0 0 msg.ID=0
07:08:56.277038 Hop: {ChannelIdx:27 ChannelFreq:915966601 FreqError:1262 Transmitter:0}
07:08:58.838873 500092FF7100AF68 161 0 0 0 0 msg.ID=0
07:08:58.838887 Hop: {ChannelIdx:38 ChannelFreq:921485856 FreqError:513 Transmitter:0}
07:09:01.764500 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0]
07:09:01.764553 Hop: {ChannelIdx:10 ChannelFreq:907436843 FreqError:1214 Transmitter:0}
07:09:03.964468 9000920001481FAE 162 0 0 0 0 msg.ID=0
07:09:03.964485 Hop: {ChannelIdx:49 ChannelFreq:927005112 FreqError:790 Transmitter:0}
07:09:06.526365 E000918001003378 163 0 0 0 0 msg.ID=0
07:09:06.526380 Hop: {ChannelIdx:21 ChannelFreq:912956099 FreqError:783 Transmitter:0}
07:09:09.090201 500091FF730052D6 164 0 0 0 0 msg.ID=0
07:09:09.090255 Hop: {ChannelIdx:2 ChannelFreq:903422839 FreqError:732 Transmitter:0}
07:09:11.652163 8000911D2B00BF25 165 0 0 0 0 msg.ID=0
07:09:11.652218 Hop: {ChannelIdx:30 ChannelFreq:917471852 FreqError:981 Transmitter:0}
07:09:14.213944 A000917C3B002505 166 0 0 0 0 msg.ID=0
07:09:14.213969 Hop: {ChannelIdx:42 ChannelFreq:923492858 FreqError:974 Transmitter:0}
07:09:16.777873 E00092800100A8A4 167 0 0 0 0 msg.ID=0
07:09:16.777894 Hop: {ChannelIdx:14 ChannelFreq:909443845 FreqError:1106 Transmitter:0}
07:09:19.339906 50008DFF71006021 168 0 0 0 0 msg.ID=0
07:09:19.339967 Hop: {ChannelIdx:48 ChannelFreq:926503361 FreqError:1497 Transmitter:0}
07:09:21.901670 8000981D29002A30 169 0 0 0 0 msg.ID=0
07:09:21.901684 Hop: {ChannelIdx:7 ChannelFreq:905931591 FreqError:1113 Transmitter:0}
07:09:24.465420 2000A693818060AF 170 0 0 0 0 msg.ID=0
07:09:24.465448 Hop: {ChannelIdx:24 ChannelFreq:914461350 FreqError:989 Transmitter:0}
07:09:27.027346 E000B08001007282 171 0 0 0 0 msg.ID=0
07:09:27.027376 Hop: {ChannelIdx:34 ChannelFreq:919478854 FreqError:631 Transmitter:0}
07:09:29.589374 5000A1FF710AB917 172 0 0 0 0 msg.ID=0
07:09:29.589426 Hop: {ChannelIdx:45 ChannelFreq:924998110 FreqError:617 Transmitter:0}
07:09:32.153452 8000A31D2B043E20 173 0 0 0 0 msg.ID=0
07:09:32.153529 Hop: {ChannelIdx:1 ChannelFreq:902921088 FreqError:777 Transmitter:0}
07:09:34.715183 700097964186D704 174 0 0 0 0 msg.ID=0
07:09:34.715213 Hop: {ChannelIdx:17 ChannelFreq:910949096 FreqError:1003 Transmitter:0}
07:09:37.277115 E00098800303960E 175 0 0 0 0 msg.ID=0
07:09:37.277138 Hop: {ChannelIdx:39 ChannelFreq:921987607 FreqError:1026 Transmitter:0}
07:09:39.840730 500198FF71017DB3 176 0 0 0 0 msg.ID=0
07:09:39.840753 Hop: {ChannelIdx:26 ChannelFreq:915464850 FreqError:705 Transmitter:0}
07:09:42.402740 8000981D29064AF6 177 0 0 0 0 msg.ID=0
07:09:42.402817 Hop: {ChannelIdx:9 ChannelFreq:906935092 FreqError:990 Transmitter:0}
07:09:44.964518 300099FFC1835189 178 0 0 0 0 msg.ID=0
07:09:44.964550 Hop: {ChannelIdx:31 ChannelFreq:917973603 FreqError:629 Transmitter:0}
07:09:47.528310 E00099800100B6BB 179 0 0 0 0 msg.ID=0
07:09:47.528357 Hop: {ChannelIdx:50 ChannelFreq:927506862 FreqError:958 Transmitter:0}
07:09:50.090138 500099FF7100B177 180 0 0 0 0 msg.ID=0
07:09:50.090165 Hop: {ChannelIdx:37 ChannelFreq:920984106 FreqError:1316 Transmitter:0}
07:09:52.651927 8000991D39005FF7 181 0 0 0 0 msg.ID=0
07:09:52.651941 Hop: {ChannelIdx:12 ChannelFreq:908440344 FreqError:463 Transmitter:0}
07:09:55.216232 9000990101096E64 182 0 0 0 0 msg.ID=0
07:09:55.216285 Hop: {ChannelIdx:20 ChannelFreq:912454348 FreqError:616 Transmitter:0}
07:09:57.777993 E0009780010014E1 183 0 0 0 0 msg.ID=0
07:09:57.778010 Hop: {ChannelIdx:33 ChannelFreq:918977104 FreqError:848 Transmitter:0}
07:10:00.339839 500092FF7300C90A 184 0 0 0 0 msg.ID=0
07:10:00.339854 Hop: {ChannelIdx:4 ChannelFreq:904426340 FreqError:814 Transmitter:0}
07:10:02.901800 8000921D3B00278A 185 0 0 0 0 msg.ID=0
07:10:02.901827 Hop: {ChannelIdx:43 ChannelFreq:923994609 FreqError:788 Transmitter:0}
07:10:05.465495 A000937A39001CAF 186 0 0 0 0 msg.ID=0
07:10:05.465537 Hop: {ChannelIdx:28 ChannelFreq:916468351 FreqError:1172 Transmitter:0}
07:10:08.027392 E00093800100DE10 187 0 0 0 0 msg.ID=0
07:10:08.027412 Hop: {ChannelIdx:15 ChannelFreq:909945595 FreqError:1082 Transmitter:0}
07:10:10.589319 500093FF7100D9DC 188 0 0 0 0 msg.ID=0
07:10:10.589356 Hop: {ChannelIdx:35 ChannelFreq:919980605 FreqError:1030 Transmitter:0}
07:10:13.153335 8000931D3900375C 189 0 0 0 0 msg.ID=0
07:10:13.153348 Hop: {ChannelIdx:6 ChannelFreq:905429841 FreqError:816 Transmitter:0}
07:10:15.714971 20009394C180785F 190 0 0 0 0 msg.ID=0
07:10:15.715029 Hop: {ChannelIdx:40 ChannelFreq:922489357 FreqError:505 Transmitter:0}
07:10:18.276820 E00093800100DE10 191 0 0 0 0 msg.ID=0
07:10:18.276867 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:849 Transmitter:0}
07:10:20.840718 500093FF7100D9DC 192 0 0 0 0 msg.ID=0
07:10:20.840736 Hop: {ChannelIdx:23 ChannelFreq:913959599 FreqError:983 Transmitter:0}
07:10:23.402629 8000931D3900375C 193 0 0 0 0 msg.ID=0
07:10:23.402643 Hop: {ChannelIdx:46 ChannelFreq:925499860 FreqError:948 Transmitter:0}
07:10:25.964658 7000A89683803FF3 194 0 0 0 0 msg.ID=0
07:10:25.964682 Hop: {ChannelIdx:18 ChannelFreq:911450847 FreqError:1234 Transmitter:0}
07:10:28.528317 E000A88003008A84 195 0 0 0 0 msg.ID=0
07:10:28.528350 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:1159 Transmitter:0}
07:10:31.090290 5000A8FF73008D48 196 0 0 0 0 msg.ID=0
07:10:31.090336 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:1251 Transmitter:0}
07:10:33.652092 8000A61D3900A7F0 197 0 0 0 0 msg.ID=0
07:10:33.652115 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:1015 Transmitter:0}
07:10:36.216074 30009CFFC180DDAF 198 0 0 0 0 msg.ID=0
07:10:36.216103 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:1671 Transmitter:0}
07:10:38.778096 E0009B8003003DB1 199 0 0 0 0 msg.ID=0
07:10:38.778139 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:1212 Transmitter:0}
07:10:41.339986 5000B3FF7100EE92 200 0 0 0 0 msg.ID=0
07:10:41.340019 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:1495 Transmitter:0}
07:10:43.903534 80009C1D3B0085D0 201 0 0 0 0 msg.ID=0
07:10:43.903564 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:1096 Transmitter:0}
07:10:46.829163 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0]
07:10:46.829215 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:1293 Transmitter:0}
07:10:49.393211 ID:0 packet missed (2), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0]
07:10:49.393268 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:1126 Transmitter:0}
07:10:51.591249 500099FF73049791 202 0 0 0 0 msg.ID=0
07:10:51.591296 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:1287 Transmitter:0}
07:10:54.153020 80009A1D3B07D2AE 203 0 0 0 0 msg.ID=0
07:10:54.153051 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:887 Transmitter:0}
07:10:56.714963 A00098793B065D44 204 0 0 0 0 msg.ID=0
07:10:56.714986 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:1373 Transmitter:0}
07:10:59.279074 E000A1800308F8FB 205 0 0 0 0 msg.ID=0
07:10:59.279128 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:1333 Transmitter:0}
07:11:01.840846 500097FF710453A9 206 0 0 0 0 msg.ID=0
07:11:01.840868 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:1480 Transmitter:0}
07:11:04.402662 8000981D39031920 207 0 0 0 0 msg.ID=0
07:11:04.402685 Hop: {ChannelIdx:5 ChannelFreq:904928090 FreqError:1054 Transmitter:0}
07:11:06.966436 20009E960187490A 208 0 0 0 0 msg.ID=0
07:11:06.966458 Hop: {ChannelIdx:27 ChannelFreq:915966601 FreqError:1374 Transmitter:0}
07:11:09.528248 E000A08003066F81 209 0 0 0 0 msg.ID=0
07:11:09.528286 Hop: {ChannelIdx:38 ChannelFreq:921485856 FreqError:513 Transmitter:0}
07:11:12.090133 500098FF7304E125 210 0 0 0 0 msg.ID=0
07:11:12.090146 Hop: {ChannelIdx:10 ChannelFreq:907436843 FreqError:1493 Transmitter:0}
07:11:14.654268 8000991D3909CEDE 211 0 0 0 0 msg.ID=0
07:11:14.654289 Hop: {ChannelIdx:49 ChannelFreq:927005112 FreqError:1049 Transmitter:0}
07:11:17.216137 70009B9801886F35 212 0 0 0 0 msg.ID=0
07:11:17.216151 Hop: {ChannelIdx:21 ChannelFreq:912956099 FreqError:1215 Transmitter:0}
07:11:19.778112 E000A080010719C2 213 0 0 0 0 msg.ID=0
07:11:19.778136 Hop: {ChannelIdx:2 ChannelFreq:903422839 FreqError:795 Transmitter:0}
07:11:22.341713 500097FF710453A9 214 0 0 0 0 msg.ID=0
07:11:22.341728 Hop: {ChannelIdx:30 ChannelFreq:917471852 FreqError:914 Transmitter:0}
07:11:24.903819 8000971D3905AD08 215 0 0 0 0 msg.ID=0
07:11:24.903901 Hop: {ChannelIdx:42 ChannelFreq:923492858 FreqError:1089 Transmitter:0}
07:11:27.465643 300097FFC183F3D3 216 0 0 0 0 msg.ID=0
07:11:27.465681 Hop: {ChannelIdx:14 ChannelFreq:909443845 FreqError:1010 Transmitter:0}
07:11:30.027385 E0008C80010541FC 217 0 0 0 0 msg.ID=0
07:11:30.027400 Hop: {ChannelIdx:48 ChannelFreq:926503361 FreqError:1424 Transmitter:0}
07:11:32.591092 500097FF7100132D 218 0 0 0 0 msg.ID=0
07:11:32.591107 Hop: {ChannelIdx:7 ChannelFreq:905931591 FreqError:1391 Transmitter:0}
07:11:35.153054 80008B1D4B0F36EC 219 0 0 0 0 msg.ID=0
07:11:35.153078 Hop: {ChannelIdx:24 ChannelFreq:914461350 FreqError:1001 Transmitter:0}
07:11:37.714970 90008C01632980AC 220 0 0 0 0 msg.ID=0
07:11:37.714990 Hop: {ChannelIdx:34 ChannelFreq:919478854 FreqError:832 Transmitter:0}
07:11:40.278910 E0008C8003034758 221 0 0 0 0 msg.ID=0
07:11:40.278924 Hop: {ChannelIdx:45 ChannelFreq:924998110 FreqError:590 Transmitter:0}
07:11:42.840836 50008CFF730070F7 222 0 0 0 0 msg.ID=0
07:11:42.840851 Hop: {ChannelIdx:1 ChannelFreq:902921088 FreqError:802 Transmitter:0}
07:11:45.402745 80008A1D4900D7D5 223 0 0 0 0 msg.ID=0
07:11:45.402759 Hop: {ChannelIdx:17 ChannelFreq:910949096 FreqError:1090 Transmitter:0}
07:11:47.966395 A00089753B0025F0 224 0 0 0 0 msg.ID=0
07:11:47.966411 Hop: {ChannelIdx:39 ChannelFreq:921987607 FreqError:1156 Transmitter:0}
07:11:50.528356 E0008A80010036C0 225 0 0 0 0 msg.ID=0
07:11:50.528370 Hop: {ChannelIdx:26 ChannelFreq:915464850 FreqError:1206 Transmitter:0}
07:11:53.090249 50008AFF7300576E 226 0 0 0 0 msg.ID=0
07:11:53.090263 Hop: {ChannelIdx:9 ChannelFreq:906935092 FreqError:981 Transmitter:0}
07:11:55.653971 8000881D4B005CDF 227 0 0 0 0 msg.ID=0
07:11:55.653986 Hop: {ChannelIdx:31 ChannelFreq:917973603 FreqError:1037 Transmitter:0}
07:11:58.215824 200088974380594D 228 0 0 0 0 msg.ID=0
07:11:58.215840 Hop: {ChannelIdx:50 ChannelFreq:927506862 FreqError:1308 Transmitter:0}
07:12:00.777750 E00089800300CB7E 229 0 0 0 0 msg.ID=0
07:12:00.777770 Hop: {ChannelIdx:37 ChannelFreq:920984106 FreqError:1698 Transmitter:0}
07:12:03.341756 50008FFF71008D49 230 0 0 0 0 msg.ID=0
07:12:03.341771 Hop: {ChannelIdx:12 ChannelFreq:908440344 FreqError:737 Transmitter:0}
07:12:05.903650 80008F1D4B000DF2 231 0 0 0 0 msg.ID=0
07:12:05.903664 Hop: {ChannelIdx:20 ChannelFreq:912454348 FreqError:783 Transmitter:0}
07:12:08.465604 70009099018F36FD 232 0 0 0 0 msg.ID=0
07:12:08.465619 Hop: {ChannelIdx:33 ChannelFreq:918977104 FreqError:847 Transmitter:0}
07:12:11.391254 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0]
07:12:11.391295 Hop: {ChannelIdx:4 ChannelFreq:904426340 FreqError:932 Transmitter:0}
07:12:13.591254 500090FF71037263 233 0 0 0 0 msg.ID=0
07:12:13.591281 Hop: {ChannelIdx:43 ChannelFreq:923994609 FreqError:1202 Transmitter:0}
07:12:16.153098 8000901D4900A4D9 234 0 0 0 0 msg.ID=0
07:12:16.153111 Hop: {ChannelIdx:28 ChannelFreq:916468351 FreqError:1025 Transmitter:0}
07:12:18.717233 300090FFC180929D 235 0 0 0 0 msg.ID=0
07:12:18.717263 Hop: {ChannelIdx:15 ChannelFreq:909945595 FreqError:1395 Transmitter:0}
07:12:21.278981 E000918001003378 236 0 0 0 0 msg.ID=0
07:12:21.278996 Hop: {ChannelIdx:35 ChannelFreq:919980605 FreqError:1220 Transmitter:0}
07:12:23.840916 500091FF710034B4 237 0 0 0 0 msg.ID=0
07:12:23.840933 Hop: {ChannelIdx:6 ChannelFreq:905429841 FreqError:1172 Transmitter:0}
07:12:26.404792 8000911D5900D11E 238 0 0 0 0 msg.ID=0
07:12:26.404841 Hop: {ChannelIdx:40 ChannelFreq:922489357 FreqError:484 Transmitter:0}
07:12:29.330270 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0]
07:12:29.330344 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:1198 Transmitter:0}
07:12:31.528580 E0008D80010067ED 239 0 0 0 0 msg.ID=0
07:12:31.528635 Hop: {ChannelIdx:23 ChannelFreq:913959599 FreqError:1229 Transmitter:0}
07:12:34.454131 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0]
07:12:34.454205 Hop: {ChannelIdx:46 ChannelFreq:925499860 FreqError:1294 Transmitter:0}
07:12:36.654067 80008D1D5900858B 240 0 0 0 0 msg.ID=0
07:12:36.654100 Hop: {ChannelIdx:18 ChannelFreq:911450847 FreqError:1209 Transmitter:0}
07:12:39.215905 A0008D763900D033 241 0 0 0 0 msg.ID=0
07:12:39.215924 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:1113 Transmitter:0}
07:12:41.780178 E0008D80010067ED 242 0 0 0 0 msg.ID=0
07:12:41.780254 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:1452 Transmitter:0}
07:12:44.341852 50008BFF730021DA 243 0 0 0 0 msg.ID=0
07:12:44.341868 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:1366 Transmitter:0}
07:12:46.903731 80008A1D5900D4A6 244 0 0 0 0 msg.ID=0
07:12:46.903750 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:1642 Transmitter:0}
07:12:49.465689 20008B98838F091B 245 0 0 0 0 msg.ID=0
07:12:49.465705 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:1257 Transmitter:0}
07:12:49.467431 duplicate packet: 20008B98838F091B
07:12:52.029414 E000758001061DA5 246 0 0 0 0 msg.ID=0
07:12:52.029449 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:1518 Transmitter:0}
07:12:54.591218 500096FF710355FA 247 0 0 0 0 msg.ID=0
07:12:54.591232 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:1096 Transmitter:0}
07:12:57.516902 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0]
07:12:57.516962 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:1293 Transmitter:0}
07:13:00.080937 ID:0 packet missed (2), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 0 0 2 0 3 0 0 0 0 0 0 0 0 0 0]
07:13:00.080984 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:1112 Transmitter:0}
07:13:02.642773 ID:0 packet missed (3), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0]
07:13:02.642799 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:1552 Transmitter:0}
07:13:04.840650 500095FF7302B865 248 0 0 0 0 msg.ID=0
07:13:04.840671 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:901 Transmitter:0}
07:13:07.404785 8000951D5B052D28 249 0 0 0 0 msg.ID=0
07:13:07.404822 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:1740 Transmitter:0}
07:13:09.966660 300095FFC38378D9 250 0 0 0 0 msg.ID=0
07:13:09.966686 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:1412 Transmitter:0}
07:13:12.528582 E000958003009FEB 251 0 0 0 0 msg.ID=0
07:13:12.528599 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:1305 Transmitter:0}
07:13:15.092266 500094FF710088F1 252 0 0 0 0 msg.ID=0
07:13:15.092292 Hop: {ChannelIdx:5 ChannelFreq:904928090 FreqError:1054 Transmitter:0}
07:13:17.654178 8000941D59006D5B 253 0 0 0 0 msg.ID=0
07:13:17.654212 Hop: {ChannelIdx:27 ChannelFreq:915966601 FreqError:1182 Transmitter:0}
07:13:20.216001 9000940101491F26 254 0 0 0 0 msg.ID=0
07:13:20.216016 Hop: {ChannelIdx:38 ChannelFreq:921485856 FreqError:646 Transmitter:0}
07:13:23.142021 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 0 3 0 3 0 0 0 0 0 0 0 0 0 0]
07:13:23.142079 Hop: {ChannelIdx:10 ChannelFreq:907436843 FreqError:1822 Transmitter:0}
07:13:25.342036 500094FF710088F1 255 0 0 0 0 msg.ID=0
07:13:25.342086 Hop: {ChannelIdx:49 ChannelFreq:927005112 FreqError:1114 Transmitter:0}
07:13:27.903823 8000941D59006D5B 256 0 0 0 0 msg.ID=0
07:13:27.903839 Hop: {ChannelIdx:21 ChannelFreq:912956099 FreqError:1294 Transmitter:0}
07:13:30.467500 A000947439005683 257 0 0 0 0 msg.ID=0
07:13:30.467527 Hop: {ChannelIdx:2 ChannelFreq:903422839 FreqError:926 Transmitter:0}
07:13:33.029475 E000948001008F3D 258 0 0 0 0 msg.ID=0
07:13:33.029490 Hop: {ChannelIdx:30 ChannelFreq:917471852 FreqError:801 Transmitter:0}
07:13:35.591390 500094FF710088F1 259 0 0 0 0 msg.ID=0
07:13:35.591417 Hop: {ChannelIdx:42 ChannelFreq:923492858 FreqError:1305 Transmitter:0}
07:13:38.155241 8000941D690068CE 260 0 0 0 0 msg.ID=0
07:13:38.155314 Hop: {ChannelIdx:14 ChannelFreq:909443845 FreqError:1425 Transmitter:0}
07:13:40.717124 20009699C180864B 261 0 0 0 0 msg.ID=0
07:13:40.717181 Hop: {ChannelIdx:48 ChannelFreq:926503361 FreqError:1429 Transmitter:0}
07:13:43.278877 E000968003000437 262 0 0 0 0 msg.ID=0
07:13:43.278891 Hop: {ChannelIdx:7 ChannelFreq:905931591 FreqError:1661 Transmitter:0}
07:13:45.842871 500096FF730003FB 263 0 0 0 0 msg.ID=0
07:13:45.842895 Hop: {ChannelIdx:24 ChannelFreq:914461350 FreqError:1259 Transmitter:0}
07:13:48.404868 8000961D5B00E651 264 0 0 0 0 msg.ID=0
07:13:48.404924 Hop: {ChannelIdx:34 ChannelFreq:919478854 FreqError:912 Transmitter:0}
07:13:50.966731 7000969BC380FEDD 265 0 0 0 0 msg.ID=0
07:13:50.966753 Hop: {ChannelIdx:45 ChannelFreq:924998110 FreqError:1129 Transmitter:0}
07:13:53.530402 E000968003000437 266 0 0 0 0 msg.ID=0
07:13:53.530418 Hop: {ChannelIdx:1 ChannelFreq:902921088 FreqError:1129 Transmitter:0}
07:13:56.092346 50019AFF7301F6B9 267 0 0 0 0 msg.ID=0
07:13:56.092384 Hop: {ChannelIdx:17 ChannelFreq:910949096 FreqError:1298 Transmitter:0}
07:13:58.654175 8000A71D6906BF3D 268 0 0 0 0 msg.ID=0
07:13:58.654201 Hop: {ChannelIdx:39 ChannelFreq:921987607 FreqError:1119 Transmitter:0}
07:14:01.218174 3000A1FFC3839EC1 269 0 0 0 0 msg.ID=0
07:14:01.218204 Hop: {ChannelIdx:26 ChannelFreq:915464850 FreqError:1509 Transmitter:0}
07:14:03.780125 E0009D8001007C4A 270 0 0 0 0 msg.ID=0
07:14:03.780142 Hop: {ChannelIdx:9 ChannelFreq:906935092 FreqError:1397 Transmitter:0}
07:14:06.342163 500098FF7100C7C3 271 0 0 0 0 msg.ID=0
07:14:06.342212 Hop: {ChannelIdx:31 ChannelFreq:917973603 FreqError:1154 Transmitter:0}
07:14:08.905787 8000941D6B000EAC 272 0 0 0 0 msg.ID=0
07:14:08.905823 Hop: {ChannelIdx:50 ChannelFreq:927506862 FreqError:1672 Transmitter:0}
07:14:11.467613 9000950103094734 273 0 0 0 0 msg.ID=0
07:14:11.467641 Hop: {ChannelIdx:37 ChannelFreq:920984106 FreqError:1541 Transmitter:0}
07:14:14.393318 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 1 3 0 3 0 0 0 0 0 0 0 0 0 0]
07:14:14.393458 Hop: {ChannelIdx:12 ChannelFreq:908440344 FreqError:1137 Transmitter:0}
07:14:16.957167 ID:0 packet missed (2), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 1 3 0 3 0 0 0 0 0 0 0 0 0 0]
07:14:16.957203 Hop: {ChannelIdx:20 ChannelFreq:912454348 FreqError:1203 Transmitter:0}
07:14:19.519189 ID:0 packet missed (3), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 2 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 1 3 0 3 0 0 0 0 0 0 0 0 0 0]
07:14:19.519225 Hop: {ChannelIdx:33 ChannelFreq:918977104 FreqError:847 Transmitter:0}
07:14:21.717023 A00094723900E423 274 0 0 0 0 msg.ID=0
07:14:21.717041 Hop: {ChannelIdx:4 ChannelFreq:904426340 FreqError:1066 Transmitter:0}
07:14:24.278907 E000798001003251 275 0 0 0 0 msg.ID=0
07:14:24.278925 Hop: {ChannelIdx:43 ChannelFreq:923994609 FreqError:1403 Transmitter:0}
07:14:26.842998 500099FF7100B177 276 0 0 0 0 msg.ID=0
07:14:26.843022 Hop: {ChannelIdx:28 ChannelFreq:916468351 FreqError:1209 Transmitter:0}
07:14:29.404816 8000991D69005148 277 0 0 0 0 msg.ID=0
07:14:29.404831 Hop: {ChannelIdx:15 ChannelFreq:909945595 FreqError:1482 Transmitter:0}
07:14:31.966813 20009A9B4180BC81 278 0 0 0 0 msg.ID=0
07:14:31.966832 Hop: {ChannelIdx:35 ChannelFreq:919980605 FreqError:1420 Transmitter:0}
07:14:34.530422 E000948001008F3D 279 0 0 0 0 msg.ID=0
07:14:34.530452 Hop: {ChannelIdx:6 ChannelFreq:905429841 FreqError:1339 Transmitter:0}
07:14:37.092338 500094FF710088F1 280 0 0 0 0 msg.ID=0
07:14:37.092364 Hop: {ChannelIdx:40 ChannelFreq:922489357 FreqError:484 Transmitter:0}
07:14:39.654335 8000861D690F6FEE 281 0 0 0 0 msg.ID=0
07:14:39.654357 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:1494 Transmitter:0}
07:14:42.218008 7000879CC38546FB 282 0 0 0 0 msg.ID=0
07:14:42.218031 Hop: {ChannelIdx:23 ChannelFreq:913959599 FreqError:1229 Transmitter:0}
07:14:44.779938 E0008C8003034758 283 0 0 0 0 msg.ID=0
07:14:44.779964 Hop: {ChannelIdx:46 ChannelFreq:925499860 FreqError:1333 Transmitter:0}
07:14:47.341780 500096FF7107157E 284 0 0 0 0 msg.ID=0
07:14:47.341805 Hop: {ChannelIdx:18 ChannelFreq:911450847 FreqError:1286 Transmitter:0}
07:14:49.905743 8000AB1D6903A0AA 285 0 0 0 0 msg.ID=0
07:14:49.905760 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:1428 Transmitter:0}
07:14:52.467748 3000ACFFC180F146 286 0 0 0 0 msg.ID=0
07:14:52.467791 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:1675 Transmitter:0}
07:14:55.029606 E000AC8003004075 287 0 0 0 0 msg.ID=0
07:14:55.029629 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:1470 Transmitter:0}
07:14:57.593377 5000ACFF730047B9 288 0 0 0 0 msg.ID=0
07:14:57.593412 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:1594 Transmitter:0}
07:15:00.155253 8000AC1D6B00A786 289 0 0 0 0 msg.ID=0
07:15:00.155289 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:1272 Transmitter:0}
07:15:02.717121 9000AC0103198A9B 290 0 0 0 0 msg.ID=0
07:15:02.717143 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:1862 Transmitter:0}
07:15:05.281282 E000AC8001002617 291 0 0 0 0 msg.ID=0
07:15:05.281329 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:1096 Transmitter:0}
07:15:07.843149 5000ABFF73001694 292 0 0 0 0 msg.ID=0
07:15:07.843196 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:1293 Transmitter:0}
07:15:10.770397 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 0 0 2 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 1 3 0 3 0 0 0 0 0 0 0 0 0 0]
07:15:10.770438 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:1112 Transmitter:0}
07:15:12.968839 A00097743B00AB3D 293 0 0 0 0 msg.ID=0
07:15:12.968913 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:1555 Transmitter:0}
07:15:15.530517 E000978003007283 294 0 0 0 0 msg.ID=0
07:15:15.530534 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:953 Transmitter:0}
07:15:18.092465 500099FF7100B177 295 0 0 0 0 msg.ID=0
07:15:18.092490 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:1797 Transmitter:0}
07:15:20.656088 8000981D6B00419E 296 0 0 0 0 msg.ID=0
07:15:20.656102 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:1622 Transmitter:0}
07:15:23.218057 20008E9C83809871 297 0 0 0 0 msg.ID=0
07:15:23.218074 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:1436 Transmitter:0}
07:15:25.779954 E000948001008F3D 298 0 0 0 0 msg.ID=0
07:15:25.779970 Hop: {ChannelIdx:5 ChannelFreq:904928090 FreqError:1256 Transmitter:0}
07:15:28.343926 500094FF710088F1 299 0 0 0 0 msg.ID=0
07:15:28.343952 Hop: {ChannelIdx:27 ChannelFreq:915966601 FreqError:1214 Transmitter:0}
07:15:30.905981 8000841D69007369 300 0 0 0 0 msg.ID=0
07:15:30.906008 Hop: {ChannelIdx:38 ChannelFreq:921485856 FreqError:646 Transmitter:0}
07:15:33.831441 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 0 0 2 0 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 1 4 0 3 0 0 0 0 0 0 0 0 0 0]
07:15:33.831491 Hop: {ChannelIdx:10 ChannelFreq:907436843 FreqError:1836 Transmitter:0}
07:15:36.029655 E0008B80010FB19B 301 0 0 0 0 msg.ID=0
07:15:36.029676 Hop: {ChannelIdx:49 ChannelFreq:927005112 FreqError:1283 Transmitter:0}
07:15:36.031453 duplicate packet: E0008B80010FB19B
07:15:38.593418 500094FF7106E837 302 0 0 0 0 msg.ID=0
07:15:38.593462 Hop: {ChannelIdx:21 ChannelFreq:912956099 FreqError:1227 Transmitter:0}
07:15:41.518957 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 0 0 2 1 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 1 4 0 3 0 0 0 0 0 0 0 0 0 0]
07:15:41.518988 Hop: {ChannelIdx:2 ChannelFreq:903422839 FreqError:1111 Transmitter:0}
07:15:43.717148 300089FFC1834A2E 303 0 0 0 0 msg.ID=0
07:15:43.717164 Hop: {ChannelIdx:30 ChannelFreq:917471852 FreqError:1005 Transmitter:0}
07:15:46.281128 E0008B8003002616 304 0 0 0 0 msg.ID=0
07:15:46.281142 Hop: {ChannelIdx:42 ChannelFreq:923492858 FreqError:1534 Transmitter:0}
07:15:48.842825 50008CFF730070F7 305 0 0 0 0 msg.ID=0
07:15:48.842850 Hop: {ChannelIdx:14 ChannelFreq:909443845 FreqError:1345 Transmitter:0}
07:15:51.768768 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 3 4 1 0 0 0 0 0 2 1 0 1 0 0 0 0 0 0 0 1 2 1 0 0 1 1 4 0 3 0 0 0 0 0 0 0 0 0 0]
07:15:51.768822 Hop: {ChannelIdx:48 ChannelFreq:926503361 FreqError:1500 Transmitter:0}
07:15:53.968661 90009A010129D1DA 306 0 0 0 0 msg.ID=0
07:15:53.968678 Hop: {ChannelIdx:7 ChannelFreq:905931591 FreqError:1926 Transmitter:0}
07:15:56.530574 E0009E80030081F4 307 0 0 0 0 msg.ID=0
07:15:56.530590 Hop: {ChannelIdx:24 ChannelFreq:914461350 FreqError:1235 Transmitter:0}
07:15:59.092490 50009EFF73008638 308 0 0 0 0 msg.ID=0
07:15:59.092510 Hop: {ChannelIdx:34 ChannelFreq:919478854 FreqError:1112 Transmitter:0}
07:16:01.656275 80009E1D6B0BD76C 309 0 0 0 0 msg.ID=0
07:16:01.656306 Hop: {ChannelIdx:45 ChannelFreq:924998110 FreqError:1312 Transmitter:0}
07:16:04.218082 A0009E713B04F33E 310 0 0 0 0 msg.ID=0
07:16:04.218096 Hop: {ChannelIdx:1 ChannelFreq:902921088 FreqError:1354 Transmitter:0}
07:16:06.780113 E0009B8001005BD3 311 0 0 0 0 msg.ID=0
07:16:06.780156 Hop: {ChannelIdx:17 ChannelFreq:910949096 FreqError:1454 Transmitter:0}
07:16:09.344016 500090FF71004200 312 0 0 0 0 msg.ID=0
07:16:09.344034 Hop: {ChannelIdx:39 ChannelFreq:921987607 FreqError:1223 Transmitter:0}
07:16:11.905912 8000961D6B00E3C4 313 0 0 0 0 msg.ID=0
07:16:11.905925 Hop: {ChannelIdx:26 ChannelFreq:915464850 FreqError:1520 Transmitter:0}
07:16:14.467971 2000979E43800895 314 0 0 0 0 msg.ID=0
07:16:14.467991 Hop: {ChannelIdx:9 ChannelFreq:906935092 FreqError:1399 Transmitter:0}
07:16:17.031562 E0009780010014E1 315 0 0 0 0 msg.ID=0
07:16:17.031595 Hop: {ChannelIdx:31 ChannelFreq:917973603 FreqError:1368 Transmitter:0}
07:16:19.957205 ID:0 packet missed (1), missed per freq: [0 0 0 0 0 0 0 0 0 0 0 0 3 4 1 0 0 0 0 0 2 1 0 1 0 0 0 0 0 0 0 2 2 1 0 0 1 1 4 0 3 0 0 0 0 0 0 0 0 0 0]
07:16:19.957240 Hop: {ChannelIdx:50 ChannelFreq:927506862 FreqError:1672 Transmitter:0}
07:16:22.155318 8000981D7B0042ED 316 0 0 0 0 msg.ID=0
07:16:22.155333 Hop: {ChannelIdx:37 ChannelFreq:920984106 FreqError:1541 Transmitter:0}
07:16:24.719129 7000848743802588 317 0 0 0 0 msg.ID=0
07:16:24.719163 Hop: {ChannelIdx:12 ChannelFreq:908440344 FreqError:1137 Transmitter:0}
07:16:27.280955 E00084800300F2F8 318 0 0 0 0 msg.ID=0
07:16:27.280975 Hop: {ChannelIdx:20 ChannelFreq:912454348 FreqError:1203 Transmitter:0}
07:16:29.842870 500098FF7100C7C3 319 0 0 0 0 msg.ID=0
07:16:29.842905 Hop: {ChannelIdx:33 ChannelFreq:918977104 FreqError:937 Transmitter:0}
07:16:32.406847 8000921D7B002A46 320 0 0 0 0 msg.ID=0
07:16:32.406865 Hop: {ChannelIdx:4 ChannelFreq:904426340 FreqError:1096 Transmitter:0}
07:16:34.968752 30008FFFC1805DD4 321 0 0 0 0 msg.ID=0
07:16:34.968765 Hop: {ChannelIdx:43 ChannelFreq:923994609 FreqError:1683 Transmitter:0}
07:16:37.530802 E0009080010045CC 322 0 0 0 0 msg.ID=0
07:16:37.530832 Hop: {ChannelIdx:28 ChannelFreq:916468351 FreqError:1192 Transmitter:0}
07:16:40.094348 500090FF71004200 323 0 0 0 0 msg.ID=0
07:16:40.094379 Hop: {ChannelIdx:15 ChannelFreq:909945595 FreqError:1303 Transmitter:0}
07:16:42.656252 8000901D7900A14C 324 0 0 0 0 msg.ID=0
07:16:42.656267 Hop: {ChannelIdx:35 ChannelFreq:919980605 FreqError:1567 Transmitter:0}
07:16:45.218195 900090010139AB40 325 0 0 0 0 msg.ID=0
07:16:45.218209 Hop: {ChannelIdx:6 ChannelFreq:905429841 FreqError:1492 Transmitter:0}
07:16:47.782285 E0009080010045CC 326 0 0 0 0 msg.ID=0
07:16:47.782319 Hop: {ChannelIdx:40 ChannelFreq:922489357 FreqError:1072 Transmitter:0}
07:16:50.344148 500090FF71004200 327 0 0 0 0 msg.ID=0
07:16:50.344161 Hop: {ChannelIdx:11 ChannelFreq:907938593 FreqError:1837 Transmitter:0}
07:16:52.906110 8000901D6900A23F 328 0 0 0 0 msg.ID=0
07:16:52.906131 Hop: {ChannelIdx:23 ChannelFreq:913959599 FreqError:1354 Transmitter:0}
07:16:55.469741 A000917239005866 329 0 0 0 0 msg.ID=0
07:16:55.469761 Hop: {ChannelIdx:46 ChannelFreq:925499860 FreqError:1713 Transmitter:0}
07:16:58.031732 E00093800100DE10 330 0 0 0 0 msg.ID=0
07:16:58.031745 Hop: {ChannelIdx:18 ChannelFreq:911450847 FreqError:1439 Transmitter:0}
07:17:00.593497 500093FF7100D9DC 331 0 0 0 0 msg.ID=0
07:17:00.593519 Hop: {ChannelIdx:0 ChannelFreq:902419338 FreqError:1446 Transmitter:0}
07:17:03.155428 8000931D79003A90 332 0 0 0 0 msg.ID=0
07:17:03.155444 Hop: {ChannelIdx:19 ChannelFreq:911952597 FreqError:1837 Transmitter:0}
07:17:03.157130 duplicate packet: 8000931D79003A90
07:17:05.719096 2000939FC18088AE 333 0 0 0 0 msg.ID=0
07:17:05.719111 Hop: {ChannelIdx:41 ChannelFreq:922991108 FreqError:1606 Transmitter:0}
07:17:08.281035 E00093800100DE10 334 0 0 0 0 msg.ID=0
07:17:08.281055 Hop: {ChannelIdx:25 ChannelFreq:914963100 FreqError:1560 Transmitter:0}
07:17:10.842962 500093FF7100D9DC 335 0 0 0 0 msg.ID=0
07:17:10.842976 Hop: {ChannelIdx:8 ChannelFreq:906433342 FreqError:1429 Transmitter:0}
07:17:13.406917 8000931D79003A90 336 0 0 0 0 msg.ID=0
07:17:13.406933 Hop: {ChannelIdx:47 ChannelFreq:926001611 FreqError:1797 Transmitter:0}
07:17:15.968928 7000948681807929 337 0 0 0 0 msg.ID=0
07:17:15.968960 Hop: {ChannelIdx:32 ChannelFreq:918475353 FreqError:1280 Transmitter:0}
07:17:18.530805 E000948001008F3D 338 0 0 0 0 msg.ID=0
07:17:18.530826 Hop: {ChannelIdx:13 ChannelFreq:908942094 FreqError:1293 Transmitter:0}
07:17:21.094444 500094FF710088F1 339 0 0 0 0 msg.ID=0
07:17:21.094458 Hop: {ChannelIdx:36 ChannelFreq:920482355 FreqError:1248 Transmitter:0}
07:17:23.656456 8000941D79006BBD 340 0 0 0 0 msg.ID=0
07:17:23.656474 Hop: {ChannelIdx:22 ChannelFreq:913457849 FreqError:1225 Transmitter:0}
07:17:26.218300 300094FFC180586C 341 0 0 0 0 msg.ID=0
07:17:26.218326 Hop: {ChannelIdx:3 ChannelFreq:903924589 FreqError:1298 Transmitter:0}
07:17:28.781935 E000948001008F3D 342 0 0 0 0 msg.ID=0
07:17:28.781952 Hop: {ChannelIdx:29 ChannelFreq:916970102 FreqError:1950 Transmitter:0}
07:17:31.344044 500094FF710088F1 343 0 0 0 0 msg.ID=0
07:17:31.344091 Hop: {ChannelIdx:44 ChannelFreq:924496359 FreqError:1623 Transmitter:0}
07:17:33.905769 8000941D79006BBD 344 0 0 0 0 msg.ID=0
07:17:33.905788 Hop: {ChannelIdx:16 ChannelFreq:910447346 FreqError:1653 Transmitter:0}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment