Skip to content

Commit dae4f81

Browse files
author
Yveaux
committed
Got RF69 support compiling
1 parent c0d2177 commit dae4f81

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

libraries/MySensors/examples/Esp8266Gateway/Esp8266Gateway.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
* Inclusion mode button:
6161
* - Connect GPIO5 via switch to GND ('inclusion switch')
6262
*
63-
* Hardware SHA204 signing, RF69 radio and a separate SPI flash are not supported!
63+
* Hardware SHA204 signing and a separate SPI flash are not supported!
6464
*
6565
* Make sure to fill in your ssid and WiFi password below for ssid & pass.
6666
*/
@@ -71,6 +71,7 @@
7171
#include <MySigningNone.h>
7272
#include <MySigningAtsha204Soft.h>
7373
#include <MyTransportNRF24.h>
74+
#include <MyTransportRFM69.h>
7475
#include <EEPROM.h>
7576
#include <MyHwESP8266.h>
7677
#include <ESP8266WiFi.h>
@@ -97,7 +98,9 @@ const char *pass = "MyVerySecretPassword"; //
9798

9899

99100
// NRFRF24L01 radio driver (set low transmit power by default)
100-
MyTransportNRF24 transport(RADIO_CE_PIN, RADIO_SPI_SS_PIN, RF24_PA_LEVEL_GW);
101+
MyTransportNRF24 transport(RADIO_CE_PIN, RADIO_SPI_SS_PIN, RF24_PA_LEVEL_GW);
102+
//MyTransportRFM69 transport;
103+
101104

102105
// Message signing driver (signer needed if MY_SIGNING_FEATURE is turned on in MyConfig.h)
103106
#ifdef MY_SIGNING_FEATURE

0 commit comments

Comments
 (0)