Is there no addressed communication in the library for the ProRF board

Am I missing something, or is there actually no way to do addressed communication with the RadioHead RH_RF95 library? If not is there another library that is compatible with the SAMD21 Pro RF board, that will utilize LoRa address capability? This is really important for my project… so wondering if I need to order a different LoRa module instead of this SamD21 RFM95W combo board.

Oh!.. I think my question is answered in the overview for the RadioHead library. I should have read closer before. Looks like I need to load a “manager”. RH_RF95 is only the driver. Correct?

Overview

RadioHead consists of 2 main sets of classes: Drivers and Managers.

Drivers provide low level access to a range of different packet radios and other packetized message transports.

Managers provide high level message sending and receiving facilities for a range of different requirements.

Every RadioHead program will have an instance of a Driver to provide access to the data radio or transport, and usually a Manager that uses that driver to send and receive messages for the application. The programmer is required to instantiate a Driver and a Manager, and to initialise the Manager. Thereafter the facilities of the Manager can be used to send and receive messages.