2016-03-30 15:03:03 +01:00
|
|
|
// **********************************************************************************************************
|
2016-11-18 02:13:22 +00:00
|
|
|
// Moteino gateway/base sketch that works with Moteinos equipped with RFM69W/RFM69HW/RFM69CW/RFM69HCW
|
|
|
|
|
// This sketch uses a 2x20 Newhaven RGB backlight LCD to display incoming messages from end nodes
|
|
|
|
|
// http://www.digikey.com/product-search/en?keywords=NHD-C0220BIZ-FS(RGB)-FBW-3VM
|
2016-08-16 14:30:31 +01:00
|
|
|
// This is a basic gateway sketch that receives packets from end node Moteinos, formats them as ASCII strings
|
|
|
|
|
// with the end node [ID] and passes them to Pi/host computer via serial port
|
|
|
|
|
// (ex: "messageFromNode" from node 123 gets passed to serial as "[123] messageFromNode")
|
|
|
|
|
// It also listens to serial messages that should be sent to listening end nodes
|
|
|
|
|
// (ex: "123:messageToNode" sends "messageToNode" to node 123)
|
|
|
|
|
// Make sure to adjust the settings to match your transceiver settings (frequency, HW etc).
|
2016-11-18 02:13:22 +00:00
|
|
|
// **********************************************************************************
|
|
|
|
|
// Copyright Felix Rusu 2016, http://www.LowPowerLab.com/contact
|
|
|
|
|
// **********************************************************************************
|
|
|
|
|
// License
|
|
|
|
|
// **********************************************************************************
|
|
|
|
|
// This program is free software; you can redistribute it
|
|
|
|
|
// and/or modify it under the terms of the GNU General
|
|
|
|
|
// Public License as published by the Free Software
|
|
|
|
|
// Foundation; either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will
|
|
|
|
|
// be useful, but WITHOUT ANY WARRANTY; without even the
|
|
|
|
|
// implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
|
// PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
|
// License for more details.
|
2016-03-30 15:03:03 +01:00
|
|
|
|
2016-11-18 02:13:22 +00:00
|
|
|
// Licence can be viewed at
|
|
|
|
|
// http://www.gnu.org/licenses/gpl-3.0.txt
|
|
|
|
|
//
|
|
|
|
|
// Please maintain this license information along with authorship
|
|
|
|
|
// and copyright notices in any redistribution of this code
|
|
|
|
|
// **********************************************************************************
|
|
|
|
|
#include <RFM69.h> //get it here: https://github.com/lowpowerlab/rfm69
|
|
|
|
|
#include <RFM69_ATC.h> //get it here: https://github.com/lowpowerlab/RFM69
|
|
|
|
|
#include <RFM69_OTA.h> //get it here: https://github.com/lowpowerlab/RFM69
|
|
|
|
|
#include <SPIFlash.h> //get it here: https://github.com/lowpowerlab/spiflash
|
|
|
|
|
#include <SPI.h> //included with Arduino IDE (www.arduino.cc)
|
|
|
|
|
#include <Wire.h> //included with Arduino IDE (www.arduino.cc)
|
2016-03-30 15:03:03 +01:00
|
|
|
#include "ST7036.h" //get it from here: https://bitbucket.org/fmalpartida/st7036-display-driver/src/
|
|
|
|
|
#include "LCD_C0220BiZ.h" //get it from here: https://bitbucket.org/fmalpartida/st7036-display-driver/src/
|
|
|
|
|
|
2016-11-18 02:13:22 +00:00
|
|
|
//****************************************************************************************************************
|
|
|
|
|
//**** IMPORTANT RADIO SETTINGS - YOU MUST CHANGE/CONFIGURE TO MATCH YOUR HARDWARE TRANSCEIVER CONFIGURATION! ****
|
|
|
|
|
//****************************************************************************************************************
|
2016-08-16 14:30:31 +01:00
|
|
|
#define NODEID 1 //the ID of this node
|
|
|
|
|
#define NETWORKID 200 //the network ID of all nodes this node listens/talks to
|
2016-03-30 15:03:03 +01:00
|
|
|
#define FREQUENCY RF69_915MHZ //Match this with the version of your Moteino! (others: RF69_433MHZ, RF69_868MHZ)
|
2016-08-16 14:30:31 +01:00
|
|
|
#define ENCRYPTKEY "sampleEncryptKey" //identical 16 characters/bytes on all nodes, not more not less!
|
2017-03-31 17:21:37 +01:00
|
|
|
#define IS_RFM69HW_HCW //uncomment only for RFM69HW/HCW! Leave out if you have RFM69W/CW!
|
2016-03-30 15:03:03 +01:00
|
|
|
#define ACK_TIME 30 // # of ms to wait for an ack
|
2016-11-18 02:13:22 +00:00
|
|
|
//*****************************************************************************************************************************
|
|
|
|
|
#define ENABLE_ATC //comment out this line to disable AUTO TRANSMISSION CONTROL
|
|
|
|
|
#define ATC_RSSI -75 //target RSSI for RFM69_ATC (recommended > -80)
|
2016-08-16 14:30:31 +01:00
|
|
|
//*****************************************************************************************************************************
|
|
|
|
|
// Serial baud rate must match your Pi/host computer serial port baud rate!
|
|
|
|
|
#define SERIAL_EN //comment out if you don't want any serial verbose output
|
|
|
|
|
#define SERIAL_BAUD 19200
|
2016-03-30 15:03:03 +01:00
|
|
|
//*****************************************************************************************************************************
|
|
|
|
|
|
2016-08-16 14:30:31 +01:00
|
|
|
#define BACKLIGHTPIN 5 //3=R,5=G,6=B
|
|
|
|
|
|
|
|
|
|
#ifdef __AVR_ATmega1284P__
|
|
|
|
|
#define LED 15 // Moteino MEGAs have LEDs on D15
|
|
|
|
|
#define FLASH_SS 23 // and FLASH SS on D23
|
|
|
|
|
#else
|
|
|
|
|
#define LED 9 // Moteinos have LEDs on D9
|
|
|
|
|
#define FLASH_SS 8 // and FLASH SS on D8
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-03-30 15:03:03 +01:00
|
|
|
#ifdef SERIAL_EN
|
|
|
|
|
#define DEBUG(input) {Serial.print(input); delay(1);}
|
|
|
|
|
#define DEBUGln(input) {Serial.println(input); delay(1);}
|
|
|
|
|
#else
|
|
|
|
|
#define DEBUG(input);
|
|
|
|
|
#define DEBUGln(input);
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-11-18 02:13:22 +00:00
|
|
|
#ifdef ENABLE_ATC
|
|
|
|
|
RFM69_ATC radio;
|
|
|
|
|
#else
|
|
|
|
|
RFM69 radio;
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-08-16 14:30:31 +01:00
|
|
|
SPIFlash flash(FLASH_SS, 0xEF30); //EF40 for 16mbit windbond chip
|
2016-03-30 15:03:03 +01:00
|
|
|
|
|
|
|
|
//initialize LCD
|
|
|
|
|
ST7036 lcd = ST7036(2, 20, 0x78, BACKLIGHTPIN); //row count, column count, I2C addr, pin for backlight PWM
|
|
|
|
|
byte battChar[8] = {0b00000,0b01110,0b11111,0b11111,0b11111,0b11111,0b11111,0};
|
|
|
|
|
byte rssiChar[8] = {0b00000,0b00100,0b10101,0b01110,0b00100,0b00100,0b00100,0};
|
|
|
|
|
|
|
|
|
|
void setup() {
|
|
|
|
|
Serial.begin(SERIAL_BAUD);
|
|
|
|
|
delay(10);
|
|
|
|
|
radio.initialize(FREQUENCY,NODEID,NETWORKID);
|
2017-03-31 17:21:37 +01:00
|
|
|
#ifdef IS_RFM69HW_HCW
|
|
|
|
|
radio.setHighPower(); //must include this only for RFM69HW/HCW!
|
2016-03-30 15:03:03 +01:00
|
|
|
#endif
|
|
|
|
|
radio.encrypt(ENCRYPTKEY);
|
2016-11-18 02:13:22 +00:00
|
|
|
|
|
|
|
|
#ifdef ENABLE_ATC
|
|
|
|
|
radio.enableAutoPower(ATC_RSSI);
|
|
|
|
|
#endif
|
2016-08-16 14:30:31 +01:00
|
|
|
|
2016-03-30 15:03:03 +01:00
|
|
|
char buff[50];
|
2016-08-16 14:30:31 +01:00
|
|
|
sprintf(buff, "\nTransmitting at %d Mhz...", radio.getFrequency()/1000000);
|
|
|
|
|
|
2016-03-30 15:03:03 +01:00
|
|
|
DEBUGln(buff);
|
2016-08-16 14:30:31 +01:00
|
|
|
|
2016-03-30 15:03:03 +01:00
|
|
|
if (flash.initialize())
|
|
|
|
|
{
|
|
|
|
|
DEBUGln("SPI Flash Init OK!");
|
|
|
|
|
}
|
|
|
|
|
else
|
2016-08-16 14:30:31 +01:00
|
|
|
{
|
|
|
|
|
DEBUGln("SPI FlashMEM not found (is chip onboard?)");
|
|
|
|
|
}
|
2016-03-30 15:03:03 +01:00
|
|
|
|
|
|
|
|
lcd.init();
|
|
|
|
|
lcd.setContrast(10);
|
|
|
|
|
lcd.clear();
|
|
|
|
|
lcd.load_custom_character(0, battChar);
|
|
|
|
|
lcd.load_custom_character(1, rssiChar);
|
|
|
|
|
lcd.setCursor(0,0);
|
|
|
|
|
lcd.print(buff);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
byte ackCount=0;
|
|
|
|
|
byte inputLen=0;
|
|
|
|
|
char input[64];
|
|
|
|
|
byte buff[61];
|
|
|
|
|
char LO[20];
|
|
|
|
|
char BAT[20];
|
|
|
|
|
char temp[25];
|
|
|
|
|
String inputstr;
|
2016-08-16 14:30:31 +01:00
|
|
|
|
2016-03-30 15:03:03 +01:00
|
|
|
void loop() {
|
|
|
|
|
inputLen = readSerialLine(input, 10, 64, 10); //readSerialLine(char* input, char endOfLineChar=10, byte maxLength=64, uint16_t timeout=10);
|
|
|
|
|
inputstr = String(input);
|
|
|
|
|
inputstr.toUpperCase();
|
|
|
|
|
|
|
|
|
|
if (inputLen > 0)
|
|
|
|
|
{
|
|
|
|
|
if (inputstr.equals("KEY?"))
|
|
|
|
|
{
|
|
|
|
|
DEBUG("ENCRYPTKEY:");
|
|
|
|
|
DEBUG(ENCRYPTKEY);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
byte targetId = inputstr.toInt(); //extract ID if any
|
|
|
|
|
byte colonIndex = inputstr.indexOf(":"); //find position of first colon
|
|
|
|
|
if (targetId > 0) inputstr = inputstr.substring(colonIndex+1); //trim "ID:" if any
|
|
|
|
|
if (targetId > 0 && targetId != NODEID && targetId != RF69_BROADCAST_ADDR && colonIndex>0 && colonIndex<4 && inputstr.length()>0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
inputstr.getBytes(buff, 61);
|
|
|
|
|
//DEBUGln((char*)buff);
|
|
|
|
|
//DEBUGln(targetId);
|
|
|
|
|
//DEBUGln(colonIndex);
|
|
|
|
|
if (radio.sendWithRetry(targetId, buff, inputstr.length()))
|
|
|
|
|
{
|
|
|
|
|
DEBUGln("ACK:OK");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
DEBUGln("ACK:NOK");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (radio.receiveDone())
|
|
|
|
|
{
|
|
|
|
|
int rssi = radio.RSSI;
|
|
|
|
|
DEBUG('[');DEBUG(radio.SENDERID);DEBUG("] ");
|
|
|
|
|
if (radio.DATALEN > 0)
|
|
|
|
|
{
|
|
|
|
|
for (byte i = 0; i < radio.DATALEN; i++)
|
|
|
|
|
DEBUG((char)radio.DATA[i]);
|
|
|
|
|
DEBUG(" [RSSI:");DEBUG(rssi);DEBUG("]");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CheckForWirelessHEX(radio, flash, false); //non verbose DEBUG
|
|
|
|
|
|
|
|
|
|
if (radio.ACKRequested())
|
|
|
|
|
{
|
|
|
|
|
byte theNodeID = radio.SENDERID;
|
|
|
|
|
radio.sendACK();
|
|
|
|
|
DEBUG("[ACK-sent]");
|
|
|
|
|
}
|
|
|
|
|
DEBUGln();
|
|
|
|
|
Blink(LED,3);
|
|
|
|
|
|
|
|
|
|
lcd.clear();
|
|
|
|
|
lcd.setCursor(0,0);
|
|
|
|
|
|
|
|
|
|
//if (radio.DATALEN < RF69_MAX_DATA_LEN) radio.DATA[radio.DATALEN]=0;
|
|
|
|
|
byte matches = sscanf((const char*)radio.DATA, "%s BAT:%s", LO, BAT);
|
|
|
|
|
if (matches==2)
|
|
|
|
|
{
|
|
|
|
|
lcd.print(LO);
|
|
|
|
|
lcd.setCursor(0,14);
|
|
|
|
|
lcd.print(char(0));
|
|
|
|
|
lcd.setCursor(0,15);
|
|
|
|
|
lcd.print(BAT);
|
|
|
|
|
}
|
|
|
|
|
else lcd.print((const char*)radio.DATA);
|
|
|
|
|
|
|
|
|
|
lcd.setCursor(1,14);
|
|
|
|
|
lcd.print(char(1));
|
|
|
|
|
lcd.setCursor(1,16);
|
|
|
|
|
lcd.print(rssi);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Blink(byte PIN, int DELAY_MS)
|
|
|
|
|
{
|
|
|
|
|
pinMode(PIN, OUTPUT);
|
|
|
|
|
digitalWrite(PIN,HIGH);
|
|
|
|
|
delay(DELAY_MS);
|
|
|
|
|
digitalWrite(PIN,LOW);
|
2016-08-16 14:30:31 +01:00
|
|
|
}
|