This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
XbeeMav/include/XBeeParameter.h

18 lines
508 B
C
Raw Normal View History

2017-01-10 13:14:41 -04:00
/* XBee_Parameter.h -- Xbee command struct -- */
/* ------------------------------------------------------------------------- */
/* November 30, 2016 -- @Copyright Aymen Soussia. All rights reserved. */
/* (aymen.soussia@gmail.com) */
#pragma once
#include<string>
//*****************************************************************************
struct XBee_Parameter_S
{
std::string command_;
std::string value_;
};