BLE to LORA or Sensor to LORA

Hi, thanks for the great project I’m using all the OMG flavours (OMG_ESP32_BLE, OMG_ESP32_LORA, OMG_rtl_433_ESP) and having a lot of fun.
Actually, I would like to try a new thing and I hope it makes sense.
I’m trying to use OMG to solve this use case.
I have two sites (home/garage) that are not reachable by wifi, BT but are reacheable via LORA 868. At home, I would like to have one OMG that receive LORA and push the things via WIFI & MQTT to HA. At garage I would like to have one OMG that reads BLE and send it home via LORA and another OMG that has some supported sensors connected and and send it home via LORA.
Do you think that is possible?
I tested with one LORA LilyGO device with OMG_ESP32_Lora at home as a receiver and one LORA LilyGO with a quick custom code that sends a counter in the garage and it worked covering the distance but I’m not able to custom code a sender for my use case.

I also thought about, as a second option, having one OMG doing sensor to wifi and mqtt then something like a mqtt relay that receives from the first OMG and relays mqtt to the second OMG and then another OMG doing wifi & mqtt to LORA.
Is one of these options viable?
I would really like some help if it makes sense.
Thanks a lot
Lorenzo

1 Like

Hello,

Those options make sense but can’t be done right now with the current codebase.
Nevertheless this is something that I’m interested on and can keep you in mind for further testing.
We started to implement BLE to SERIAL and SERIAL to MQTT as a beta feature , I would like to extend it to other combinations and document it properly.
Testers will be welcome.

Hi, thanks for the quick reply, I’ll be happy to provide support in testing once available. In the meantime, I’ll see what I can do for the second option.

I think something like

Have a nice day
Lorenzo

In case someone is willing to follow me in this rabbit hole, I’ll document what I achieved so far and what I need help with.

I have:
–GARAGE–

  • one ESP32 with OMG_ESP32_BLE connected with WIFI to a TP-LINK router and configured to send MQTT to an MQTT server in the router

  • one ESP32 lilygo Lora with OMG_ESP32_LORA connected with WIFI to a TP-LINK router configured to send MQTT to an MQTT server in the router

  • one TP-LINK router flashed with OpenWRT acting as Access point and some packages (mosquitto-client-nossl, mosquitto-nossl, luci-app-mosquitto, jq) to configure, receive and send data via MQTT

  • one shell script that runs in the router and that subscribes to one MQTT topic from the OMG_ESP32_BLE, makes some tweaks and publishes one MQTT topic for the OMG_ESP32_LORA to transmit

  • -HOME–

  • -one ESP32 lilygo Lora with OMG_ESP32_LORA connected with WIFI to my house and configured to my house MQTT server and Home assistant

So far when a new item get published by the OMG_ESP32_BLE in the openmqttgateway/OMG_ESP32_BLE_REMOTE/BTtoMQTT/# the script reads it and publishes it in the openmqttgateway/OMG_ESP32_LORA_REMOTE/commands/MQTTtoLORA -m “$json” so that the LORA transmit it and
the OMG_ESP32_LORA receive it. That’s an amazing result!!
But…
I send from OMG_ESP32_LORA_REMOTE using
mosquitto_pub -t openmqttgateway/OMG_ESP32_LORA_REMOTE/commands/MQTTtoLORA -m “$json” where json contains:
{“message”:“BLE2LORA”}
{“message”:“BLE2LORA”,“id”:“0F:80:E2:69:D4:AA”,“rssi”:-57}
{“message”:“BLE2LORA”,“id”:“5C:3B:13:62:D0:AF”,“brand”:“GENERIC”,“model”:“iBeacon”,“model_id”:“IBEACON”,“type”:“BCON”,“mfid”:“4c00”,“uuid”:“727dcfda75d24a9fba0442f3a0a91822”,“rssi”:-79}
{“message”:“BLE2LORA”,“id”:“FF:FF:10:D5:E8:BC”,“brand”:“iTAG”,“model”:“Smart Tracker”,“model_id”:“ITAG”,“type”:“TRACK”,“rssi”:-86}

but I receive on the other end OMG_ESP32_LORA_REMOTE

N: LORA packet deserialization failed, not a json, sending raw message
N: [ OMG->MQTT ] topic: openmqttgateway/OMG_ESP32_LORA/LORAtoMQTT msg: {“message”:“BLE2LORA”,“rssi”:-89,“snr”:9.25,“pferror”:1015,“packetSize”:8}
N: LORA packet deserialization failed, not a json, sending raw message
N: [ OMG->MQTT ] topic: openmqttgateway/OMG_ESP32_LORA/LORAtoMQTT msg: {“message”:“BLE2LORA”,“rssi”:-90,“snr”:9.25,“pferror”:1015,“packetSize”:8}
N: LORA packet deserialization failed, not a json, sending raw message
N: [ OMG->MQTT ] topic: openmqttgateway/OMG_ESP32_LORA/LORAtoMQTT msg: {“message”:“BLE2LORA”,“rssi”:-91,“snr”:9.5,“pferror”:1015,“packetSize”:8}

