2012-11-11 11:25:29 -04:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 3; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
|
|
* AP_RangeFinder_MaxsonarI2CXL.cpp - Arduino Library for MaxBotix I2C XL sonar
|
|
|
|
* Code by Randy Mackay. DIYDrones.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* datasheet: http://www.maxbotix.com/documents/I2CXL-MaxSonar-EZ_Datasheet.pdf
|
|
|
|
*
|
|
|
|
* Sensor should be connected to the I2C port
|
|
|
|
*
|
|
|
|
* Variables:
|
|
|
|
* bool healthy : indicates whether last communication with sensor was successful
|
|
|
|
*
|
|
|
|
* Methods:
|
|
|
|
* take_reading(): ask the sonar to take a new distance measurement
|
|
|
|
* read() : read last distance measured (in cm)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// AVR LibC Includes
|
|
|
|
#include <AP_Common.h>
|
2012-11-11 21:40:19 -04:00
|
|
|
#include <I2C.h> // Arduino I2C lib
|
2012-11-11 11:25:29 -04:00
|
|
|
#include "AP_RangeFinder_MaxsonarI2CXL.h"
|
|
|
|
|
|
|
|
// Constructor //////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
AP_RangeFinder_MaxsonarI2CXL::AP_RangeFinder_MaxsonarI2CXL( FilterInt16 *filter ) :
|
|
|
|
RangeFinder(NULL, filter),
|
|
|
|
healthy(true),
|
|
|
|
_addr(AP_RANGE_FINDER_MAXSONARI2CXL_DEFAULT_ADDR)
|
|
|
|
{
|
|
|
|
max_distance = AP_RANGE_FINDER_MAXSONARI2CXL_MIN_DISTANCE;
|
|
|
|
min_distance = AP_RANGE_FINDER_MAXSONARI2CXL_MAX_DISTANCE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Public Methods //////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// take_reading - ask sensor to make a range reading
|
|
|
|
bool AP_RangeFinder_MaxsonarI2CXL::take_reading()
|
|
|
|
{
|
|
|
|
// take range reading and read back results
|
|
|
|
if (I2c.write(_addr, (uint8_t)AP_RANGE_FINDER_MAXSONARI2CXL_COMMAND_TAKE_RANGE_READING) != 0) {
|
|
|
|
healthy = false;
|
|
|
|
return false;
|
|
|
|
}else{
|
|
|
|
healthy = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// read - return last value measured by sensor
|
|
|
|
int AP_RangeFinder_MaxsonarI2CXL::read()
|
|
|
|
{
|
|
|
|
uint8_t buff[2];
|
2012-11-11 21:40:19 -04:00
|
|
|
int16_t ret_value = 0;
|
2012-11-11 11:25:29 -04:00
|
|
|
|
|
|
|
// take range reading and read back results
|
|
|
|
if (I2c.read(_addr, 2, buff) != 0) {
|
|
|
|
healthy = false;
|
|
|
|
}else{
|
|
|
|
// combine results into distance
|
2012-11-11 21:40:19 -04:00
|
|
|
ret_value = buff[0] << 8 | buff[1];
|
2012-11-11 11:25:29 -04:00
|
|
|
healthy = true;
|
|
|
|
}
|
|
|
|
|
2012-11-11 21:40:19 -04:00
|
|
|
return ret_value;
|
2012-11-11 11:25:29 -04:00
|
|
|
}
|