aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorsotech117 <michael_foiani@brown.edu>2023-12-15 00:50:49 -0500
committersotech117 <michael_foiani@brown.edu>2023-12-15 00:50:49 -0500
commitdb626076acc73fbcd499b3235bf4503c22b47e2b (patch)
treee9d3c4e8ff64b099ef619824d1c14b71da0d51f0 /utils.py
parent11167eff189b0d23d8f88ada09f975dc7f2d80fc (diff)
remove print statement
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.py b/utils.py
index 9706e35..253bad6 100644
--- a/utils.py
+++ b/utils.py
@@ -63,7 +63,7 @@ def frequencies_to_bits(frequencies, expected_freqs):
def play_data(data, start_freq, freq_step, bytes_per_transmit, stream):
freq_list = calculate_send_frequencies(start_freq, freq_step, bytes_per_transmit)
- send_duration = 1.0
+ send_duration = .35
flip_flag = 0 # TODO: make this global between plays
for byte in data: