Class: ScanBeacon::BLE112Device::BLE112Response

Inherits:
Object
  • Object
show all
Defined in:
lib/scan_beacon/ble112_device.rb

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ BLE112Response

Returns a new instance of BLE112Response.



132
133
134
135
# File 'lib/scan_beacon/ble112_device.rb', line 132

def initialize(data)
  data ||= ""
  @data = data.force_encoding("ASCII-8BIT")
end

Instance Method Details

#advertisement?Boolean

Returns:

  • (Boolean)


157
158
159
# File 'lib/scan_beacon/ble112_device.rb', line 157

def advertisement?
  event? && gap_scan? && (manufacturer_ad? || service_ad?)
end


165
166
167
# File 'lib/scan_beacon/ble112_device.rb', line 165

def advertisement_data
  @advertisement_data ||= @data[20..-1]
end


161
162
163
# File 'lib/scan_beacon/ble112_device.rb', line 161

def advertisement_type
  @data[19].unpack('C')[0]
end

#event?Boolean

Returns:

  • (Boolean)


141
142
143
# File 'lib/scan_beacon/ble112_device.rb', line 141

def event?
  @data[0].unpack('C')[0] == BG_EVENT
end

#gap_scan?Boolean

Returns:

  • (Boolean)


145
146
147
# File 'lib/scan_beacon/ble112_device.rb', line 145

def gap_scan?
  @data[2..3].unpack('CC') == [BG_MSG_CLASS_GAP, 0]
end

#macObject



169
170
171
# File 'lib/scan_beacon/ble112_device.rb', line 169

def mac
  @data[6..11].unpack('H2 H2 H2 H2 H2 H2').join(":")
end

#manufacturer_ad?Boolean

Returns:

  • (Boolean)


149
150
151
# File 'lib/scan_beacon/ble112_device.rb', line 149

def manufacturer_ad?
  size > 20 && advertisement_type == 0xFF
end

#rssiObject



173
174
175
# File 'lib/scan_beacon/ble112_device.rb', line 173

def rssi
  @data[4].unpack('c')[0]
end

#service_ad?Boolean

Returns:

  • (Boolean)


153
154
155
# File 'lib/scan_beacon/ble112_device.rb', line 153

def service_ad?
  size > 20 && advertisement_type ==0x03
end

#sizeObject



137
138
139
# File 'lib/scan_beacon/ble112_device.rb', line 137

def size
  @data.size
end