Update install.sh

This commit is contained in:
RaspbianProyect by HP3ICC 2023-06-10 20:54:14 +00:00
parent 85465ea50d
commit 8c8103df16
1 changed files with 6 additions and 3 deletions

View File

@ -49,8 +49,8 @@ import time
callsign = "HP0XX-10" # Callsign
password = "12345" # aprspasscode (12345)
latitude = "0831.27N" # DDMM.mmN (0831.27N)
longitude = "08021.59W" # DDDMM.mmW (08021.59W)
latitude = "08.31.27N" # DDMM.mmN (08.31.27N)
longitude = "080.21.59W" # DDDMM.mmW (080.21.59W)
comment = "Python APRS BEACON-1" # coment beacon
text = "Python APRS Beacon by HP3ICC" # state beacon
simbol_primary = "/" # simbol id
@ -65,7 +65,9 @@ every = 20 # time minute every send beacon
##############################################################################
address = f"{callsign}>APHPIB,TCPIP:"
login = f"user {callsign} pass {password} vers emq-TE1 Python APRS Beacon 1.3"
packet = f"{address}!{latitude}{simbol_primary}{longitude}{simbol_secundary}{comment}"
latg = latitude.replace(".", "", 1)
long = longitude.replace(".", "", 1)
packet = f"{address}!{latg}{simbol_primary}{long}{simbol_secundary}{comment}"
packet2 = f"{address}>{text}"
print(packet)
print(len(comment))
@ -84,6 +86,7 @@ while True:
time.sleep(every * 60)
EOFB
cp /lib/systemd/system/py-aprsb1.service /lib/systemd/system/py-aprsb2.service
cp /lib/systemd/system/py-aprsb1.service /lib/systemd/system/py-aprsb3.service