From 85cdeeaa3a69678eacc74f796a735f8a7386ecc7 Mon Sep 17 00:00:00 2001 From: "Eric D. Brown" Date: Sat, 27 Mar 2021 11:55:42 -0600 Subject: [PATCH] use SSID_1 to login to APRS --- ir-aprsisd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir-aprsisd b/ir-aprsisd index 7d433af..45ee1ee 100755 --- a/ir-aprsisd +++ b/ir-aprsisd @@ -26,7 +26,7 @@ from optparse import OptionParser #Name of our configuration file. -cf = "ir-aprsisd.cfg" +cf = "ir-aprsisd_edb.cfg" #Configuration conf = configparser.ConfigParser() @@ -108,7 +108,7 @@ urllib.request.install_opener(http) def reconnect(): global AIS while True: - AIS = aprslib.IS(conf['APRS']['SSID'],passwd=int(conf['APRS']['Password']),port=int(conf['APRS']['Port'])) + AIS = aprslib.IS(conf['APRS']['SSID_1'],passwd=int(conf['APRS']['Password']),port=int(conf['APRS']['Port'])) try: AIS.connect() break