Skip to content

Commit

Permalink
Fix Test.ino Bug, Remove Calibration
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex committed Oct 26, 2015
1 parent 0dd344c commit 0f496cf
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions examples/Test/Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include <EEPROM.h>
#include <Wire.h>
#include "uArm_library.h"
#include "uArm_calibration.h"
#include <Servo.h>

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

Wire.begin(); // join i2c bus (address optional for master)
Serial.begin(9600); // start serial port at 9600 bps
// uArm.init();

}


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

if (readSerial == '1') {
uarm.moveTo(13,-13,3);
// uArm.moveTo(13.0,13.0,3.0);
delay(1000);
}

Expand Down Expand Up @@ -121,9 +117,9 @@ void loop() {
//---------------------------------- function 9 ------------------------------------
// function below is for calibrate uArm

if (readSerial == 'c') {
calib.calibrations();
}
// if (readSerial == 'c') {
// calib.calibrations();
// }

//---------------------------------- function 10 ------------------------------------
// function below is for print current x,y,z absolute location
Expand Down

0 comments on commit 0f496cf

Please sign in to comment.