Im looking for library that I can use with 2 types of devices with LoRa radiomodules - Moteino (RFM95)
(https:// lowpowerlab. com/shop/product/99)
and Cubecell HTCC-AB01/AB02 (SX1262)
(https:// heltec. org/project/htcc-ab01/)
(https:// heltec. org/project/htcc-ab02/)
Library should support “node addresses”, so each LoRa node has their addresses - just number - 1, 2, 3, etc…
These nodes are “sleep” almost all time and during the daytime they wakeup every 1 minute to check if there is request from another node with special address, for example - address 100.
If there is such request - node send back the data from sensors.
If there no request - node start to sleep again for 1 min.
This way to work already implemented with library RadioHead for nodes based on Moteino and these nodes work OK during 3-4 month being covered under snow.
So Im looking for some library that will allow me add CubeCell based devices into this network…
But currently RadioHead library doesnt support SX1262 modules…
And native Cubecell library -
(https:// github. com/HelTecAutomation/CubeCell-Arduino/tree/master/libraries/LoRa/examples)
doesnt support “node addresses” with plain LoRa mode, only LoRaWAN which is not an option in my current network setup, because I cant add LoRaWAN gateway and switch to LoRaWAN mode.
There is also good library RadioLib - (https:// github. com/jgromes/RadioLib)
which support SX1262 but node addresses can be used only in FSK mode… no plain LoRa mode address for nodes…
Im still cant found the way to work with my devices with one common library and this issue with addresses prevent to begin my test new modules…
Please advice…