Skip to content

Commit

Permalink
Adding comments
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Sep 30, 2020
1 parent bc826e5 commit 2004a76
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions examples/RCCTL/RCCTL.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,19 @@ Timer dashboardUpdateTimer; // times when the dashboard should update
*
* To make the ESP use AP mode by default on boot, change the line below manager.setup();
* to manager.setupAP();
*
* To access the RC control interface for Station mode you will watch the serial monitor as the
* ESP boots, it will print out the IP address. Enter that address in your computer or phones web browser.
* Make sure your ESP and computer or phone are on the same network.
*
* To access teh RC Control interface in AP mode, connect to the ESP with either you phone or laptop
* then open in a browser on that device and go to:
*
* http://192.168.4.1
*
* to access the control website.
*
* NOTE you can use this class in your final project code to visualize the state of your system while running wirelessly.
*/
int inc=0;
void setup() {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=RBE1001Lib
version=0.9.2
version=0.9.3
author=Kevin Harrington
maintainer=Kevin Harrington <[email protected]>
sentence=Support robotics education with simplified support classes.
Expand Down
2 changes: 1 addition & 1 deletion src/Motor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ float Motor::getEffort() {
}
/*
* effort of the motor
* @param a value from -1 to 1 representing effort
* @param effort a value from -1 to 1 representing effort
* 0 is brake
* 1 is full speed clockwise
* -1 is full speed counter clockwise
Expand Down

0 comments on commit 2004a76

Please sign in to comment.