Initial commit of Arduino libraries
This commit is contained in:
30
LoRa/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino
Normal file
30
LoRa/examples/LoRaDumpRegisters/LoRaDumpRegisters.ino
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
LoRa register dump
|
||||
|
||||
This examples shows how to inspect and output the LoRa radio's
|
||||
registers on the Serial interface
|
||||
*/
|
||||
#include <SPI.h> // include libraries
|
||||
#include <LoRa.h>
|
||||
|
||||
void setup() {
|
||||
Serial.begin(9600); // initialize serial
|
||||
while (!Serial);
|
||||
|
||||
Serial.println("LoRa Dump Registers");
|
||||
|
||||
// override the default CS, reset, and IRQ pins (optional)
|
||||
// LoRa.setPins(7, 6, 1); // set CS, reset, IRQ pin
|
||||
|
||||
if (!LoRa.begin(915E6)) { // initialize ratio at 915 MHz
|
||||
Serial.println("LoRa init failed. Check your connections.");
|
||||
while (true); // if failed, do nothing
|
||||
}
|
||||
|
||||
LoRa.dumpRegisters(Serial);
|
||||
}
|
||||
|
||||
|
||||
void loop() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user