Skip to content
Snippets Groups Projects
Commit ac53650f authored by user2684's avatar user2684 Committed by GitHub
Browse files

Updated config.h with additional default entries (#143)

parent 1bd4de7e
No related branches found
No related tags found
No related merge requests found
...@@ -97,6 +97,14 @@ ...@@ -97,6 +97,14 @@
#ifndef MAX_SENSORS #ifndef MAX_SENSORS
#define MAX_SENSORS 10 #define MAX_SENSORS 10
#endif #endif
// define default sketch name and version
#ifndef SKETCH_NAME
#define SKETCH_NAME "NodeManager"
#endif
#ifndef SKETCH_VERSION
#define SKETCH_VERSION "1.0"
#endif
/*********************************** /***********************************
Default module settings Default module settings
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#define MY_BAUD_RATE 9600 #define MY_BAUD_RATE 9600
//#define MY_DEBUG //#define MY_DEBUG
//#define MY_NODE_ID 100 //#define MY_NODE_ID 100
//#define MY_SMART_SLEEP_WAIT_DURATION_MS 500
// NRF24 radio settings // NRF24 radio settings
#define MY_RADIO_NRF24 #define MY_RADIO_NRF24
...@@ -44,6 +45,18 @@ ...@@ -44,6 +45,18 @@
//#define MY_RS485_MAX_MESSAGE_LENGTH 40 //#define MY_RS485_MAX_MESSAGE_LENGTH 40
//#define MY_RS485_HWSERIAL Serial1 //#define MY_RS485_HWSERIAL Serial1
// Message signing settings
//#define MY_SIGNING_SOFT
//#define MY_SIGNING_SOFT_RANDOMSEED_PIN 7
//#define MY_SIGNING_REQUEST_SIGNATURES
//#define MY_SIGNING_ATSHA204
// OTA Firmware update settings
//#define MY_OTA_FIRMWARE_FEATURE
//#define OTA_WAIT_PERIOD 300
//#define FIRMWARE_MAX_REQUESTS 2
//#define MY_OTA_RETRY 2
/********************************** /**********************************
* MySensors gateway configuration * MySensors gateway configuration
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment