Skip to content

Commit 0f496cf

Browse files
author
Alex
committed
Fix Test.ino Bug, Remove Calibration
1 parent 0dd344c commit 0f496cf

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

examples/Test/Test.ino

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include <EEPROM.h>
2626
#include <Wire.h>
2727
#include "uArm_library.h"
28-
#include "uArm_calibration.h"
2928
#include <Servo.h>
3029

3130
// define a uArm
@@ -36,8 +35,6 @@ void setup() {
3635

3736
Wire.begin(); // join i2c bus (address optional for master)
3837
Serial.begin(9600); // start serial port at 9600 bps
39-
// uArm.init();
40-
4138
}
4239

4340

@@ -55,7 +52,6 @@ void loop() {
5552

5653
if (readSerial == '1') {
5754
uarm.moveTo(13,-13,3);
58-
// uArm.moveTo(13.0,13.0,3.0);
5955
delay(1000);
6056
}
6157

@@ -121,9 +117,9 @@ void loop() {
121117
//---------------------------------- function 9 ------------------------------------
122118
// function below is for calibrate uArm
123119

124-
if (readSerial == 'c') {
125-
calib.calibrations();
126-
}
120+
// if (readSerial == 'c') {
121+
// calib.calibrations();
122+
// }
127123

128124
//---------------------------------- function 10 ------------------------------------
129125
// function below is for print current x,y,z absolute location

0 commit comments

Comments
 (0)