Skip to content

Commit ece1f49

Browse files
Walking code and Arduino
Added arduino scripts for the robot and fixed the walking code to include annulus segment calculations rather than the circles which had flaws.
1 parent 6d793df commit ece1f49

File tree

9 files changed

+1206
-3
lines changed

9 files changed

+1206
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
#include <ax12.h>
2+
#include <BioloidController.h>
3+
4+
5+
void setup() {
6+
Serial.begin(38400);
7+
Serial.println("serial delimit test 1.0"); // so I can keep track of what is loaded
8+
}
9+
/*
10+
void loop() {
11+
for (int id = 0; id <= 16; id++) {
12+
ax12SetRegister( id, AX_LED, 1); //for on
13+
Serial.print("Motor ID IS: ");
14+
Serial.println(id);
15+
delay(5000);
16+
ax12SetRegister( id, AX_LED, 0); //for off
17+
delay(10);
18+
}
19+
}
20+
*/
21+
22+
int LEDIDold, LEDID, loc1, loc2;
23+
String readString, substring;
24+
void loop() {
25+
26+
//expect a string like "LED 1k"
27+
if (Serial.available()) {
28+
char c = Serial.read(); //gets one byte from serial buffer
29+
//if (c == '\n') { //looks for end of data packet marker
30+
if (c == 'k') {
31+
Serial.println(readString); //prints string to serial port out
32+
//do stuff
33+
loc1 = readString.indexOf("LED");
34+
loc2 = readString.indexOf("k");
35+
substring = readString.substring(loc1+4, loc2);
36+
LEDID=substring.toInt();
37+
for (int id = 0; id <= 255; id++) {
38+
ax12SetRegister( id, AX_LED, 0);
39+
}
40+
delay(2000);
41+
/*
42+
ax12SetRegister( LEDIDold, AX_LED, 0); //for off
43+
Serial.print("Turning Off LED ");
44+
Serial.println(LEDIDold);
45+
*/
46+
ax12SetRegister( LEDID, AX_LED, 1); //for on
47+
Serial.print("Turning ON LED ");
48+
Serial.println(LEDID);
49+
readString=""; //clears variable for new input
50+
substring="";
51+
}
52+
else {
53+
readString += c; //continue reading and adding until k is reached
54+
}
55+
}
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Test to move all motors to 500 position
2+
3+
#include <ax12.h>
4+
#include <BioloidController.h>
5+
6+
7+
void setup() {
8+
Serial.begin(38400);
9+
Serial.println("serial delimit test 1.0"); // so I can keep track of what is loaded
10+
}
11+
12+
void loop() {
13+
for (int id = 0; id <= 100; id++) {
14+
ax12SetRegister( id, AX_LED, 1); //for on
15+
Serial.print("Motor ID IS: ");
16+
Serial.println(id);
17+
delay(200);
18+
//ax12SetRegister( id, AX_LED, 0); //for off
19+
delay(10);
20+
}
21+
}
22+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
//I'm only writing this because I'm sick of wading through years-old poorly documented code that's meant to do it for me.
2+
//It might be a shit job but it'll at least work.
3+
4+
5+
#include <ax12.h>
6+
#include <BioloidController.h>
7+
//#include "poses.h"
8+
9+
BioloidController bioloid = BioloidController(1000000);
10+
11+
const int SERVOCOUNT = 12;
12+
int id;
13+
int pos;
14+
boolean IDCheck;
15+
boolean RunCheck;
16+
17+
18+
// TO TURN ON OR OFF THE LED. Use this to work out servo ID's...
19+
//ax12SetRegister( id, AX_LED, 1) //for on
20+
//ax12SetRegister( id, AX_LED, 0) //for off
21+
//zoomkat 3-5-12 simple delimited ',' string
22+
//from serial port input (via serial monitor)
23+
//and print result out serial port
24+
25+
String readString, substring;
26+
int loc1;
27+
int loc2, Position1, Position2, Position3, Position4, Position5, Position6, Position7, Position8, Position9, Position10, Position11, Position12, Position13, Position14, Position15, Position16;
28+
void setup() {
29+
Serial.begin(38400);
30+
Serial.println("serial delimit test 1.0"); // so I can keep track of what is loaded
31+
}
32+
33+
void loop() {
34+
35+
//expect a string like "#1 P100 #2 P200 .... #12 P500k"
36+
if (Serial.available()) {
37+
char c = Serial.read(); //gets one byte from serial buffer
38+
//if (c == '\n') { //looks for end of data packet marker
39+
if (c == 'k') {
40+
Serial.println(readString); //prints string to serial port out
41+
//do stuff
42+
loc1 = readString.indexOf("#1 P");
43+
loc2 = readString.indexOf("#2");
44+
substring = readString.substring(loc1+4, loc2);
45+
Position1=substring.toInt();
46+
47+
loc1 = readString.indexOf("#2 P");
48+
loc2 = readString.indexOf("#3");
49+
substring = readString.substring(loc1+4, loc2);
50+
Position2=substring.toInt();
51+
52+
loc1 = readString.indexOf("#3 P");
53+
loc2 = readString.indexOf("#4");
54+
substring = readString.substring(loc1+4, loc2);
55+
Position3=substring.toInt();
56+
57+
loc1 = readString.indexOf("#4 P");
58+
loc2 = readString.indexOf("#5");
59+
substring = readString.substring(loc1+4, loc2);
60+
Position4=substring.toInt();
61+
62+
loc1 = readString.indexOf("#5 P");
63+
loc2 = readString.indexOf("#6");
64+
substring = readString.substring(loc1+4, loc2);
65+
Position5=substring.toInt();
66+
67+
loc1 = readString.indexOf("#6 P");
68+
loc2 = readString.indexOf("#7");
69+
substring = readString.substring(loc1+4, loc2);
70+
Position6=substring.toInt();
71+
72+
loc1 = readString.indexOf("#7 P");
73+
loc2 = readString.indexOf("#8");
74+
substring = readString.substring(loc1+4, loc2);
75+
Position7=substring.toInt();
76+
77+
loc1 = readString.indexOf("#8 P");
78+
loc2 = readString.indexOf("#9");
79+
substring = readString.substring(loc1+4, loc2);
80+
Position8=substring.toInt();
81+
82+
loc1 = readString.indexOf("#9 P");
83+
loc2 = readString.indexOf("#10");
84+
substring = readString.substring(loc1+4, loc2);
85+
Position9=substring.toInt();
86+
87+
loc1 = readString.indexOf("#10 P");
88+
loc2 = readString.indexOf("#11");
89+
substring = readString.substring(loc1+5, loc2);
90+
Position10=substring.toInt();
91+
92+
loc1 = readString.indexOf("#11 P");
93+
loc2 = readString.indexOf("#12");
94+
substring = readString.substring(loc1+5, loc2);
95+
Position11=substring.toInt();
96+
97+
loc1 = readString.indexOf("#12 P");
98+
loc2 = readString.indexOf("k");
99+
substring = readString.substring(loc1+5, loc2);
100+
Position12=substring.toInt();
101+
//Position13=1023-Position2;
102+
//Position14=1023-Position5;
103+
//Position15=1023-Position15;
104+
//Position16=1023-Position16;
105+
106+
readString=""; //clears variable for new input
107+
substring="";
108+
SetPosition(1, Position1);
109+
SetPosition(2, Position2);
110+
SetPosition(3, Position3);
111+
SetPosition(4, Position4);
112+
SetPosition(5, Position5);
113+
SetPosition(6, Position6);
114+
SetPosition(7, Position7);
115+
SetPosition(8, Position8);
116+
SetPosition(9, Position9);
117+
SetPosition(10, Position10);
118+
SetPosition(11, Position11);
119+
SetPosition(12, Position12);
120+
//SetPosition(13, Position13);
121+
//SetPosition(14, Position14);
122+
//SetPosition(15, Position15);
123+
//SetPosition(16, Position16);
124+
}
125+
else {
126+
readString += c; //continue reading and adding until k is reached
127+
}
128+
}
129+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
// Example 3 - Receive with start- and end-markers
2+
#include <ax12.h>
3+
#include <BioloidController.h>
4+
//#include "poses.h"
5+
BioloidController bioloid = BioloidController(1000000);
6+
7+
String readString, substring;
8+
int loc1;
9+
int loc2, Position1, Position2, Position3, Position4, Position5, Position6, Position7, Position8, Position9, Position10, Position11, Position12, Position13, Position14, Position15, Position16;
10+
11+
12+
13+
const byte numChars = 100;
14+
char receivedChars[numChars];
15+
16+
boolean newData = false;
17+
18+
void setup() {
19+
Serial.begin(38400);
20+
Serial.println("<Arduino is ready>");
21+
}
22+
23+
void loop() {
24+
recvWithStartEndMarkers();
25+
showNewData();
26+
}
27+
28+
void recvWithStartEndMarkers() {
29+
static boolean recvInProgress = false;
30+
static byte ndx = 0;
31+
char startMarker = '<';
32+
char endMarker = '>';
33+
char rc;
34+
35+
while (Serial.available() > 0 && newData == false) {
36+
rc = Serial.read();
37+
38+
if (recvInProgress == true) {
39+
if (rc != endMarker) {
40+
receivedChars[ndx] = rc;
41+
ndx++;
42+
if (ndx >= numChars) {
43+
ndx = numChars - 1;
44+
}
45+
}
46+
else {
47+
receivedChars[ndx] = '\0'; // terminate the string
48+
recvInProgress = false;
49+
ndx = 0;
50+
newData = true;
51+
}
52+
}
53+
54+
else if (rc == startMarker) {
55+
recvInProgress = true;
56+
}
57+
}
58+
}
59+
60+
void showNewData() {
61+
if (newData == true) {
62+
String str(receivedChars);
63+
loc1 = str.indexOf("#1 P");
64+
loc2 = str.indexOf("#2");
65+
substring = str.substring(loc1+4, loc2);
66+
Position1=substring.toInt();
67+
68+
loc1 = str.indexOf("#2 P");
69+
loc2 = str.indexOf("#3");
70+
substring = str.substring(loc1+4, loc2);
71+
Position2=substring.toInt();
72+
73+
loc1 = str.indexOf("#3 P");
74+
loc2 = str.indexOf("#4");
75+
substring = str.substring(loc1+4, loc2);
76+
Position3=substring.toInt();
77+
78+
loc1 = str.indexOf("#4 P");
79+
loc2 = str.indexOf("#5");
80+
substring = str.substring(loc1+4, loc2);
81+
Position4=substring.toInt();
82+
83+
loc1 = str.indexOf("#5 P");
84+
loc2 = str.indexOf("#6");
85+
substring = str.substring(loc1+4, loc2);
86+
Position5=substring.toInt();
87+
88+
loc1 = str.indexOf("#6 P");
89+
loc2 = str.indexOf("#7");
90+
substring = str.substring(loc1+4, loc2);
91+
Position6=substring.toInt();
92+
93+
loc1 = str.indexOf("#7 P");
94+
loc2 = str.indexOf("#8");
95+
substring = str.substring(loc1+4, loc2);
96+
Position7=substring.toInt();
97+
98+
loc1 = str.indexOf("#8 P");
99+
loc2 = str.indexOf("#9");
100+
substring = str.substring(loc1+4, loc2);
101+
Position8=substring.toInt();
102+
103+
loc1 = str.indexOf("#9 P");
104+
loc2 = str.indexOf("#10");
105+
substring = str.substring(loc1+4, loc2);
106+
Position9=substring.toInt();
107+
108+
loc1 = str.indexOf("#10 P");
109+
loc2 = str.indexOf("#11");
110+
substring = str.substring(loc1+5, loc2);
111+
Position10=substring.toInt();
112+
113+
loc1 = str.indexOf("#11 P");
114+
loc2 = str.indexOf("#12");
115+
substring = str.substring(loc1+5, loc2);
116+
Position11=substring.toInt();
117+
118+
loc1 = str.indexOf("#12 P");
119+
loc2 = str.indexOf("k");
120+
substring = str.substring(loc1+5, loc2);
121+
Position12=substring.toInt();
122+
Position13=1023-Position2;
123+
Position14=1023-Position5;
124+
Position15=1023-Position15;
125+
Position16=1023-Position16;
126+
127+
Serial.print("Motor 1 Position ");
128+
Serial.println(Position1);
129+
Serial.print("Motor 2 Position ");
130+
Serial.println(Position2);
131+
Serial.print("Motor 3 Position ");
132+
Serial.println(Position3);
133+
Serial.print("Motor 4 Position ");
134+
Serial.println(Position4);
135+
Serial.print("Motor 5 Position ");
136+
Serial.println(Position5);
137+
Serial.print("Motor 6 Position ");
138+
Serial.println(Position6);
139+
Serial.print("Motor 7 Position ");
140+
Serial.println(Position7);
141+
Serial.print("Motor 8 Position ");
142+
Serial.println(Position8);
143+
Serial.print("Motor 9 Position ");
144+
Serial.println(Position9);
145+
Serial.print("Motor 10 Position ");
146+
Serial.println(Position10);
147+
Serial.print("Motor 11 Position ");
148+
Serial.println(Position11);
149+
Serial.print("Motor 12 Position ");
150+
Serial.println(Position12);
151+
152+
newData = false;
153+
substring="";
154+
SetPosition(1, Position1);
155+
SetPosition(2, Position2);
156+
SetPosition(3, Position3);
157+
SetPosition(4, Position4);
158+
SetPosition(5, Position5);
159+
SetPosition(6, Position6);
160+
SetPosition(7, Position7);
161+
SetPosition(8, Position8);
162+
SetPosition(9, Position9);
163+
SetPosition(10, Position10);
164+
SetPosition(11, Position11);
165+
SetPosition(12, Position12);
166+
/*
167+
SetPosition(13, Position13);
168+
SetPosition(14, Position14);
169+
SetPosition(15, Position15);
170+
SetPosition(16, Position16);
171+
*/
172+
Serial.write("command received thank you");
173+
}
174+
}
175+
176+
177+

0 commit comments

Comments
 (0)