Class: Std_msgs::Int16

Inherits:
ROS::Message
  • Object
show all
Defined in:
lib/std_msgs/Int16.rb

Constant Summary collapse

@@struct_s =
::ROS::Struct.new("s")
@@struct_L =
::ROS::Struct.new("L")
@@slot_types =
['int16']

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ Int16

Constructor. You can set the default values using keyword operators.

Parameters:

  • args (Hash) (defaults to: {})

    keyword for initializing values

Options Hash (args):

  • :data (int16)

    initialize value



36
37
38
39
40
41
42
43
# File 'lib/std_msgs/Int16.rb', line 36

def initialize(args={})
  # message fields cannot be None, assign default values for those that are
  if args[:data]
    @data = args[:data]
  else
    @data = 0
  end
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



25
26
27
# File 'lib/std_msgs/Int16.rb', line 25

def data
  @data
end

Class Method Details

.md5sumObject



8
9
10
# File 'lib/std_msgs/Int16.rb', line 8

def self.md5sum
  "8524586e34fbd7cb1c08c5f5f1ca0e57"
end

.typeObject



12
13
14
# File 'lib/std_msgs/Int16.rb', line 12

def self.type
  "std_msgs/Int16"
end

Instance Method Details

#_get_typesString

internal API method

Returns:

  • (String)

    Message type string.



47
48
49
# File 'lib/std_msgs/Int16.rb', line 47

def _get_types
  @slot_types
end

#deserialize(str) ⇒ Object

unpack serialized message in str into this message instance

@param [String] str: byte array of serialized message


64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/std_msgs/Int16.rb', line 64

def deserialize(str)

  begin
    end_point = 0
    start = end_point
    end_point += ROS::Struct::calc_size('s')
    (@data,) = @@struct_s.unpack(str[start..(end_point-1)])
    return self
  rescue => exception
    raise "message DeserializationError: #{exception}" #most likely buffer underfill
  end
end

#has_header?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/std_msgs/Int16.rb', line 16

def has_header?
  false
end

#message_definitionObject



20
21
22
23
24
# File 'lib/std_msgs/Int16.rb', line 20

def message_definition
  "int16 data

"
end

#serialize(buff) ⇒ Object

serialize message into buffer

Parameters:

  • buff (IO)

    buffer



53
54
55
56
57
58
59
60
# File 'lib/std_msgs/Int16.rb', line 53

def serialize(buff)
  begin
    buff.write(@@struct_s.pack(@data))
  rescue => exception
    raise "some erro in serialize: #{exception}"

  end
end