class XBee::Frames::OverTheAirFirmwareUpdateStatus

Attributes

block_number[RW]
bootloader_message[RW]
options[RW]
target_address64[RW]

Public Class Methods

new(packet: nil) click to toggle source
Calls superclass method
# File lib/xbee/frames/over_the_air_firmware_update_status.rb, line 16
def initialize(packet: nil)
        super

        if @parse_bytes
                @options = @parse_bytes.shift
                @bootloader_message = @parse_bytes.shift
                @block_number = @parse_bytes.shift
                @target_address64 = Address64.new *@parse_bytes.shift(8)
        end
end