Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / SonarControl.h @ c492be62

History | View | Annotate | Download (2.55 KB)

1
/**
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
 */
25

    
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
#include <sonar/sonar_direction.h>
44

    
45
class SonarControl
46
{
47
    public:
48
        /** Set up the motor node and prepare to communicate over ROS */
49
        SonarControl(const ros::NodeHandle& libscout_node,
50
                     std::string scoutname);
51

    
52
        /** Sets sonar to a position (0-180 deg) specified by input */
53
        void set_single(int position);
54

    
55
        /** Sets sonar to scan a range in 0-180 specified by input */
56
        void set_range(int start_pos, int end_pos);
57

    
58
        /** Stops sonar from panning and taking readings */
59
        void set_off();        
60
    
61
    private:
62
        /** Record the new sonar distance measurement */
63
        void distance_callback(const sonar::sonar_distance::ConstPtr& msg);
64

    
65
        /** Converts between values output by sensor and physical distances */
66
        //float sonar_to_dist(float sonar_value);
67
        //float dist_to_sonar(float distance);
68

    
69
        /* ROS publisher and client declaration */
70
        ros::Publisher sonar_set_scan_pub;
71
        ros::Publisher sonar_toggle_pub;
72
        ros::Subscriber sonar_distance_sub;
73

    
74
        ros::NodeHandle node;
75
};
76

    
77
#endif
78