Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@
"group_by": false,
"label": "RSONLINE",
"name": "RSONLINE",
"show": false
"show": true
},
{
"group_by": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6011,7 +6011,7 @@
(hide yes)
)
)
(property "RAPID" "11-0282"
(property "RAPID" "11-4119"
(at 91.44 130.81 0)
(effects
(font
Expand Down Expand Up @@ -6491,7 +6491,7 @@
(hide yes)
)
)
(property "RAPID" "11-0282"
(property "RAPID" "11-4119"
(at 115.57 130.81 0)
(effects
(font
Expand Down
12 changes: 11 additions & 1 deletion sampleCode/GeminiLineFollower.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@
# * It is not necessary to have the bluetooth module installed the robot will run but
# * without the bluetooth serial link, logging information will not be available.
# *
# * Operation:
# * 1 Switch on the robot and place it anywhere on the white line of the track
# * 2 Press the right button on the Mezzanine board
# * The LED next to the button will illuminate to show the button is detected
# * The robot will spin on the spot to callibrate the sensors
# * 3 Place the robot on the line in the start position
# * 4 Press the left button on the Mezzanine board
# * The LED next to the button will illuminate to show the button is detected
# * The robot will complete one circuit of the track and come to a halt between the start and finish markers
# * Step 4 can be repeated multiple times, if re-calibration is wanted press RESET and go to step 1
# * -----
# * MIT License
# *
Expand Down Expand Up @@ -401,8 +411,8 @@ def displayThresholds():
onBoardLED.value(1)
time.sleep(0.1)
onBoardLED.value(0)
leftMezzLED.value(1) #signal button detected with LED
time.sleep(0.1)
leftMezzLED.value(1) #signal button detected with LED
leftSensorLED.value(0) #clear LEDs used to signal significant steering adjustment
rightSensorLED.value(0)
uart.write('Starting robot')
Expand Down