Skip to content

Commit 6f01d03

Browse files
committed
Correct typos in comments and documentation
1 parent be78ccb commit 6f01d03

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This library allows you to control and interact with the 6 DOF Braccio++ robot a
1515

1616
## :bug: Bugs & Issues
1717

18-
If you want to report an issue with this library, you can submit it to the [issue tracker](issues) of this repository. Remember to include as much detail as you can about your hardware set-up, code and steps for reproducing the issue. Make sure you're using an original Arduino board.
18+
If you want to report an issue with this library, you can submit it to the [issue tracker](https://github.com/arduino-libraries/Braccio_v2_library/issues) of this repository. Remember to include as much detail as you can about your hardware set-up, code and steps for reproducing the issue. Make sure you're using an original Arduino board.
1919

2020
## :technologist: Development
2121

@@ -31,4 +31,4 @@ You can submit your patches directly to this repository as Pull Requests. Please
3131

3232
## :yellow_heart: Donations
3333

34-
This open-source code is maintained by Arduino with the help of the community. We invest a considerable amount of time in testing code, optimizing it and introducing new features. Please consider [donating](https://www.arduino.cc/en/donate/) or [sponsoring](https://github.com/sponsors/arduino) to support our work, as well as [buying original Arduino boards](https://store.arduino.cc/) which is the best way to make sure our effort can continue in the long term.
34+
This open-source code is maintained by Arduino with the help of the community. We invest a considerable amount of time in testing code, optimizing it and introducing new features. Please consider [donating](https://www.arduino.cc/en/donate/) or [sponsoring](https://github.com/sponsors/arduino) to support our work, as well as [buying original Arduino boards](https://store.arduino.cc/) which is the best way to make sure our effort can continue in the long term.

examples/LearnByDoing/LearnByDoing.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ static mbed::FATFileSystem fs("fs");
9797

9898
void setup() {
9999

100-
// Call Braccio.begin() for default menu or pass a function for custom menu
101100
Serial.begin(115200);
102101

103102
// Mount file system for load/store movements
@@ -106,6 +105,7 @@ void setup() {
106105
err = fs.reformat(&bd);
107106
}
108107

108+
// Call Braccio.begin() for default menu or pass a function for custom menu
109109
Braccio.begin(customMenu);
110110
Serial.println("Replicate a movement");
111111
}

examples/Moving_Motors/Moving_Motors.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ void setup() {
77
Braccio.begin();
88
Serial.begin(115200);
99
while(!Serial){}
10-
Serial.println("Testing the motor angular moviment!");
10+
Serial.println("Testing the motor angular movement!");
1111
}
1212

1313
void loop() {

examples/Testing_communications/Testing_communications.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ void loop() {
1616

1717
bool connected = (Braccio.connected(motorID));
1818
if (connected)
19-
Serial.println("Communcation with motor " + String(motorID) + " successful");
19+
Serial.println("Communication with motor " + String(motorID) + " successful");
2020
else
21-
Serial.println("Communcation failure - Please check the motor " + String(motorID) + " connection");
21+
Serial.println("Communication failure - Please check the motor " + String(motorID) + " connection");
2222
Serial.println();
2323
}

0 commit comments

Comments
 (0)