Updated readme and changelog

pull/100/head
Konstantin Gründger 2021-06-06 12:01:37 +02:00
rodzic 0621307952
commit 3e7ec2d917
2 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -1,6 +1,10 @@
# CHANGELOG
# 1.2.0: - 2021-06-01
## unreleased
- client: Added peer IP to log messages
- parser: Added rainfall_1h and rainfall_24h to beacon_type 'position_weather'
## 1.2.0: - 2021-06-01
- parser: Added support for OGNSKY (safesky) beacons
- client: Replace bad characters with <20> instead of raising an exception (restore old behaviour with parameter ignore_decoding_error=False)

Wyświetl plik

@ -42,6 +42,8 @@ def process_beacon(raw_message):
print('Received {aprs_type}: {raw_message}'.format(**beacon))
except ParseError as e:
print('Error, {}'.format(e.message))
except NotImplementedError as e:
print('{}: {}'.format(e, raw_message))
client = AprsClient(aprs_user='N0CALL')
client.connect()