2014-07-20 20:39:12 -03:00
|
|
|
/*
|
|
|
|
* RangeFinder test code
|
|
|
|
*/
|
2015-10-20 10:51:24 -03:00
|
|
|
|
2015-08-11 03:28:45 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-10-20 10:51:24 -03:00
|
|
|
#include <AP_RangeFinder/AP_RangeFinder.h>
|
2014-07-20 20:39:12 -03:00
|
|
|
|
2015-10-16 17:22:11 -03:00
|
|
|
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
|
2014-07-20 20:39:12 -03:00
|
|
|
|
2015-09-07 02:32:06 -03:00
|
|
|
static AP_SerialManager serial_manager;
|
|
|
|
static RangeFinder sonar {serial_manager};
|
2014-07-20 20:39:12 -03:00
|
|
|
|
|
|
|
void setup()
|
|
|
|
{
|
|
|
|
// print welcome message
|
|
|
|
hal.console->println("Range Finder library test");
|
|
|
|
|
2014-07-21 11:05:35 -03:00
|
|
|
// setup for analog pin 13
|
2015-03-14 23:50:59 -03:00
|
|
|
AP_Param::set_object_value(&sonar, sonar.var_info, "_TYPE", RangeFinder::RangeFinder_TYPE_PLI2C);
|
|
|
|
AP_Param::set_object_value(&sonar, sonar.var_info, "_PIN", -1);
|
|
|
|
AP_Param::set_object_value(&sonar, sonar.var_info, "_SCALING", 1.0);
|
2014-07-20 20:39:12 -03:00
|
|
|
|
|
|
|
// initialise sensor, delaying to make debug easier
|
|
|
|
hal.scheduler->delay(2000);
|
|
|
|
sonar.init();
|
2015-10-25 17:10:41 -03:00
|
|
|
hal.console->printf("RangeFinder: %d devices detected\n", sonar.num_sensors());
|
2014-07-20 20:39:12 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop()
|
|
|
|
{
|
|
|
|
// Delay between reads
|
|
|
|
hal.scheduler->delay(100);
|
2014-07-24 12:03:18 -03:00
|
|
|
sonar.update();
|
2014-07-21 11:05:35 -03:00
|
|
|
|
2015-10-25 17:10:41 -03:00
|
|
|
hal.console->printf("Primary: status %d distance_cm %d \n", (int)sonar.status(), sonar.distance_cm());
|
|
|
|
hal.console->printf("All: device_0 type %d status %d distance_cm %d, device_1 type %d status %d distance_cm %d\n",
|
2015-04-17 03:36:17 -03:00
|
|
|
(int)sonar._type[0], (int)sonar.status(0), sonar.distance_cm(0), (int)sonar._type[1], (int)sonar.status(1), sonar.distance_cm(1));
|
2014-07-24 12:03:18 -03:00
|
|
|
|
2014-07-20 20:39:12 -03:00
|
|
|
}
|
|
|
|
AP_HAL_MAIN();
|