diff options
author | David Doan <daviddoan@Davids-MacBook-Pro-193.local> | 2023-12-15 04:01:52 -0500 |
---|---|---|
committer | David Doan <daviddoan@Davids-MacBook-Pro-193.local> | 2023-12-15 04:01:52 -0500 |
commit | de6b1df65cda883036e461feb93635b4c557e32c (patch) | |
tree | 02c6f5d8496404fd18c435c1b539a88fbc4a65c6 | |
parent | ee6f39e18a86acbbe321aa9ca9137a886c189c14 (diff) | |
parent | a77b2a6c6cb80888958c96997a21c812dcf71b69 (diff) |
Merge branch 'submission' of https://github.com/sotech117/basic-ultrasonic-linklayer into submission
merge.
-rw-r--r-- | Recv.py | 2 | ||||
-rw-r--r-- | Sender.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 @@ -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 |