Compare commits

...

2 Commits

Author SHA1 Message Date
Hemna 39a290383a update for 0.2.0 2023-01-09 20:44:55 -05:00
Hemna 9bf8321d15 Fixed pep8 failures 2023-01-09 20:41:16 -05:00
3 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,11 @@
CHANGES
=======
v0.2.0
------
* Fixed pep8 failures
* Update to aprsd 3.0.0 and include config options!
* don't dump the whole packet
* use Tx to send
* Working with pre 2.7.0

View File

@ -1,10 +1,7 @@
import logging
from oslo_config import cfg
from aprsd_weewx_plugin.conf import weewx
CONF = cfg.CONF
weewx.register_opts(CONF)

View File

@ -168,6 +168,7 @@ class WeewxMQTTThread(threads.APRSDThread):
_mqtt_host = None
_mqtt_port = None
client = None
def __init__(self, wx_queue, msg_queue):
super().__init__("WeewxMQTTThread")
self.msg_queue = msg_queue