Skip to content

Commit 636815b

Browse files
authored
Fix missing define (#1392)
1 parent dd91aeb commit 636815b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

examples/RFM69_RFM95_ATC_SignalReport/RFM69_RFM95_ATC_SignalReport.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*******************************
2020
*
2121
* REVISION HISTORY
22-
* Version 1.0 - tekka
22+
* Version 1.1 - tekka
2323
*
2424
* DESCRIPTION
2525
* ATC mode settings and signal report functions, on RFM69 and RFM95 nodes
@@ -29,6 +29,9 @@
2929
// Enable debug prints
3030
#define MY_DEBUG
3131

32+
// Enable signal report functionalities
33+
#define MY_SIGNAL_REPORT_ENABLED
34+
3235
// Enable and select radio type attached
3336

3437
// RFM69
@@ -71,7 +74,7 @@ void setup()
7174
void presentation()
7275
{
7376
// Send the sketch version information to the gateway and controller
74-
sendSketchInfo("ATC", "1.0");
77+
sendSketchInfo("ATC", "1.1");
7578

7679
// Register all sensors to gw (they will be created as child devices)
7780
present(CHILD_ID_UPLINK_QUALITY, S_CUSTOM, "UPLINK QUALITY RSSI");

0 commit comments

Comments
 (0)