Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / PaintBoardControl.h @ 34a60a3b

History | View | Annotate | Download (2.19 KB)

1 dbe4fa43 Leon
/**
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 34a60a3b Priya
 */
25 dbe4fa43 Leon
26
/**
27 34a60a3b Priya
 * @file PaintBoardControl.h
28
 * @brief Contains motor declarations and functions
29 dbe4fa43 Leon
 * 
30
 * Contains functions and definitions for the use of
31 34a60a3b Priya
 * motors
32 dbe4fa43 Leon
 *
33
 * @author Colony Project, CMU Robotics Club
34
 * @author Priyanka Deo
35
 **/
36
37 34a60a3b Priya
#ifndef _PAINT_BOARD_CONTROL_H_
38
#define _PAINT_BOARD_CONTROL_H_
39 dbe4fa43 Leon
40 34a60a3b Priya
#include <ros/ros.h>
41 9c0008d0 Leon
#include "constants.h"
42 34a60a3b Priya
#include <messages/set_paintboard.h>
43
#include <messages/query_paintboard.h>
44 dbe4fa43 Leon
45 34a60a3b Priya
#define STOP_PAINT 0
46
#define DISPENSE_PAINT 1
47 dbe4fa43 Leon
48 34a60a3b Priya
class PaintBoardControl
49 dbe4fa43 Leon
{
50
    public:
51 34a60a3b Priya
        /** Set up the paintboard node and prepare to communicate over ROS */
52
        PaintBoardControl(const ros::NodeHandle& libscout_node,
53
                     std::string scoutname);
54 dbe4fa43 Leon
55 34a60a3b Priya
        ~PaintBoardControl();
56 dbe4fa43 Leon
57 34a60a3b Priya
        /** Turns the paintboard on or off. */
58
        void set(int paintboard_setting);
59 dbe4fa43 Leon
60 34a60a3b Priya
        /** Checks whether the paintboard is currently dispensing paint */
61
        int query();
62
    
63 dbe4fa43 Leon
    private:
64 34a60a3b Priya
        /** ROS publisher and client declaration */
65
        ros::Publisher set_paintboard_pub;
66
        ros::ServiceClient query_paintboard_client;
67 dbe4fa43 Leon
68 34a60a3b Priya
        ros::NodeHandle node;
69 9c0008d0 Leon
};
70 dbe4fa43 Leon
71
#endif