This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Ruuvitag BLE integration
#2
The sensor uses BLE advertising packets to send data. This means that you do not need to connect to it and just parse the advertising packet data.
Run this script and post what you get in logs tab. You might need to disable it quickly if there are many packets sent.
Code:
require('ble')

-- enable ble
ble.up()

function callback(addr, name, rssi, data)
  if addr then
    log(addr)
    loghex(data)
  end
end

ble.scan(callback)
Reply


Messages In This Thread
Ruuvitag BLE integration - by Papru - 22.05.2020, 05:26
RE: Ruuvitag BLE integration - by admin - 22.05.2020, 09:56
RE: Ruuvitag BLE integration - by Papru - 22.05.2020, 11:35
RE: Ruuvitag BLE integration - by admin - 22.05.2020, 11:36
RE: Ruuvitag BLE integration - by Papru - 22.05.2020, 11:43
RE: Ruuvitag BLE integration - by admin - 22.05.2020, 11:45
RE: Ruuvitag BLE integration - by Papru - 22.05.2020, 11:48
RE: Ruuvitag BLE integration - by admin - 22.05.2020, 12:38
RE: Ruuvitag BLE integration - by Papru - 22.05.2020, 13:01
RE: Ruuvitag BLE integration - by admin - 22.05.2020, 13:25
RE: Ruuvitag BLE integration - by Papru - 22.05.2020, 13:38
RE: Ruuvitag BLE integration - by admin - 24.05.2020, 11:33

Forum Jump: