/* * RangeFinder test code */ #include #include void setup(); void loop(); const AP_HAL::HAL& hal = AP_HAL::get_HAL(); static AP_SerialManager serial_manager; static RangeFinder sonar; void setup() { // print welcome message hal.console->printf("Range Finder library test\n"); // setup for analog pin 13 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.0f); AP_Param::set_object_value(&sonar, sonar.var_info, "_SCALING", 1.0f); // initialise sensor, delaying to make debug easier hal.scheduler->delay(2000); sonar.init(ROTATION_PITCH_270); hal.console->printf("RangeFinder: %d devices detected\n", sonar.num_sensors()); } void loop() { // Delay between reads hal.scheduler->delay(100); sonar.update(); bool had_data = false; for (uint8_t i=0; ihas_data()) { continue; } hal.console->printf("All: device_%u type %d status %d distance_cm %d\n", i, (int)sensor->type(), (int)sensor->status(), sensor->distance_cm()); had_data = true; } if (!had_data) { hal.console->printf("All: no data on any sensor\n"); } } AP_HAL_MAIN();