Skip to content

Commit 1b1a796

Browse files
author
elephantrobotics
committed
Change path
1 parent 486b202 commit 1b1a796

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mycobot_test/mycobot_test.ino renamed to MycobotBasic/examples/SimpleTest/SimpleTest.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ void setup() {
1414
void loop() {
1515
for(int i = 1; i < 7; i++) //run
1616
{
17-
myCobot.setAngle(i, -50, 3000);
17+
myCobot.setAngle(i, -50, 3000); // set joint angle - 50 degree
1818
delay(2000);
19-
myCobot.setAngle(i, 50, 3000);
19+
myCobot.setAngle(i, 50, 3000); // set joint angle 50 degree
2020
delay(2000);
21-
myCobot.setAngle(i, 0, 3000);
21+
myCobot.setAngle(i, 0, 3000); // set joint angle 0 degree
2222
delay(2000);
2323
}
2424
}

0 commit comments

Comments
 (0)