1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/*
Adept MobileRobots Robotics Interface for Applications (ARIA)
Copyright (C) 2004, 2005 ActivMedia Robotics LLC
Copyright (C) 2006, 2007, 2008, 2009, 2010 MobileRobots Inc.
Copyright (C) 2011, 2012, 2013 Adept Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
If you wish to redistribute ARIA under different terms, contact
Adept MobileRobots for information about a commercial version of ARIA at
robots@mobilerobots.com or
Adept MobileRobots, 10 Columbia Drive, Amherst, NH 03031; +1-603-881-7960
*/
/** @example imuExample.cpp Example of gathering IMU data from Seekur
Sample program that demonstrates how to get IMU data from an IMU on
a Seekur-class robot (from SeekurOS). Only some Seekurs have IMUs.
[Some Pioneers also have
gyros that are integrated into the robot and normally automatically
correct data or which can optionally return the data seperately
(using different packets and different ARIA interface in ArAnalogGyro).]
The data comes back in a custom packet with
ID 0x9A. It's requested with client command 26.
Press escape to exit the program.
*/
#include "Aria.h"
#include <time.h>
bool imuPacketHandler(ArRobotPacket* packet) {
if (packet->getID() != 0x9a) {
//ArLog::log(ArLog::Normal, "ignoring packet with id: %d", packet->getID());
return false;
}
int timeSince = packet->bufToByte();
int numPerAxis = packet->bufToByte();
ArLog::log(ArLog::Normal, "got IMUpac, %dms since readings took place, %d readings per axis", timeSince, numPerAxis);
int i;
int range;
double x = 0.0;
double y = 0.0;
double z = 0.0;
double multiplier = 0.0;
double offset = 0.0;
int numGyroAxes = packet->bufToByte();
for (i=1; i <= numPerAxis; i++) {
x = 0.0;
y = 0.0;
z = 0.0;
range = packet->bufToByte();
if (range == 3) {
multiplier = 0.07326;
offset = 0.0;
}
else if (range == 2) {
multiplier = 0.03663;
offset = 0.0;
}
else if (range == 1) {
multiplier = 0.01832;
offset = 0.0;
}
if (numGyroAxes >= 1) {
x = (packet->bufToByte2() * multiplier) + offset;
}
if (numGyroAxes >= 2) {
y = (packet->bufToByte2() * multiplier) + offset;
}
if (numGyroAxes >= 3) {
z = (packet->bufToByte2() * multiplier) + offset;
}
ArLog::log(ArLog::Normal, "gyro: reading %d of %d, x: %10.4f deg/s, y: %10.4f deg/s, z: %10.4f deg/s",
i, numPerAxis, x, y, z);
}
int numAccelAxes = packet->bufToByte();
for (i=1; i <= numPerAxis; i++) {
x = 0.0;
y = 0.0;
z = 0.0;
multiplier = 0.002522 * 9806.65;
offset = 0.0;
if (numAccelAxes >= 1) {
x = (packet->bufToByte2() * multiplier) + offset;
}
if (numAccelAxes >= 2) {
y = (packet->bufToByte2() * multiplier) + offset;
}
if (numAccelAxes >= 3) {
z = (packet->bufToByte2() * multiplier) + offset;
}
ArLog::log(ArLog::Normal, "accel: reading %d of %d, x: %10.4f mg, y: %10.4f mg, z: %10.4f mg",
i, numPerAxis, x, y, z);
}
int numTemperatureAxes = packet->bufToByte();
for (i=1; i <= numPerAxis; i++) {
x = 0.0;
y = 0.0;
z = 0.0;
multiplier = 0.1453;
offset = 25.0;
if (numTemperatureAxes >= 1) {
x = (packet->bufToByte2() * multiplier) + offset;
}
if (numTemperatureAxes >= 2) {
y = (packet->bufToByte2() * multiplier) + offset;
}
if (numTemperatureAxes >= 3) {
z = (packet->bufToByte2() * multiplier) + offset;
}
ArLog::log(ArLog::Normal, "temperature: reading %d of %d, x: %10.4f degC, y: %10.4f degC, z: %10.4f degC",
i, numPerAxis, x, y, z);
}
ArLog::log(ArLog::Normal, "");
ArLog::log(ArLog::Normal, "");
return true;
}
int main(int argc, char **argv) {
Aria::init();
ArLog::init(ArLog::StdOut, ArLog::Normal, "", true);
ArArgumentParser parser(&argc, argv);
ArRobot *robot = new ArRobot;
ArSimpleConnector simpleConnector(&parser);
ArKeyHandler keyHandler;
Aria::setKeyHandler(&keyHandler);
robot->attachKeyHandler(&keyHandler);
parser.loadDefaultArguments();
if (!simpleConnector.parseArgs() || !parser.checkHelpAndWarnUnparsed(1)) {
simpleConnector.logOptions();
keyHandler.restore();
Aria::exit(1);
}
if (!simpleConnector.connectRobot(robot)) {
ArLog::log(ArLog::Terse, "Error connecting to robot.");
Aria::shutdown();
keyHandler.restore();
Aria::exit(1);
}
ArLog::log(ArLog::Normal, "Connected to robot.");
ArGlobalRetFunctor1<bool, ArRobotPacket *> myImuPacketHandler(&imuPacketHandler);
robot->addPacketHandler(&myImuPacketHandler, ArListPos::FIRST);
robot->runAsync(true);
ArUtil::sleep(500);
robot->lock();
robot->comInt(26, 2); // request IMU packets continuously
ArLog::log(ArLog::Normal, "Requested IMU packets, waiting...");
robot->unlock();
robot->waitForRunExit();
Aria::shutdown();
exit(0);
}
|