Skip to content

Commit b7a0137

Browse files
committed
ActivityBot360 - Updates for learn.parallax.com filenames and paths
1 parent 8c3b2a7 commit b7a0137

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
Forward Stop Face Right.c
3+
4+
http://learn.parallax.com/activitybot/go-certain-distances
5+
*/
6+
7+
#include "simpletools.h"
8+
#include "abdrive.h"
9+
10+
int main()
11+
{
12+
drive_speed(64, 64);
13+
pause(4000);
14+
drive_speed(0, 0);
15+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Forward then Stop.c
2+
>compiler=C
3+
>memtype=cmm main ram compact
4+
>optimize=-Os
5+
>-m32bit-doubles
6+
>-fno-exceptions
7+
>defs::-std=c99
8+
>-lm
9+
>BOARD::ACTIVITYBOARD

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
/*
2-
Test Encoder Connections.c
2+
Test Feedback Connections.c
33
44
Load to ActivityBot EEPROM. PWR to Position 2.
55
Gently turn each wheel by hand. Right wheel
66
blinks P27 LED, left wheel blinks P26 LED.
7-
If not, encoders are not measuring rotation.
8-
Go to Extras/Troubleshooting section of tutorial.
97
10-
http://learn.parallax.com/activitybot/test-encoder-connections
8+
http://learn.parallax.com/activitybot/test-feedback-360-servos
119
*/
1210

1311
//
1412
#include "simpletools.h" // Library - simpletools
1513
#include "abdrive360.h" // Library - abdrive360
1614

17-
int left; // Current/previous angles
15+
int left; // Current/previous angles
1816
int right;
1917
int leftPrev;
2018
int rightPrev;

version.txt

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

0 commit comments

Comments
 (0)