Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: TPixy-Interface
Fork of MbedOS_Robot_Team by
ui.h@29:83c103d12078, 2018-04-10 (annotated)
- Committer:
- asobhy
- Date:
- Tue Apr 10 20:54:37 2018 +0000
- Branch:
- ManualControl
- Revision:
- 29:83c103d12078
- Parent:
- 15:cf67f83d5409
- Child:
- 23:1839085ffdcf
ManualControl
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| asobhy | 8:a0890fa79084 | 1 | /******************************************************************************/ |
| asobhy | 8:a0890fa79084 | 2 | // ECE4333 |
| asobhy | 9:fe56b888985c | 3 | // LAB Partner 1: Ahmed Sobhy - ID: 3594449 |
| asobhy | 9:fe56b888985c | 4 | // LAB Partner 2: Brandon Kingman - ID: 3470444 |
| asobhy | 9:fe56b888985c | 5 | // Project: Autonomous Robot Design |
| asobhy | 9:fe56b888985c | 6 | // Instructor: Prof. Chris Diduch |
| asobhy | 8:a0890fa79084 | 7 | /******************************************************************************/ |
| asobhy | 8:a0890fa79084 | 8 | |
| asobhy | 0:a355e511bc5d | 9 | #ifndef UI_H |
| asobhy | 0:a355e511bc5d | 10 | #define UI_H |
| asobhy | 0:a355e511bc5d | 11 | |
| asobhy | 1:3e9684e81312 | 12 | #define SPEED_STEP 1 |
| asobhy | 0:a355e511bc5d | 13 | |
| asobhy | 15:cf67f83d5409 | 14 | extern bool killRobot; |
| asobhy | 15:cf67f83d5409 | 15 | extern int setpointR; |
| asobhy | 15:cf67f83d5409 | 16 | extern int setpointL; |
| asobhy | 15:cf67f83d5409 | 17 | extern Serial bluetooth; |
| asobhy | 15:cf67f83d5409 | 18 | extern Mutex setpointR_mutex; |
| asobhy | 15:cf67f83d5409 | 19 | extern Mutex setpointL_mutex; |
| asobhy | 15:cf67f83d5409 | 20 | |
| asobhy | 0:a355e511bc5d | 21 | void consoleUI(void); |
| asobhy | 0:a355e511bc5d | 22 | void displayStartupMsg(void); |
| asobhy | 0:a355e511bc5d | 23 | void twoTerminalsTest(void); |
| asobhy | 0:a355e511bc5d | 24 | |
| asobhy | 0:a355e511bc5d | 25 | #endif |