I’m not a software developer so I gpted a lot to build this script, and something obvious to someone knowing what it takes, maybe easy to spot I guess that there is something in the JSON creation, data formatting, parsing that does not allow proper transmission and reception.
I tried to send a nested JSON like this
{
“message”: {
“id”: “30:AE:A4:CF:DF:F2”,
“rssi”: -95,
“uuid”: “abc123”,
“txpower”: -59
}
}
but did not work
I tried to send a JSON like this
{
“id”: “30:AE:A4:CF:DF:F2”,
“rssi”: -95,
“brand”: “GENERIC”,
“uuid”: “abc123”,
“txpower”: -59
}
but not worked, it seems that it expects a message: as the first thing

I tried
‘{“message”: “id=30:AE:A4:CF:DF:F2, brand=GENERIC, model=iBeacon, model_id=IBEACON, type=BCON, mfid=4c00, uuid=727dcfda75d24a9fba0442f3a0a91822,timestamp=2025-03-27T15:42:00Z”}’

and it worked in the form of an hex

N: [ OMG->MQTT ] topic: openmqttgateway/OMG_ESP32_LORA/LORAtoMQTT msg: {“hex”:“69643D33303A41453A41343A43463A44463A46322C206272616E643D47454E455249432C0A6D6F64656C3D69426561636F6E2C206D6F64656C5F69643D49424541434F4E2C20747970653D42434F4E2C206D6669643D346330302C20757569643D37323764636664613735643234613966626130343432663361306139313832322C74696D657374616D703D323032352D30332D32375431353A34323A30305A”,“rssi”:-81,“snr”:10,“pferror”:1317,“packetSize”:160}

that contains:
id=30:AE:A4:CF:DF:F2, brand=GENERIC, model=iBeacon, model_id=IBEACON, type=BCON, mfid=4c00, uuid=727dcfda75d24a9fba0442f3a0a91822,timestamp=2025-03-27T15:42:0

but I’m not sure what to do now:
-the last approach for message generation is the correct one or there is something more json friendly?
-in general what are the data formatting needed to send things with OMG via LORA commands?

Why you need to use OMG and don’t you do it with a simply lora to lora commands and expose the switch or button of the main (home) lora to ha through http+rest command.

Good questions, there is no structure when we are using Raw LoRa messages, this is why I proposed an approach below:

The supported parameters keys are below:

That being said I would need more information about your use case to guide you

Are you trying to use BLE for presence detection, to read a BM2 battery monitor, to read other sensors ?

Hi,
Thanks for pointing me to the code to see why the demo sender counter app was working and better understand some internals.

My use cases for BLE are:
-Presence detection of a BLE iBeacon (Holy-iot)
{"id":"C0:F4:8F:37:61:6B","name":"Holy-IOT","rssi":-59,"brand":"GENERIC","model":"iBeacon","model_id":"IBEACON","type":"BCON","mfid":"4c00","uuid":"fda50693a4e24fb1afcfc6eb07647825","major":10011,"minor":19641,"txpower":-55}

-Temperature /Humidity reading of an Inkbird sensor {"id":"6C:C3:74:FE:11:FF","name":"sps","rssi":-61,"brand":"Inkbird","model":"T(H) Sensor","model_id":"IBS-TH1/TH2/P01B/ITH-12S","type":"THB","tempc":20.81,"tempf":69.458,"extprobe":false,"hum":43.37,"batt":100}

-Presence detection and battery charge (if possible) of a Bosch based e-bike (to be collected)

So far, I coded a script that stringified all the values that I’m interested in, but I think that is not optimal. Probably I should use different paths for devices that have some values recognised by the code you showed me and others.

The message gets sent out successfully in this format:

{"message":"id=6C:C3:74:FE:11:FF,rssi=-55,model=IBS-TH1/TH2/P01B/ITH-12S,name=sps,brand=Inkbird,model=T(H) Sensor,model_id=IBS-TH1/TH2/P01B/ITH-12S,type=THB,tempc=20.9,hum=43.39,batt=100,ts=2025-04-02T11:11:28Z"}

{"message":"id=C0:F4:8F:37:61:6B,rssi=-60,tx=-55,model=IBEACON,name=Holy-IOT,brand=GENERIC,model=iBeacon,model_id=IBEACON,type=BCON,mfid=4c00,uuid=fda50693a4e24fb1afcfc6eb07647825,ts=2025-04-02T11:12:40Z"}

Once I explored the BLE use cases, I’ll move to the 433 use cases with another OMG dedicated to that, using the same approach:
-Transmitting 433 codes for opening the main door of a shared parking space
-Door sensor/Presence Sensor with some 433 Mhz sensors that I have

Hi @joecondo

Just FYI, if you use the development version of OpenMQTTGateway you should also already get the Holy-iot beacon detected and decoded - with its battery level only so far, not just as a generic iBeacon.

Also if you set Advertisement and advanced data to true you will also additionally see the raw advertising data, which will be useful for possibly being able to create a decoder for your Bosch based e-bike. So far we only recognise Bosch Nyon eBike computers as device trackers, but they didn’t seem to broadcast their battery status - might depend on the model if yours is not recognised with the existing decoder.