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

Learn/Examples/Robots/ActivityBot360/IR Roaming.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Use IR LED and IR receiver pairs as object detectors for robot roaming.
55
6-
http://learn.parallax.com/activitybot/roaming-infrared-flashlights
6+
https://learn.parallax.com/ab360
77
*/
88

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

Learn/Examples/Robots/ActivityBot360/Navigate by Light.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Navigate by Light.c
33
4-
http://learn.parallax.com/activitybot/roaming-light-sensors
4+
https://learn.parallax.com/ab360
55
*/
66

77
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/Roaming with Whiskers.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
Go forward until object detected by whisker(s). Then, back up, turn
55
and go a new direction.
66
7-
http://learn.parallax.com/activitybot/roaming-whiskers
7+
https://learn.parallax.com/ab360s
88
*/
99

1010
#include "simpletools.h" // Include simpletools library
11-
#include "abdrive360.h" // Include abdrive library
11+
#include "abdrive360.h" // Include abdrive360 library
1212

1313
int main() // main function
1414
{

Learn/Examples/Robots/ActivityBot360/Speeds for Navigation.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
Navigate by making your ActivityBot go certain speeds for certain amounts
55
of time.
66
7-
http://learn.parallax.com/activitybot/set-certain-speeds
7+
https://learn.parallax.com/ab360
88
*/
99

1010

1111
#include "simpletools.h" // simpletools library
12-
#include "abdrive360.h" // abdrive library
12+
#include "abdrive360.h" // abdrive360 library
1313

1414
int main()
1515
{

Learn/Examples/Robots/ActivityBot360/Test Feedback Connections.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
Gently turn each wheel by hand. Right wheel
66
blinks P27 LED, left wheel blinks P26 LED.
77
8-
http://learn.parallax.com/activitybot/test-feedback-360-servos
8+
https://learn.parallax.com/ab360
99
*/
1010

11-
//
11+
1212
#include "simpletools.h" // Library - simpletools
1313
#include "abdrive360.h" // Library - abdrive360
1414

Learn/Examples/Robots/ActivityBot360/Test IR Detectors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Test IR LEDs and IR receivers used together as object detectors.
55
6-
http://learn.parallax.com/activitybot/test-ir-sensor-circuits
6+
https://learn.parallax.com/ab360
77
*/
88

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

Learn/Examples/Robots/ActivityBot360/Test IR Distances.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Test distance detection with infrared detectors.
55
6-
http://learn.parallax.com/activitybot/ir-test-distances
6+
https://learn.parallax.com/ab360
77
*/
88

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

Learn/Examples/Robots/ActivityBot360/Test Light Sensors Graphical.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Test Light Sensors Graphical.c
33
4-
http://learn.parallax.com/activitybot/using-measurements
4+
https://learn.parallax.com/ab360
55
*/
66

77
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/Test Light Sensors.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Test Light Sensors.c
33
4-
http://learn.parallax.com/activitybot/build-light-sensor-circuits
4+
https://learn.parallax.com/ab360
55
*/
66

77
#include "simpletools.h"

Learn/Examples/Robots/ActivityBot360/Test Ping.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Test the PING))) sensor before using it to navigate with the ActivityBot.
55
6-
http://learn.parallax.com/activitybot/build-and-test-ping-sensor-circuit
6+
https://learn.parallax.com/ab360
77
*/
88

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

Learn/Examples/Robots/ActivityBot360/Test Whiskers with LEDs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
Display whisker states in terminal. 1 = not pressed, 0 = pressed.
55
6-
http://learn.parallax.com/activitybot/add-whisker-indicator-lights
6+
https://learn.parallax.com/ab360
77
*/
88

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

Learn/Examples/Robots/ActivityBot360/Test Whiskers with Terminal.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Test Whiskers with Terminal.c
33
44
Display whisker states in terminal. 1 = not pressed, 0 = pressed.
5+
6+
https://learn.parallax.com/ab360
57
*/
68

79
#include "simpletools.h" // Include simpletools header

Learn/Examples/Robots/ActivityBot360/Whiskers Push Bot.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
44
Push the whiskers to make the ActivityBot back up.
55
6-
http://learn.parallax.com/activitybot/whisker-wheel-response
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

1212
int main() // main function
1313
{

Learn/Examples/Robots/ActivityBot360/drive_goto variations.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
22
drive_goto variations.c
3+
4+
https://learn.parallax.com/ab360
35
*/
46

57

Learn/Update Your Learn Folder.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ <h2 style="font-family:verdana;">Get the Latest Learn Folder</h2>
5555
<h2 style="font-family:verdana;">Update History</h2>
5656

5757

58+
<p>
59+
Update 5/27/2021 <a href="https://github.com/parallaxinc/Simple-Libraries/releases/tag/v1.4.153" target="_blank">Simple Libraries v1.4.153</a>
60+
<br>
61+
<ul>
62+
<li>Tagged release version.</li>
63+
<li>Modify ActivityBot360 code examples for compatibility with updates to learn.parallax.com.</li>
64+
</ul>
65+
</p>
66+
5867
<p>
5968
Update 3/2/2020 <a href="https://github.com/parallaxinc/Simple-Libraries/releases/tag/v1.4.153" target="_blank">Simple Libraries v1.4.153</a>
6069
<br>

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.4.152
1+
v1.4.154

0 commit comments

Comments
 (0)