first commit
This commit is contained in:
83
examples/rf95/rf95_client/rf95_client.ino
Normal file
83
examples/rf95/rf95_client/rf95_client.ino
Normal file
@@ -0,0 +1,83 @@
|
||||
// rf95_client.pde
|
||||
// -*- mode: C++ -*-
|
||||
// Example sketch showing how to create a simple messageing client
|
||||
// with the RH_RF95 class. RH_RF95 class does not provide for addressing or
|
||||
// reliability, so you should only use RH_RF95 if you do not need the higher
|
||||
// level messaging abilities.
|
||||
// It is designed to work with the other example rf95_server
|
||||
// Tested with Anarduino MiniWirelessLoRa, Rocket Scream Mini Ultra Pro with
|
||||
// the RFM95W, Adafruit Feather M0 with RFM95
|
||||
|
||||
#include <SPI.h>
|
||||
#include <RH_RF95.h>
|
||||
|
||||
// Singleton instance of the radio driver
|
||||
RH_RF95 rf95;
|
||||
//RH_RF95 rf95(5, 2); // Rocket Scream Mini Ultra Pro with the RFM95W
|
||||
//RH_RF95 rf95(8, 3); // Adafruit Feather M0 with RFM95
|
||||
|
||||
// Need this on Arduino Zero with SerialUSB port (eg RocketScream Mini Ultra Pro)
|
||||
//#define Serial SerialUSB
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Rocket Scream Mini Ultra Pro with the RFM95W only:
|
||||
// Ensure serial flash is not interfering with radio communication on SPI bus
|
||||
// pinMode(4, OUTPUT);
|
||||
// digitalWrite(4, HIGH);
|
||||
|
||||
Serial.begin(9600);
|
||||
while (!Serial) ; // Wait for serial port to be available
|
||||
if (!rf95.init())
|
||||
Serial.println("init failed");
|
||||
// Defaults after init are 434.0MHz, 13dBm, Bw = 125 kHz, Cr = 4/5, Sf = 128chips/symbol, CRC on
|
||||
|
||||
// You can change the modulation parameters with eg
|
||||
// rf95.setModemConfig(RH_RF95::Bw500Cr45Sf128);
|
||||
|
||||
// The default transmitter power is 13dBm, using PA_BOOST.
|
||||
// If you are using RFM95/96/97/98 modules which uses the PA_BOOST transmitter pin, then
|
||||
// you can set transmitter powers from 2 to 20 dBm:
|
||||
// rf95.setTxPower(20, false);
|
||||
// If you are using Modtronix inAir4 or inAir9, or any other module which uses the
|
||||
// transmitter RFO pins and not the PA_BOOST pins
|
||||
// then you can configure the power transmitter power for 0 to 15 dBm and with useRFO true.
|
||||
// Failure to do that will result in extremely low transmit powers.
|
||||
// rf95.setTxPower(14, true);
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
Serial.println("Sending to rf95_server");
|
||||
// Send a message to rf95_server
|
||||
uint8_t data[] = "Hello World!";
|
||||
rf95.send(data, sizeof(data));
|
||||
|
||||
rf95.waitPacketSent();
|
||||
// Now wait for a reply
|
||||
uint8_t buf[RH_RF95_MAX_MESSAGE_LEN];
|
||||
uint8_t len = sizeof(buf);
|
||||
|
||||
if (rf95.waitAvailableTimeout(3000))
|
||||
{
|
||||
// Should be a reply message for us now
|
||||
if (rf95.recv(buf, &len))
|
||||
{
|
||||
Serial.print("got reply: ");
|
||||
Serial.println((char*)buf);
|
||||
// Serial.print("RSSI: ");
|
||||
// Serial.println(rf95.lastRssi(), DEC);
|
||||
}
|
||||
else
|
||||
{
|
||||
Serial.println("recv failed");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Serial.println("No reply, is rf95_server running?");
|
||||
}
|
||||
delay(400);
|
||||
}
|
||||
|
||||
|
@@ -0,0 +1,47 @@
|
||||
// LoRa Simple Hello World Client with encrypted communications
|
||||
// In order for this to compile you MUST uncomment the #define RH_ENABLE_ENCRYPTION_MODULE line
|
||||
// at the bottom of RadioHead.h, AND you MUST have installed the Crypto directory from arduinolibs:
|
||||
// http://rweather.github.io/arduinolibs/index.html
|
||||
// Philippe.Rochat'at'gmail.com
|
||||
// 06.07.2017
|
||||
|
||||
#include <RH_RF95.h>
|
||||
#include <RHEncryptedDriver.h>
|
||||
#include <Speck.h>
|
||||
|
||||
RH_RF95 rf95; // Instanciate a LoRa driver
|
||||
Speck myCipher; // Instanciate a Speck block ciphering
|
||||
RHEncryptedDriver myDriver(rf95, myCipher); // Instantiate the driver with those two
|
||||
|
||||
float frequency = 868.0; // Change the frequency here.
|
||||
unsigned char encryptkey[16] = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}; // The very secret key
|
||||
char HWMessage[] = "Hello World ! I'm happy if you can read me";
|
||||
uint8_t HWMessageLen;
|
||||
|
||||
void setup()
|
||||
{
|
||||
HWMessageLen = strlen(HWMessage);
|
||||
Serial.begin(9600);
|
||||
while (!Serial) ; // Wait for serial port to be available
|
||||
Serial.println("LoRa Simple_Encrypted Client");
|
||||
if (!rf95.init())
|
||||
Serial.println("LoRa init failed");
|
||||
// Setup ISM frequency
|
||||
rf95.setFrequency(frequency);
|
||||
// Setup Power,dBm
|
||||
rf95.setTxPower(13);
|
||||
myCipher.setKey(encryptkey, sizeof(encryptkey));
|
||||
Serial.println("Waiting for radio to setup");
|
||||
delay(1000);
|
||||
Serial.println("Setup completed");
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
uint8_t data[HWMessageLen+1] = {0};
|
||||
for(uint8_t i = 0; i<= HWMessageLen; i++) data[i] = (uint8_t)HWMessage[i];
|
||||
myDriver.send(data, sizeof(data)); // Send out ID + Sensor data to LoRa gateway
|
||||
Serial.print("Sent: ");
|
||||
Serial.println((char *)&data);
|
||||
delay(4000);
|
||||
}
|
@@ -0,0 +1,48 @@
|
||||
// LoRa simple server with encrypted communications
|
||||
// In order for this to compile you MUST uncomment the #define RH_ENABLE_ENCRYPTION_MODULE line
|
||||
// at the bottom of RadioHead.h, AND you MUST have installed the Crypto directory from arduinolibs:
|
||||
// http://rweather.github.io/arduinolibs/index.html
|
||||
// Philippe.Rochat'at'gmail.com
|
||||
// 06.07.2017
|
||||
|
||||
#include <RH_RF95.h>
|
||||
#include <RHEncryptedDriver.h>
|
||||
#include <Speck.h>
|
||||
|
||||
RH_RF95 rf95; // Instanciate a LoRa driver
|
||||
Speck myCipher; // Instanciate a Speck block ciphering
|
||||
RHEncryptedDriver myDriver(rf95, myCipher); // Instantiate the driver with those two
|
||||
|
||||
float frequency = 868.0; // Change the frequency here.
|
||||
unsigned char encryptkey[16]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}; // The very secret key
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600);
|
||||
while (!Serial) ; // Wait for serial port to be available
|
||||
Serial.println("LoRa Simple_Encrypted Server");
|
||||
if (!rf95.init())
|
||||
Serial.println("LoRa init failed");
|
||||
// Setup ISM frequency
|
||||
rf95.setFrequency(frequency);
|
||||
// Setup Power,dBm
|
||||
rf95.setTxPower(13);
|
||||
myCipher.setKey(encryptkey, 16);
|
||||
delay(4000);
|
||||
Serial.println("Setup completed");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
if (myDriver.available()) {
|
||||
// Should be a message for us now
|
||||
uint8_t buf[myDriver.maxMessageLength()];
|
||||
uint8_t len = sizeof(buf);
|
||||
if (myDriver.recv(buf, &len)) {
|
||||
Serial.print("Received: ");
|
||||
Serial.println((char *)&buf);
|
||||
}
|
||||
else
|
||||
{
|
||||
Serial.println("recv failed");
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,84 @@
|
||||
// rf95_reliable_datagram_client.pde
|
||||
// -*- mode: C++ -*-
|
||||
// Example sketch showing how to create a simple addressed, reliable messaging client
|
||||
// with the RHReliableDatagram class, using the RH_RF95 driver to control a RF95 radio.
|
||||
// It is designed to work with the other example rf95_reliable_datagram_server
|
||||
// Tested with Anarduino MiniWirelessLoRa, Rocket Scream Mini Ultra Pro with the RFM95W
|
||||
|
||||
#include <RHReliableDatagram.h>
|
||||
#include <RH_RF95.h>
|
||||
#include <SPI.h>
|
||||
|
||||
#define CLIENT_ADDRESS 1
|
||||
#define SERVER_ADDRESS 2
|
||||
|
||||
// Singleton instance of the radio driver
|
||||
RH_RF95 driver;
|
||||
//RH_RF95 driver(5, 2); // Rocket Scream Mini Ultra Pro with the RFM95W
|
||||
|
||||
// Class to manage message delivery and receipt, using the driver declared above
|
||||
RHReliableDatagram manager(driver, CLIENT_ADDRESS);
|
||||
|
||||
// Need this on Arduino Zero with SerialUSB port (eg RocketScream Mini Ultra Pro)
|
||||
//#define Serial SerialUSB
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Rocket Scream Mini Ultra Pro with the RFM95W only:
|
||||
// Ensure serial flash is not interfering with radio communication on SPI bus
|
||||
// pinMode(4, OUTPUT);
|
||||
// digitalWrite(4, HIGH);
|
||||
|
||||
Serial.begin(9600);
|
||||
while (!Serial) ; // Wait for serial port to be available
|
||||
if (!manager.init())
|
||||
Serial.println("init failed");
|
||||
// Defaults after init are 434.0MHz, 13dBm, Bw = 125 kHz, Cr = 4/5, Sf = 128chips/symbol, CRC on
|
||||
|
||||
// The default transmitter power is 13dBm, using PA_BOOST.
|
||||
// If you are using RFM95/96/97/98 modules which uses the PA_BOOST transmitter pin, then
|
||||
// you can set transmitter powers from 2 to 20 dBm:
|
||||
// driver.setTxPower(20, false);
|
||||
// If you are using Modtronix inAir4 or inAir9, or any other module which uses the
|
||||
// transmitter RFO pins and not the PA_BOOST pins
|
||||
// then you can configure the power transmitter power for 0 to 15 dBm and with useRFO true.
|
||||
// Failure to do that will result in extremely low transmit powers.
|
||||
// driver.setTxPower(14, true);
|
||||
|
||||
// You can optionally require this module to wait until Channel Activity
|
||||
// Detection shows no activity on the channel before transmitting by setting
|
||||
// the CAD timeout to non-zero:
|
||||
// driver.setCADTimeout(10000);
|
||||
}
|
||||
|
||||
uint8_t data[] = "Hello World!";
|
||||
// Dont put this on the stack:
|
||||
uint8_t buf[RH_RF95_MAX_MESSAGE_LEN];
|
||||
|
||||
void loop()
|
||||
{
|
||||
Serial.println("Sending to rf95_reliable_datagram_server");
|
||||
|
||||
// Send a message to manager_server
|
||||
if (manager.sendtoWait(data, sizeof(data), SERVER_ADDRESS))
|
||||
{
|
||||
// Now wait for a reply from the server
|
||||
uint8_t len = sizeof(buf);
|
||||
uint8_t from;
|
||||
if (manager.recvfromAckTimeout(buf, &len, 2000, &from))
|
||||
{
|
||||
Serial.print("got reply from : 0x");
|
||||
Serial.print(from, HEX);
|
||||
Serial.print(": ");
|
||||
Serial.println((char*)buf);
|
||||
}
|
||||
else
|
||||
{
|
||||
Serial.println("No reply, is rf95_reliable_datagram_server running?");
|
||||
}
|
||||
}
|
||||
else
|
||||
Serial.println("sendtoWait failed");
|
||||
delay(500);
|
||||
}
|
||||
|
@@ -0,0 +1,78 @@
|
||||
// rf95_reliable_datagram_server.pde
|
||||
// -*- mode: C++ -*-
|
||||
// Example sketch showing how to create a simple addressed, reliable messaging server
|
||||
// with the RHReliableDatagram class, using the RH_RF95 driver to control a RF95 radio.
|
||||
// It is designed to work with the other example rf95_reliable_datagram_client
|
||||
// Tested with Anarduino MiniWirelessLoRa, Rocket Scream Mini Ultra Pro with the RFM95W
|
||||
|
||||
#include <RHReliableDatagram.h>
|
||||
#include <RH_RF95.h>
|
||||
#include <SPI.h>
|
||||
|
||||
#define CLIENT_ADDRESS 1
|
||||
#define SERVER_ADDRESS 2
|
||||
|
||||
// Singleton instance of the radio driver
|
||||
RH_RF95 driver;
|
||||
//RH_RF95 driver(5, 2); // Rocket Scream Mini Ultra Pro with the RFM95W
|
||||
|
||||
// Class to manage message delivery and receipt, using the driver declared above
|
||||
RHReliableDatagram manager(driver, SERVER_ADDRESS);
|
||||
|
||||
// Need this on Arduino Zero with SerialUSB port (eg RocketScream Mini Ultra Pro)
|
||||
//#define Serial SerialUSB
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Rocket Scream Mini Ultra Pro with the RFM95W only:
|
||||
// Ensure serial flash is not interfering with radio communication on SPI bus
|
||||
// pinMode(4, OUTPUT);
|
||||
// digitalWrite(4, HIGH);
|
||||
|
||||
Serial.begin(9600);
|
||||
while (!Serial) ; // Wait for serial port to be available
|
||||
if (!manager.init())
|
||||
Serial.println("init failed");
|
||||
// Defaults after init are 434.0MHz, 13dBm, Bw = 125 kHz, Cr = 4/5, Sf = 128chips/symbol, CRC on
|
||||
|
||||
// The default transmitter power is 13dBm, using PA_BOOST.
|
||||
// If you are using RFM95/96/97/98 modules which uses the PA_BOOST transmitter pin, then
|
||||
// you can set transmitter powers from 2 to 20 dBm:
|
||||
// driver.setTxPower(20, false);
|
||||
// If you are using Modtronix inAir4 or inAir9, or any other module which uses the
|
||||
// transmitter RFO pins and not the PA_BOOST pins
|
||||
// then you can configure the power transmitter power for 0 to 15 dBm and with useRFO true.
|
||||
// Failure to do that will result in extremely low transmit powers.
|
||||
// driver.setTxPower(14, true);
|
||||
|
||||
// You can optionally require this module to wait until Channel Activity
|
||||
// Detection shows no activity on the channel before transmitting by setting
|
||||
// the CAD timeout to non-zero:
|
||||
// driver.setCADTimeout(10000);
|
||||
}
|
||||
|
||||
uint8_t data[] = "And hello back to you";
|
||||
// Dont put this on the stack:
|
||||
uint8_t buf[RH_RF95_MAX_MESSAGE_LEN];
|
||||
|
||||
void loop()
|
||||
{
|
||||
if (manager.available())
|
||||
{
|
||||
// Wait for a message addressed to us from the client
|
||||
uint8_t len = sizeof(buf);
|
||||
uint8_t from;
|
||||
if (manager.recvfromAck(buf, &len, &from))
|
||||
{
|
||||
Serial.print("got request from : 0x");
|
||||
Serial.print(from, HEX);
|
||||
Serial.print(": ");
|
||||
Serial.println((char*)buf);
|
||||
|
||||
// Send a reply back to the originator client
|
||||
if (!manager.sendtoWait(data, sizeof(data), from))
|
||||
Serial.println("sendtoWait failed");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
82
examples/rf95/rf95_server/rf95_server.ino
Normal file
82
examples/rf95/rf95_server/rf95_server.ino
Normal file
@@ -0,0 +1,82 @@
|
||||
// rf95_server.pde
|
||||
// -*- mode: C++ -*-
|
||||
// Example sketch showing how to create a simple messageing server
|
||||
// with the RH_RF95 class. RH_RF95 class does not provide for addressing or
|
||||
// reliability, so you should only use RH_RF95 if you do not need the higher
|
||||
// level messaging abilities.
|
||||
// It is designed to work with the other example rf95_client
|
||||
// Tested with Anarduino MiniWirelessLoRa, Rocket Scream Mini Ultra Pro with
|
||||
// the RFM95W, Adafruit Feather M0 with RFM95
|
||||
|
||||
#include <SPI.h>
|
||||
#include <RH_RF95.h>
|
||||
|
||||
// Singleton instance of the radio driver
|
||||
RH_RF95 rf95;
|
||||
//RH_RF95 rf95(5, 2); // Rocket Scream Mini Ultra Pro with the RFM95W
|
||||
//RH_RF95 rf95(8, 3); // Adafruit Feather M0 with RFM95
|
||||
|
||||
// Need this on Arduino Zero with SerialUSB port (eg RocketScream Mini Ultra Pro)
|
||||
//#define Serial SerialUSB
|
||||
|
||||
int led = 9;
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Rocket Scream Mini Ultra Pro with the RFM95W only:
|
||||
// Ensure serial flash is not interfering with radio communication on SPI bus
|
||||
// pinMode(4, OUTPUT);
|
||||
// digitalWrite(4, HIGH);
|
||||
|
||||
pinMode(led, OUTPUT);
|
||||
Serial.begin(9600);
|
||||
while (!Serial) ; // Wait for serial port to be available
|
||||
if (!rf95.init())
|
||||
Serial.println("init failed");
|
||||
// Defaults after init are 434.0MHz, 13dBm, Bw = 125 kHz, Cr = 4/5, Sf = 128chips/symbol, CRC on
|
||||
|
||||
// You can change the modulation parameters with eg
|
||||
// rf95.setModemConfig(RH_RF95::Bw500Cr45Sf128);
|
||||
|
||||
// The default transmitter power is 13dBm, using PA_BOOST.
|
||||
// If you are using RFM95/96/97/98 modules which uses the PA_BOOST transmitter pin, then
|
||||
// you can set transmitter powers from 2 to 20 dBm:
|
||||
// driver.setTxPower(20, false);
|
||||
// If you are using Modtronix inAir4 or inAir9, or any other module which uses the
|
||||
// transmitter RFO pins and not the PA_BOOST pins
|
||||
// then you can configure the power transmitter power for 0 to 15 dBm and with useRFO true.
|
||||
// Failure to do that will result in extremely low transmit powers.
|
||||
// driver.setTxPower(14, true);
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
if (rf95.available())
|
||||
{
|
||||
// Should be a message for us now
|
||||
uint8_t buf[RH_RF95_MAX_MESSAGE_LEN];
|
||||
uint8_t len = sizeof(buf);
|
||||
if (rf95.recv(buf, &len))
|
||||
{
|
||||
digitalWrite(led, HIGH);
|
||||
// RH_RF95::printBuffer("request: ", buf, len);
|
||||
Serial.print("got request: ");
|
||||
Serial.println((char*)buf);
|
||||
// Serial.print("RSSI: ");
|
||||
// Serial.println(rf95.lastRssi(), DEC);
|
||||
|
||||
// Send a reply
|
||||
uint8_t data[] = "And hello back to you";
|
||||
rf95.send(data, sizeof(data));
|
||||
rf95.waitPacketSent();
|
||||
Serial.println("Sent a reply");
|
||||
digitalWrite(led, LOW);
|
||||
}
|
||||
else
|
||||
{
|
||||
Serial.println("recv failed");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user