Skip to content

Commit 35915c6

Browse files
committed
May 2021 Learn Folder Updates
v1.4.154 - Modify ActivityBot360 code examples for compatibility with updates to learn.parallax.com.
1 parent 0e9c64d commit 35915c6

26 files changed

+44
-30
lines changed

Learn/Examples/Robots/ActivityBot360/AB Interpreter.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
AB Interpreter.c
33
44
Fetches text commands from file on SD card, interprets them,
5-
and executes maneuvers. Requires abdrive 0.5.5 from
6-
ActivityBot library 2013-10-31 or later.
5+
and executes maneuvers.
76
8-
http://learn.parallax.com/activitybot/text-file-maneuver-list
7+
http://learn.parallax.com/ab360
98
*/
109

1110
#include "simpletools.h" // Library includes

Learn/Examples/Robots/ActivityBot360/ActivitiyBot360 Clear Calibration Settings.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
44
Clear calibration data. ActivityBot360 will use default values
55
and may not perform as well.
6+
7+
https://learn.parallax.com/ab360
68
*/
79

810
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/ActivitiyBot360 Display Calibration Results.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Display interpolation table values from calibration
55
6-
http://learn.parallax.com/activitybot/calibrate-your-activitybot
6+
https://learn.parallax.com/ab360
77
*/
88

99
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/ActivitiyBot360 Display Calibration.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Display interpolation table values from calibration
55
6-
http://learn.parallax.com/activitybot/calibrate-your-activitybot
6+
https://learn.parallax.com/ab360
77
*/
88

99
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/ActivityBot360 Calibrate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Calibrate the ActivityBot's servos and encoders
55
6-
http://learn.parallax.com/activitybot/calibrate-your-activitybot
6+
https://learn.parallax.com/ab360
77
*/
88

99
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/Detect and Turn from Obstacle.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
44
Detect obstacles in the ActivityBot's path, and turn a random direction to avoid them.
55
6-
http://learn.parallax.com/activitybot/roaming-ultrasound
6+
http://learn.parallax.com/ab360
77
*/
88

99
#include "simpletools.h" // Include simpletools header
10-
#include "abdrive360.h" // Include abdrive header
10+
#include "abdrive360.h" // Include abdrive360 header
1111
#include "ping.h" // Include ping header
1212

1313
int turn; // Navigation variable

Learn/Examples/Robots/ActivityBot360/Follow with Ping.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
44
Maintain a constant distance between ActivityBot and object.
55
6-
http://learn.parallax.com/activitybot/follow-objects-ultrasound
6+
https://learn.parallax.com/ab360
77
*/
88

99
#include "simpletools.h" // Include simpletools header
10-
#include "abdrive360.h" // Include abdrive header
10+
#include "abdrive360.h" // Include abdrive360 header
1111
#include "ping.h" // Include ping header
1212

1313
int distance, setPoint, errorVal, kp, speed; // Navigation variables

Learn/Examples/Robots/ActivityBot360/Forward Stop Face Right.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Forward Stop Face Right.c
33
4-
http://learn.parallax.com/activitybot/go-certain-distances
4+
https://learn.parallax.com/ab360
55
*/
66

77
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/Forward then Stop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Forward Stop Face Right.c
33
4-
http://learn.parallax.com/activitybot/go-certain-distances
4+
https://learn.parallax.com/ab360
55
*/
66

77
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/IR Follow the Leader.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Follow another ActivityBot 360, your hand and other targets.
55
6-
http://learn.parallax.com/activitybot/ir-follow-the-leader
6+
https://learn.parallax.com/ab360
77
*/
88

99
#include "simpletools.h" // Include simpletools

0 commit comments

Comments
 (0)