Implement OP25 Handler #3

Merged
logan merged 34 commits from OP25_Handler into master 2022-02-18 20:47:10 -05:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 8a765ad58e - Show all commits

2
bot.py
View File

@@ -301,7 +301,7 @@ class Bot(commands.Bot):
elif self.Handler == 'op25':
self.OP25Handler.set_op25_parameters(self.freq)
self.OP25Handler.start()
self.OP25Handler.open_op25()
# Set the started variable for later checks
self.sdr_started = True

View File

@@ -3,7 +3,7 @@ import subprocess
import os
class OP25Handler(threading.Thread):
class OP25Handler:
def __init__(self):
super().__init__()
self.OP25Dir: str = "/home/pi/op25/op25/gr-op25_repeater/apps"