Skip to content

Commit 1760209

Browse files
Comments, properties, v2.1.1
1 parent 8f41988 commit 1760209

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

examples/RoboHeartBalanceBot/RoboHeartBalanceBot.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
* the Balancing Bot made with the RoboHeart
33
* board.
44
*
5-
* Use button to set the stable vertical position
5+
* Use BOOT button to set the stable vertical position
66
* of the Balancing Bot.
77
*
88
*
99
* Building a One-board balancing bot instructions can be found here:
1010
* https://www.instructables.com/A-One-board-Balancing-Bot-With-a-RoboHeart-Electro/
11+
*
12+
* PID parameters are set to specific setup (mass distribution, weight, motoros, gears, battery parameters, etc.)
13+
* Please use our another example RoboHeartPIDFittingExample for better way of fitting PID parameters.
1114
*
1215
* Created 16/08/2024
1316
* By Augmented Robotics
@@ -21,8 +24,6 @@
2124
RoboHeart heart = RoboHeart(Serial);
2225

2326
// PID controller parameters.
24-
// You should change parameters based on your setup.
25-
// You can use our another example RoboHeartPIDFittingExample to try set parameters to stabilise.
2627
#define Kp 20
2728
#define Kd 0
2829
#define Ki 40
@@ -88,7 +89,7 @@ void setup() {
8889
heart.begin();
8990

9091
Serial.println("Please let RoboHeart in stable position...");
91-
92+
9293
//Run IMU calibration and calculation of absolute rotation
9394
heart.setAutomaticRotation();
9495

examples/RoboHeartBalanceBotContol/RoboHeartBalanceBotContol.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
* is provided. It establishes connection
77
* through Bluetooth.
88
*
9-
* Use button to set the stable vertical position
9+
* Use BOOT button to set the stable vertical position
1010
* of the Balancing Bot.
11+
*
12+
* PID parameters are set to specific setup (mass distribution, weight, motoros, gears, battery parameters, etc.)
13+
* Please use our another example RoboHeartPIDFittingExample for better way of fitting PID parameters.
1114
*
1215
* Building a One-board balancing bot instructions can be found here:
1316
* https://www.instructables.com/A-One-board-Balancing-Bot-With-a-RoboHeart-Electro/
@@ -25,8 +28,6 @@
2528
RoboHeart heart = RoboHeart(Serial);
2629

2730
// PID controller parameters.
28-
// You should change parameters based on your setup.
29-
// You can use our another example RoboHeartPIDFittingExample to try set parameters to stabilise.
3031
#define Kp 20
3132
#define Kd 0
3233
#define Ki 40
@@ -212,7 +213,7 @@ void setup() {
212213
heart.begin();
213214

214215
Serial.println("Please let RoboHeart in stable position...");
215-
216+
216217
//Run IMU calibration and calculation of absolute rotation
217218
heart.setAutomaticRotation();
218219

examples/RoboHeartRotation/RoboHeartRotation.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void setup() {
5555
calculateDrifts();
5656
int counter = 0;
5757
Serial.println("RoboHeart calibrating...");
58-
Serial.println("Please let it in stable position...");
58+
Serial.println("Please let RoboHeart in stable position...");
5959
while (isCalibrated() == 0) {
6060
counter++;
6161
if(counter > 3){

examples/RoboHeartRotationAutomatic/RoboHeartRotationAutomatic.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ void setup()
1515
{
1616
Serial.begin(115200);
1717
Serial.println("Starting RoboHeart automatic rotation example...");
18-
Serial.println("Please let it in stable position...");
18+
Serial.println("Please let RoboHeart in stable position...");
1919
heart.begin();
2020
heart.setAutomaticRotation();
2121
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=RoboHeart
2-
version=2.1.0
2+
version=2.1.1
33
author=Augmented Robotics
44
maintainer=Augmented Robotics <[email protected]>
55
sentence=Arduino library for the RoboHeart

0 commit comments

Comments
 (0)