/** \file
 *
 *  Specifies the interface details for the Rowe_600 component in the
 *  SensorModule.
 *
 *  Rowe_600.h should only be included by Rowe_600.cpp
 *  Other classes should include Rowe_600.h
 *
 *  Copyright (c) 2007,2008,2009 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 */

#ifndef ROWE_600IF_H
#define ROWE_600IF_H

#include "data/ElementURI.h"
#include "data/BlobValue.h"

/**
 *  Specifies the interface details for the Rowe_600 component in the
 *  SensorModule.
 *
 *  \ingroup modules_sensor
 */
namespace Rowe_600IF
{
/// Static const for component name
/// (Can be used by other components)
static const Str NAME( "Rowe_600" );

// Include common ConfigURIs -- must be in namespace and follow definition of NAME
#include "component/HasLoadAtStartupIF.h"
#include "component/HasHardwareIF.h"
#include "component/HasLoadControlIF.h"
#include "component/HasPowerIF.h"
#include "component/HasUartIF.h"

static const DataURI STATUS_READING( NAME, "Status", Units::COUNT );


static const DataURI BOTTOM_VELOCITY_FLAG_READING( NAME, "BottomVelocityFlag", Units::COUNT );
static const DataURI BOTTOM_SHIP_VELOCITY_FLAG_READING( NAME, "BottomShipVelocityFlag", Units::COUNT );

static const DataURI BEAM1RANGE( NAME, "Beam1Range", Units::METER );
static const DataURI BEAM2RANGE( NAME, "Beam2Range", Units::METER );
static const DataURI BEAM3RANGE( NAME, "Beam3Range", Units::METER );
static const DataURI BEAM4RANGE( NAME, "Beam4Range", Units::METER );

}

#endif /*ROWE_600IF_H*/
