aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-12-15 03:57:35 -0500
committersotech117 <michael_foiani@brown.edu>2023-12-15 03:57:35 -0500
commita77b2a6c6cb80888958c96997a21c812dcf71b69 (patch)
tree9eb4bd0e0c82c3c610a44f2459771745a89c9072
parent5c191f4ac00c28b5fa9e971bda68ead235a8fcc0 (diff)
update start freq
-rw-r--r--Recv.py2
-rw-r--r--Sender.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Recv.py b/Recv.py
index 82eb7bf..9ea02c4 100644
--- a/Recv.py
+++ b/Recv.py
@@ -5,7 +5,7 @@ from utils import *
# Receiver Class: Used to continuos listen for sound waves in the corresponding frequency range
# and decode the data being sent
class Recv:
- def __init__(self, start_freq=19000):
+ def __init__(self, start_freq=18500):
# initialize frequency related variables with default values
self.start_freq = start_freq
self.freq_range = 500
diff --git a/Sender.py b/Sender.py
index 8c6a3f9..058a3a1 100644
--- a/Sender.py
+++ b/Sender.py
@@ -4,7 +4,7 @@ import threading
from utils import *
class Sender:
- def __init__(self, start_freq=19000):
+ def __init__(self, start_freq=18500):
# initialize frequency related variables with default values
self.start_freq = start_freq
self.freq_range = 500