Go to the documentation of this file.00001 """autogenerated by genpy from mav_srvs/GetMotorsOnOffRequest.msg. Do not edit."""
00002 import sys
00003 python3 = True if sys.hexversion > 0x03000000 else False
00004 import genpy
00005 import struct
00006
00007
00008 class GetMotorsOnOffRequest(genpy.Message):
00009 _md5sum = "d41d8cd98f00b204e9800998ecf8427e"
00010 _type = "mav_srvs/GetMotorsOnOffRequest"
00011 _has_header = False
00012 _full_text = """
00013 """
00014 __slots__ = []
00015 _slot_types = []
00016
00017 def __init__(self, *args, **kwds):
00018 """
00019 Constructor. Any message fields that are implicitly/explicitly
00020 set to None will be assigned a default value. The recommend
00021 use is keyword arguments as this is more robust to future message
00022 changes. You cannot mix in-order arguments and keyword arguments.
00023
00024 The available fields are:
00025
00026
00027 :param args: complete set of field values, in .msg order
00028 :param kwds: use keyword arguments corresponding to message field names
00029 to set specific fields.
00030 """
00031 if args or kwds:
00032 super(GetMotorsOnOffRequest, self).__init__(*args, **kwds)
00033
00034 def _get_types(self):
00035 """
00036 internal API method
00037 """
00038 return self._slot_types
00039
00040 def serialize(self, buff):
00041 """
00042 serialize message into buffer
00043 :param buff: buffer, ``StringIO``
00044 """
00045 try:
00046 pass
00047 except struct.error as se: self._check_types(se)
00048 except TypeError as te: self._check_types(te)
00049
00050 def deserialize(self, str):
00051 """
00052 unpack serialized message in str into this message instance
00053 :param str: byte array of serialized message, ``str``
00054 """
00055 try:
00056 end = 0
00057 return self
00058 except struct.error as e:
00059 raise genpy.DeserializationError(e)
00060
00061
00062 def serialize_numpy(self, buff, numpy):
00063 """
00064 serialize message with numpy array types into buffer
00065 :param buff: buffer, ``StringIO``
00066 :param numpy: numpy python module
00067 """
00068 try:
00069 pass
00070 except struct.error as se: self._check_types(se)
00071 except TypeError as te: self._check_types(te)
00072
00073 def deserialize_numpy(self, str, numpy):
00074 """
00075 unpack serialized message in str into this message instance using numpy for array types
00076 :param str: byte array of serialized message, ``str``
00077 :param numpy: numpy python module
00078 """
00079 try:
00080 end = 0
00081 return self
00082 except struct.error as e:
00083 raise genpy.DeserializationError(e)
00084
00085 _struct_I = genpy.struct_I
00086 """autogenerated by genpy from mav_srvs/GetMotorsOnOffResponse.msg. Do not edit."""
00087 import sys
00088 python3 = True if sys.hexversion > 0x03000000 else False
00089 import genpy
00090 import struct
00091
00092
00093 class GetMotorsOnOffResponse(genpy.Message):
00094 _md5sum = "74983d2ffe4877de8ae30b7a94625c41"
00095 _type = "mav_srvs/GetMotorsOnOffResponse"
00096 _has_header = False
00097 _full_text = """bool on
00098
00099
00100 """
00101 __slots__ = ['on']
00102 _slot_types = ['bool']
00103
00104 def __init__(self, *args, **kwds):
00105 """
00106 Constructor. Any message fields that are implicitly/explicitly
00107 set to None will be assigned a default value. The recommend
00108 use is keyword arguments as this is more robust to future message
00109 changes. You cannot mix in-order arguments and keyword arguments.
00110
00111 The available fields are:
00112 on
00113
00114 :param args: complete set of field values, in .msg order
00115 :param kwds: use keyword arguments corresponding to message field names
00116 to set specific fields.
00117 """
00118 if args or kwds:
00119 super(GetMotorsOnOffResponse, self).__init__(*args, **kwds)
00120
00121 if self.on is None:
00122 self.on = False
00123 else:
00124 self.on = False
00125
00126 def _get_types(self):
00127 """
00128 internal API method
00129 """
00130 return self._slot_types
00131
00132 def serialize(self, buff):
00133 """
00134 serialize message into buffer
00135 :param buff: buffer, ``StringIO``
00136 """
00137 try:
00138 buff.write(_struct_B.pack(self.on))
00139 except struct.error as se: self._check_types(se)
00140 except TypeError as te: self._check_types(te)
00141
00142 def deserialize(self, str):
00143 """
00144 unpack serialized message in str into this message instance
00145 :param str: byte array of serialized message, ``str``
00146 """
00147 try:
00148 end = 0
00149 start = end
00150 end += 1
00151 (self.on,) = _struct_B.unpack(str[start:end])
00152 self.on = bool(self.on)
00153 return self
00154 except struct.error as e:
00155 raise genpy.DeserializationError(e)
00156
00157
00158 def serialize_numpy(self, buff, numpy):
00159 """
00160 serialize message with numpy array types into buffer
00161 :param buff: buffer, ``StringIO``
00162 :param numpy: numpy python module
00163 """
00164 try:
00165 buff.write(_struct_B.pack(self.on))
00166 except struct.error as se: self._check_types(se)
00167 except TypeError as te: self._check_types(te)
00168
00169 def deserialize_numpy(self, str, numpy):
00170 """
00171 unpack serialized message in str into this message instance using numpy for array types
00172 :param str: byte array of serialized message, ``str``
00173 :param numpy: numpy python module
00174 """
00175 try:
00176 end = 0
00177 start = end
00178 end += 1
00179 (self.on,) = _struct_B.unpack(str[start:end])
00180 self.on = bool(self.on)
00181 return self
00182 except struct.error as e:
00183 raise genpy.DeserializationError(e)
00184
00185 _struct_I = genpy.struct_I
00186 _struct_B = struct.Struct("<B")
00187 class GetMotorsOnOff(object):
00188 _type = 'mav_srvs/GetMotorsOnOff'
00189 _md5sum = '74983d2ffe4877de8ae30b7a94625c41'
00190 _request_class = GetMotorsOnOffRequest
00191 _response_class = GetMotorsOnOffResponse