Skip to content

Commit 764f359

Browse files
authored
Removed comments that are now moot.
1 parent 8444102 commit 764f359

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

CircuitPython_Pyloton/code.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,6 @@
4545
# Stop scanning whether or not we are connected.
4646
ble.stop_scan()
4747

48-
# You may need to remove some parts of the following 2 lines depending on what
49-
# devices you are using.
50-
# For example, remove hr_connection and hr_connection.connected if you aren't using a heart
51-
# rate monitor. Do the same for other sensors you aren't using.
5248
if ((not HEART or (hr_connection and hr_connection.connected)) and #pylint: disable=too-many-boolean-expressions
5349
((not SPEED and not CADENCE) or
5450
(speed_cadence_connections and speed_cadence_connections[0].connected)) and
@@ -57,9 +53,6 @@
5753

5854
pyloton.setup_display()
5955

60-
# You may need to remove some parts of the following line depending on what devices you are using.
61-
# For example, remove hr_connection and hr_connection.connected if you aren't using a heart rate
62-
# monitor. Do the same for other sensors you aren't using.
6356
while ((not HEART or hr_connection.connected) and
6457
((not SPEED or not CADENCE) or speed_cadence_connections[0].connected) and
6558
(not AMS or ams.connected)):

0 commit comments

Comments
 (0)