149 lines
4.0 KiB
C++
149 lines
4.0 KiB
C++
#include <RFM69.h>
|
|
#include <SPI.h>
|
|
#include <SPIFlash.h>
|
|
|
|
#define NODEID 99
|
|
#define NETWORKID 100
|
|
#define GATEWAYID 1
|
|
#define FREQUENCY RF69_915MHZ //Match this with the version of your Moteino! (others: RF69_433MHZ, RF69_868MHZ)
|
|
#define KEY "thisIsEncryptKey" //has to be same 16 characters/bytes on all nodes, not more not less!
|
|
#define LED 9
|
|
#define SERIAL_BAUD 115200
|
|
#define ACK_TIME 30 // # of ms to wait for an ack
|
|
|
|
int TRANSMITPERIOD = 300; //transmit a packet to gateway so often (in ms)
|
|
char payload[] = "123 ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
|
byte sendSize=0;
|
|
boolean requestACK = false;
|
|
SPIFlash flash(8, 0xEF30); //EF40 for 16mbit windbond chip
|
|
RFM69 radio;
|
|
|
|
void setup() {
|
|
Serial.begin(SERIAL_BAUD);
|
|
radio.initialize(FREQUENCY,NODEID,NETWORKID);
|
|
//radio.setHighPower(); //uncomment only for RFM69HW!
|
|
radio.encrypt(KEY);
|
|
char buff[50];
|
|
sprintf(buff, "\nTransmitting at %d Mhz...", FREQUENCY==RF69_433MHZ ? 433 : FREQUENCY==RF69_868MHZ ? 868 : 915);
|
|
Serial.println(buff);
|
|
if (flash.initialize())
|
|
Serial.println("SPI Flash Init OK!");
|
|
else
|
|
Serial.println("SPI Flash Init FAIL! (is chip present?)");
|
|
}
|
|
|
|
long lastPeriod = -1;
|
|
void loop() {
|
|
//process any serial input
|
|
if (Serial.available() > 0)
|
|
{
|
|
char input = Serial.read();
|
|
if (input >= 48 && input <= 57) //[0,9]
|
|
{
|
|
TRANSMITPERIOD = 100 * (input-48);
|
|
if (TRANSMITPERIOD == 0) TRANSMITPERIOD = 1000;
|
|
Serial.print("\nChanging delay to ");
|
|
Serial.print(TRANSMITPERIOD);
|
|
Serial.println("ms\n");
|
|
}
|
|
|
|
if (input == 'r') //d=dump register values
|
|
radio.readAllRegs();
|
|
if (input == 'E') //E=enable encryption
|
|
radio.encrypt(KEY);
|
|
if (input == 'e') //e=disable encryption
|
|
radio.encrypt(null);
|
|
|
|
if (input == 'd') //d=dump flash area
|
|
{
|
|
Serial.println("Flash content:");
|
|
int counter = 0;
|
|
|
|
while(counter<=256){
|
|
Serial.print(flash.readByte(counter++), HEX);
|
|
Serial.print('.');
|
|
}
|
|
while(flash.busy());
|
|
Serial.println();
|
|
}
|
|
if (input == 'e')
|
|
{
|
|
Serial.print("Erasing Flash chip ... ");
|
|
flash.chipErase();
|
|
while(flash.busy());
|
|
Serial.println("DONE");
|
|
}
|
|
if (input == 'i')
|
|
{
|
|
Serial.print("DeviceID: ");
|
|
word jedecid = flash.readDeviceId();
|
|
Serial.println(jedecid, HEX);
|
|
}
|
|
}
|
|
|
|
//check for any received packets
|
|
if (radio.receiveDone())
|
|
{
|
|
Serial.print('[');Serial.print(radio.SENDERID, DEC);Serial.print("] ");
|
|
for (byte i = 0; i < radio.DATALEN; i++)
|
|
Serial.print((char)radio.DATA[i]);
|
|
Serial.print(" [RX_RSSI:");Serial.print(radio.readRSSI());Serial.print("]");
|
|
|
|
if (radio.ACK_REQUESTED)
|
|
{
|
|
radio.sendACK();
|
|
Serial.print(" - ACK sent");
|
|
delay(10);
|
|
}
|
|
Blink(LED,5);
|
|
Serial.println();
|
|
}
|
|
|
|
int currPeriod = millis()/TRANSMITPERIOD;
|
|
if (currPeriod != lastPeriod)
|
|
{
|
|
lastPeriod=currPeriod;
|
|
Serial.print("Sending[");
|
|
Serial.print(sendSize);
|
|
Serial.print("]: ");
|
|
for(byte i = 0; i < sendSize; i++)
|
|
Serial.print((char)payload[i]);
|
|
|
|
if (radio.sendWithRetry(GATEWAYID, payload, sendSize))
|
|
Serial.print(" ok!");
|
|
else Serial.print(" nothing...");
|
|
|
|
// //manual ACK handling
|
|
// requestACK = ((sendSize % 3) == 0); //request ACK every 3rd xmission
|
|
// radio.send(GATEWAYID, payload, sendSize, requestACK);
|
|
// if (requestACK)
|
|
// {
|
|
// Serial.print(" - waiting for ACK...");
|
|
// if (waitForAck(GATEWAYID)) Serial.print("ok!");
|
|
// else Serial.print("nothing...");
|
|
// }
|
|
|
|
|
|
sendSize = (sendSize + 1) % 31;
|
|
Serial.println();
|
|
Blink(LED,3);
|
|
}
|
|
}
|
|
|
|
void Blink(byte PIN, int DELAY_MS)
|
|
{
|
|
pinMode(PIN, OUTPUT);
|
|
digitalWrite(PIN,HIGH);
|
|
delay(DELAY_MS);
|
|
digitalWrite(PIN,LOW);
|
|
}
|
|
|
|
//// wait a few milliseconds for proper ACK to me, return true if indeed received
|
|
//static bool waitForAck(byte theNodeID) {
|
|
// long now = millis();
|
|
// while (millis() - now <= ACK_TIME) {
|
|
// if (radio.ACKReceived(theNodeID))
|
|
// return true;
|
|
// }
|
|
// return false;
|
|
//}
|