Point-to-Point LoRa communication with two MKR 1310s Good morning, I would like to create a LoRa PPP communication with two Arduino MKR 1310s. I installed this library GitHub - sandeepmistry/arduino-LoRa: An Arduino library for sending and receiving data using LoRa radios. and I saw that there are two examples, LoRa Receiver and LoRa Sender. If I put the Receiver on one of the two MKR 1310s and the Sender on the other I should create a PPP communication, is it correct? Or do I have to change something? I have read that this library does not have the 1% limit of the transmission duty cycle, how can I add it? I need to know the real range of transmission. For the moment, even the encryption of the communication is not of my interest.
Also I have to transmit at 868 MHz (I'm in Italy), do I have to modify this line?
(! LoRa.begin (915E6))
if yes, I have to change it to:
(! LoRa.begin (868E6))
Thank you.