Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / SonarControl.h @ 8b7d6f99

History | View | Annotate | Download (3.08 KB)

1 65c7f52b pdeo
/**
2
 * Copyright (c) 2011 Colony Project
3
 * 
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use,
8
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the
10
 * Software is furnished to do so, subject to the following
11
 * conditions:
12
 * 
13
 * The above copyright notice and this permission notice shall be
14
 * included in all copies or substantial portions of the Software.
15
 * 
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
 * OTHER DEALINGS IN THE SOFTWARE.
24 c492be62 Alex Zirbel
 */
25 65c7f52b pdeo
26
/**
27
 * @file SonarControl.h
28
 * @brief Contains sonar declarations and functions
29
 * 
30
 * Contains functions and definitions for the use of
31
 * sonar
32
 *
33
 * @author Colony Project, CMU Robotics Club
34
 * @author Priyanka Deo
35
 **/
36
37
#ifndef _SONAR_CONTROL_H_
38
#define _SONAR_CONTROL_H_
39
40
#include <ros/ros.h>
41
#include <sonar/sonar_set_scan.h>
42
#include <sonar/sonar_toggle.h>
43 b00761a0 Alex Zirbel
#include <sonar/sonar_distance.h>
44
45
#include "constants.h"
46 65c7f52b pdeo
47
class SonarControl
48
{
49
    public:
50
        /** Set up the motor node and prepare to communicate over ROS */
51 c492be62 Alex Zirbel
        SonarControl(const ros::NodeHandle& libscout_node,
52
                     std::string scoutname);
53 65c7f52b pdeo
54 b00761a0 Alex Zirbel
        /** Sets sonar to a position (0-23) specified by input */
55 c492be62 Alex Zirbel
        void set_single(int position);
56 65c7f52b pdeo
57 b00761a0 Alex Zirbel
        /** Sets sonar to scan a range in 0-23 specified by input */
58 15b7e607 pdeo
        void set_range(int start_pos, int end_pos);
59
60 b00761a0 Alex Zirbel
        /** (Re)starts sonar panning and taking readings */
61
        void set_on();
62
63 c492be62 Alex Zirbel
        /** Stops sonar from panning and taking readings */
64
        void set_off();        
65 b00761a0 Alex Zirbel
66 3db79f25 Priya
        /** Get sonar readings */
67
        int* get_sonar_readings();
68
69 65c7f52b pdeo
    private:
70 c492be62 Alex Zirbel
        /** Record the new sonar distance measurement */
71
        void distance_callback(const sonar::sonar_distance::ConstPtr& msg);
72 65c7f52b pdeo
73 b00761a0 Alex Zirbel
        /** Sends a sonar_toggle message. */
74
        void set_power(bool is_on);
75
76 c492be62 Alex Zirbel
        /** Converts between values output by sensor and physical distances */
77
        //float sonar_to_dist(float sonar_value);
78
        //float dist_to_sonar(float distance);
79 65c7f52b pdeo
80 b00761a0 Alex Zirbel
        /** If a service call fails, tries again this many times. */
81
        int num_attempts;
82
83
        /** Keep track of the latest readings and their time of receipt.
84
         *  Readings are in millimeters. */
85
        int readings[48];
86
        ros::Time timestamps[48];
87
88 c492be62 Alex Zirbel
        /* ROS publisher and client declaration */
89 b00761a0 Alex Zirbel
        ros::ServiceClient sonar_set_scan_client;
90
        ros::ServiceClient sonar_toggle_client;
91 c492be62 Alex Zirbel
        ros::Subscriber sonar_distance_sub;
92 65c7f52b pdeo
93
        ros::NodeHandle node;
94
};
95
96
#endif